diff --git a/code/__DEFINES/__game.dm b/code/__DEFINES/__game.dm
index 5dcc85921a..532caa08b0 100644
--- a/code/__DEFINES/__game.dm
+++ b/code/__DEFINES/__game.dm
@@ -376,6 +376,7 @@
#define WALL_DEVWALL "devwall"
#define WALL_DEVWALL_R "devwall_r"
#define WALL_HUNTERSHIP "metal"//DMI specific name
+#define WALL_AICORE "aiwall"
//Defines for dropship weapon gimbals
#define GIMBAL_LEFT -1
diff --git a/code/__DEFINES/mobs.dm b/code/__DEFINES/mobs.dm
index 8de2255c79..93a4e1507d 100644
--- a/code/__DEFINES/mobs.dm
+++ b/code/__DEFINES/mobs.dm
@@ -449,3 +449,11 @@ var/list/default_xeno_onmob_icons = list(
#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)
+/// Sleeps for X and will perform return if A is qdeleted or a dead mob.
+#define SLEEP_CHECK_DEATH(X, A) \
+ sleep(X); \
+ if(QDELETED(A)) return; \
+ if(ismob(A)) { \
+ var/mob/sleep_check_death_mob = A; \
+ if(sleep_check_death_mob.stat == DEAD) return; \
+ }
diff --git a/code/__DEFINES/shuttles.dm b/code/__DEFINES/shuttles.dm
index 3aae19e74d..a6d383e771 100644
--- a/code/__DEFINES/shuttles.dm
+++ b/code/__DEFINES/shuttles.dm
@@ -143,3 +143,7 @@
#define ESCAPE_SHUTTLE_SOUTH_PREFIX "escape_shuttle_s"
#define ESCAPE_SHUTTLE_DOCK_PREFIX "almayer-hangar-escape-shuttle-"
+
+#define MOBILE_SHUTTLE_SHIPMAP_ELEVATOR_ONE "garrow_vehicle_elevator_one"
+#define MOBILE_SHUTTLE_SHIPMAP_ELEVATOR_TWO "garrow_vehicle_elevator_two"
+#define MOBILE_SHUTTLE_SHIPMAP_ELEVATOR_CARGO "garrow_cargo_elevator"
diff --git a/code/__DEFINES/sounds.dm b/code/__DEFINES/sounds.dm
index 13a4468427..ffa94f0425 100644
--- a/code/__DEFINES/sounds.dm
+++ b/code/__DEFINES/sounds.dm
@@ -91,3 +91,4 @@
#define SCAPE_PL_ENG list('sound/soundscape/engamb1.ogg', 'sound/soundscape/engamb2.ogg', 'sound/soundscape/engamb3.ogg', 'sound/soundscape/engamb4.ogg', 'sound/soundscape/engamb5.ogg', 'sound/soundscape/engamb6.ogg', 'sound/soundscape/engamb7.ogg', )
#define SCAPE_PL_HANGAR list('sound/soundscape/hangaramb1.ogg', 'sound/soundscape/hangaramb2.ogg', 'sound/soundscape/hangaramb3.ogg', 'sound/soundscape/hangaramb4.ogg', 'sound/soundscape/hangaramb5.ogg', 'sound/soundscape/hangaramb6.ogg', 'sound/soundscape/hangaramb7.ogg', 'sound/soundscape/hangaramb8.ogg', 'sound/soundscape/hangaramb9.ogg', 'sound/soundscape/hangaramb10.ogg', )
#define SCAPE_PL_ARES list('sound/soundscape/mother.ogg')
+#define SCAPE_PL_AICORE list('sound/soundscape/aicore/aicore_beep.ogg', 'sound/soundscape/aicore/aicore_ident.ogg', 'sound/soundscape/aicore/aicore_rumble1.ogg', 'sound/soundscape/aicore/aicore_rumble2.ogg', 'sound/soundscape/aicore/aicore_rumble3.ogg', 'sound/soundscape/aicore/aicore_rumble4.ogg', 'sound/soundscape/aicore/aicore_rumble5.ogg', 'sound/soundscape/aicore/aicore_tone1.ogg', 'sound/soundscape/aicore/aicore_tone2.ogg', 'sound/soundscape/aicore/aicore_tone3.ogg', 'sound/soundscape/aicore/aicore_tone4.ogg', 'sound/soundscape/aicore/aicore_tone5.ogg', 'sound/soundscape/aicore/aicore_tone6.ogg', 'sound/soundscape/aicore/aicore_tone7.ogg', 'sound/soundscape/aicore/aicore_tone8.ogg', 'sound/soundscape/aicore/aicore_tone9.ogg', 'sound/soundscape/aicore/aicore_tone10.ogg', 'sound/soundscape/aicore/aicore_tone11.ogg', 'sound/soundscape/aicore/aicore_tone12.ogg', 'sound/soundscape/aicore/aicore_tone13.ogg', 'sound/soundscape/aicore/aicore_tone14.ogg', 'sound/soundscape/aicore/aicore_tone15.ogg', 'sound/soundscape/aicore/aicore_tone16.ogg', 'sound/soundscape/aicore/aicore_tone17.ogg', 'sound/soundscape/aicore/aicore_tone18.ogg', )
diff --git a/code/__DEFINES/stats.dm b/code/__DEFINES/stats.dm
index 1810d01e1d..bc7cbfc4a4 100644
--- a/code/__DEFINES/stats.dm
+++ b/code/__DEFINES/stats.dm
@@ -8,7 +8,11 @@
#define FACEHUG_TIER_3 100
#define FACEHUG_TIER_4 1000
+/// Consecutive rounds this player has readied up and failed to get a slot.
+#define PLAYER_STAT_UNASSIGNED_ROUND_STREAK "unassigned_round_streak"
+
// Stat Categories
#define STAT_CATEGORY_MARINE "marine"
#define STAT_CATEGORY_XENO "xeno"
#define STAT_CATEGORY_YAUTJA "yautja"
+#define STAT_CATEGORY_MISC "misc"
diff --git a/code/__DEFINES/xeno.dm b/code/__DEFINES/xeno.dm
index 878a591357..0f2454105c 100644
--- a/code/__DEFINES/xeno.dm
+++ b/code/__DEFINES/xeno.dm
@@ -239,6 +239,7 @@
#define XENO_HEALTH_TIER_14 950 * XENO_UNIVERSAL_HPMULT
#define XENO_HEALTH_QUEEN 1000 * XENO_UNIVERSAL_HPMULT
#define XENO_HEALTH_IMMORTAL 1200 * XENO_UNIVERSAL_HPMULT
+#define XENO_HEALTH_KING 1500 * XENO_UNIVERSAL_HPMULT
// Plasma bands
#define XENO_NO_PLASMA 0
@@ -381,6 +382,7 @@
// Armor mods. Use the above defines for some guidance
// In general, +20 armor should be a little more than +20% effective HP, however,
// the higher the Xeno's base armor, the greater the effect.
+#define XENO_ARMOR_MOD_TINY 2.5
#define XENO_ARMOR_MOD_VERY_SMALL 5
#define XENO_ARMOR_MOD_SMALL 10
#define XENO_ARMOR_MOD_MED 15
@@ -614,6 +616,7 @@
#define XENO_SHIELD_SOURCE_GARDENER 8
#define XENO_SHIELD_SOURCE_SHIELD_PILLAR 9
#define XENO_SHIELD_SOURCE_CUMULATIVE_GENERIC 10
+#define XENO_SHIELD_SOURCE_KING_BULWARKSPELL 11
//XENO CASTES
#define XENO_CASTE_LARVA "Bloody Larva"
@@ -643,12 +646,13 @@
#define XENO_CASTE_RAVAGER "Ravager"
#define XENO_T3_CASTES list(XENO_CASTE_BOILER, XENO_CASTE_PRAETORIAN, XENO_CASTE_CRUSHER, XENO_CASTE_RAVAGER)
//special
+#define XENO_CASTE_KING "King"
#define XENO_CASTE_QUEEN "Queen"
#define XENO_CASTE_PREDALIEN "Predalien"
#define XENO_CASTE_HELLHOUND "Hellhound"
#define XENO_SPECIAL_CASTES list(XENO_CASTE_QUEEN, XENO_CASTE_PREDALIEN, XENO_CASTE_HELLHOUND)
-#define ALL_XENO_CASTES list(XENO_CASTE_LARVA, XENO_CASTE_PREDALIEN_LARVA, XENO_CASTE_FACEHUGGER, XENO_CASTE_LESSER_DRONE, XENO_CASTE_DRONE, XENO_CASTE_RUNNER, XENO_CASTE_SENTINEL, XENO_CASTE_DEFENDER, XENO_CASTE_BURROWER, XENO_CASTE_CARRIER, XENO_CASTE_HIVELORD, XENO_CASTE_LURKER, XENO_CASTE_WARRIOR, XENO_CASTE_SPITTER, XENO_CASTE_BOILER, XENO_CASTE_PRAETORIAN, XENO_CASTE_CRUSHER, XENO_CASTE_RAVAGER, XENO_CASTE_QUEEN, XENO_CASTE_PREDALIEN, XENO_CASTE_HELLHOUND)
+#define ALL_XENO_CASTES list(XENO_CASTE_LARVA, XENO_CASTE_PREDALIEN_LARVA, XENO_CASTE_FACEHUGGER, XENO_CASTE_LESSER_DRONE, XENO_CASTE_DRONE, XENO_CASTE_RUNNER, XENO_CASTE_SENTINEL, XENO_CASTE_DEFENDER, XENO_CASTE_BURROWER, XENO_CASTE_CARRIER, XENO_CASTE_HIVELORD, XENO_CASTE_LURKER, XENO_CASTE_WARRIOR, XENO_CASTE_SPITTER, XENO_CASTE_BOILER, XENO_CASTE_PRAETORIAN, XENO_CASTE_CRUSHER, XENO_CASTE_RAVAGER, XENO_CASTE_QUEEN, XENO_CASTE_PREDALIEN, XENO_CASTE_HELLHOUND, XENO_CASTE_KING)
// Checks if two hives are allied to each other.
// PARAMETERS:
diff --git a/code/__HELPERS/_lists.dm b/code/__HELPERS/_lists.dm
index fe15e6d84c..ff63e33beb 100644
--- a/code/__HELPERS/_lists.dm
+++ b/code/__HELPERS/_lists.dm
@@ -143,6 +143,43 @@
return null
+/**
+ * Shuffles a provided list based on the weight of each element.
+ *
+ * Higher weight elements have a higher probability of being picked and tend to appear earlier in the list.
+ * Unweighted elements are never picked and are discarded.
+ *
+ * Arguments:
+ * * list_to_pick - assoc list in the form of: element = weight
+ *
+ * Returns list of shuffled weighted elements
+ */
+/proc/shuffle_weight(list/list_to_pick)
+ list_to_pick = list_to_pick.Copy() //not inplace
+
+ var/total_weight = 0
+ for(var/item in list_to_pick)
+ if(list_to_pick[item])
+ total_weight += list_to_pick[item]
+ else
+ list_to_pick -= item //discard unweighted
+
+ var/list_to_return = list()
+
+ while(length(list_to_pick))
+ var/target_weight = rand(1, total_weight)
+ for(var/item in list_to_pick)
+ var/item_weight = list_to_pick[item]
+ target_weight -= item_weight
+
+ if(target_weight <= 0)
+ list_to_return += item
+ list_to_pick -= item
+ total_weight -= item_weight
+ break
+
+ return list_to_return
+
/**
* Removes any null entries from the list
* Returns TRUE if the list had nulls, FALSE otherwise
diff --git a/code/_globalvars/misc.dm b/code/_globalvars/misc.dm
index 74f3149610..7cd20cb9e7 100644
--- a/code/_globalvars/misc.dm
+++ b/code/_globalvars/misc.dm
@@ -55,3 +55,5 @@ GLOBAL_VAR(obfs_x)
GLOBAL_VAR(obfs_y)
GLOBAL_VAR_INIT(ai_xeno_weeding, TRUE)
+
+GLOBAL_LIST_INIT(alldirs, list(NORTH, SOUTH, EAST, WEST, NORTHEAST, NORTHWEST, SOUTHEAST, SOUTHWEST))
diff --git a/code/controllers/subsystem/item_cleanup.dm b/code/controllers/subsystem/item_cleanup.dm
index 35d1fc2859..f23422329b 100644
--- a/code/controllers/subsystem/item_cleanup.dm
+++ b/code/controllers/subsystem/item_cleanup.dm
@@ -3,7 +3,7 @@ var/global/list/item_cleanup_list = list()
SUBSYSTEM_DEF(item_cleanup)
name = "Item Cleanup"
wait = 10 MINUTES //should be adjusted for WO
- var/start_processing_time = 35 MINUTES //should be adjusted for WO
+ var/start_processing_time = INFINITY //should be adjusted for WO
var/percentage_of_garbage_to_delete = 0.5 //should be adjusted for WO
//We keep a separate, private list
//So we don't get instant deletions of items
diff --git a/code/controllers/subsystem/xeno_ai.dm b/code/controllers/subsystem/xeno_ai.dm
index 9cd608f211..6f22d17e42 100644
--- a/code/controllers/subsystem/xeno_ai.dm
+++ b/code/controllers/subsystem/xeno_ai.dm
@@ -11,6 +11,43 @@ SUBSYSTEM_DEF(xeno_ai)
var/ai_kill = FALSE
+ //currently the only caste that has an actual targeting difference is facehugger
+ /// Assoc list of valid targets by hive & caste, in the form of: hive = (/caste = targets)
+ var/list/target_cache = list()
+
+/datum/controller/subsystem/xeno_ai/proc/get_valid_targets(mob/living/carbon/xenomorph/xeno)
+ var/datum/hive_status/hive = xeno.hive
+ LAZYINITLIST(target_cache[hive])
+
+ var/caste = xeno.type
+ if(target_cache[hive][caste])
+ return target_cache[hive][caste]
+
+ var/list/valid_targets = list()
+ target_cache[hive][caste] = valid_targets
+
+ for(var/mob/living/carbon/potential_target in GLOB.alive_mob_list)
+ if(!potential_target.ai_can_target(xeno))
+ continue
+
+ valid_targets += potential_target
+
+ for(var/obj/vehicle/multitile/potential_vehicle_target as anything in GLOB.all_multi_vehicles)
+ if(potential_vehicle_target.health <= 0)
+ continue
+
+ if(hive.faction_is_ally(potential_vehicle_target.vehicle_faction))
+ continue
+
+ if(!length(valid_targets & potential_vehicle_target.interior.get_passengers()))
+ continue
+
+ valid_targets += potential_vehicle_target
+
+ valid_targets += GLOB.all_active_defenses
+
+ return valid_targets
+
/datum/controller/subsystem/xeno_ai/stat_entry(msg)
msg = "P:[length(ai_mobs)]"
return ..()
@@ -26,6 +63,10 @@ SUBSYSTEM_DEF(xeno_ai)
message_admins("[key_name_admin(usr)] [SSxeno_ai.ai_kill? "killed" : "revived"] all xeno AI.")
/datum/controller/subsystem/xeno_ai/fire(resumed = FALSE)
+ for(var/datum/hive_status/hive as anything in target_cache)
+ for(var/caste as anything in target_cache[hive])
+ target_cache[hive][caste] = null
+
if(ai_kill)
return
diff --git a/code/datums/ammo/bullet/pistol.dm b/code/datums/ammo/bullet/pistol.dm
index 3ce778bb1f..d4bdbc3ae4 100644
--- a/code/datums/ammo/bullet/pistol.dm
+++ b/code/datums/ammo/bullet/pistol.dm
@@ -100,7 +100,7 @@
headshot_state = HEADSHOT_OVERLAY_MEDIUM
accuracy = HIT_ACCURACY_TIER_3
accuracy_var_low = PROJECTILE_VARIANCE_TIER_6
- damage = 55
+ damage = 45
penetration = ARMOR_PENETRATION_TIER_3
shrapnel_chance = SHRAPNEL_CHANCE_TIER_2
diff --git a/code/datums/ammo/bullet/shotgun.dm b/code/datums/ammo/bullet/shotgun.dm
index cf13fb9b01..b2bbf607ce 100644
--- a/code/datums/ammo/bullet/shotgun.dm
+++ b/code/datums/ammo/bullet/shotgun.dm
@@ -11,28 +11,30 @@
name = "shotgun slug"
handful_state = "slug_shell"
- accurate_range = 6
- max_range = 8
- damage = 70
- penetration = ARMOR_PENETRATION_TIER_4
+ accurate_range = 7
+ max_range = 14
+ damage = 90
+ penetration = ARMOR_PENETRATION_TIER_6
+ damage_var_low = PROJECTILE_VARIANCE_TIER_10
+ damage_var_high = PROJECTILE_VARIANCE_TIER_1
damage_armor_punch = 2
handful_state = "slug_shell"
/datum/ammo/bullet/shotgun/slug/on_hit_mob(mob/M,obj/projectile/P)
- knockback(M, P, 6)
+ knockback(M, P, 8)
/datum/ammo/bullet/shotgun/slug/knockback_effects(mob/living/living_mob, obj/projectile/fired_projectile)
if(iscarbonsizexeno(living_mob))
var/mob/living/carbon/xenomorph/target = living_mob
to_chat(target, SPAN_XENODANGER("You are shaken and slowed by the sudden impact!"))
- target.KnockDown(0.5) // If you ask me the KD should be left out, but players like their visual cues
- target.Stun(0.5)
- target.apply_effect(1, SUPERSLOW)
- target.apply_effect(3, SLOW)
+ target.KnockDown(3.5)
+ target.Stun(3.5)
+ target.Slow(5)
else
if(!isyautja(living_mob)) //Not predators.
- living_mob.apply_effect(1, SUPERSLOW)
- living_mob.apply_effect(2, SLOW)
+ living_mob.KnockDown(2)
+ living_mob.Stun(2)
+ living_mob.Superslow(5)
to_chat(living_mob, SPAN_HIGHDANGER("The impact knocks you off-balance!"))
living_mob.apply_stamina_damage(fired_projectile.ammo.damage, fired_projectile.def_zone, ARMOR_BULLET)
@@ -42,11 +44,9 @@
handful_state = "beanbag_slug"
icon_state = "beanbag"
flags_ammo_behavior = AMMO_BALLISTIC|AMMO_IGNORE_RESIST
- sound_override = 'sound/weapons/gun_shotgun_riot.ogg'
-
max_range = 12
shrapnel_chance = 0
- damage = 0
+ damage = 20
stamina_damage = 45
accuracy = HIT_ACCURACY_TIER_3
shell_speed = AMMO_SPEED_TIER_3
@@ -127,19 +127,36 @@
accuracy_var_low = PROJECTILE_VARIANCE_TIER_5
accuracy_var_high = PROJECTILE_VARIANCE_TIER_5
- accurate_range = 4
- max_range = 4
- damage = 65
- damage_var_low = PROJECTILE_VARIANCE_TIER_8
- damage_var_high = PROJECTILE_VARIANCE_TIER_8
+ accurate_range = 7
+ max_range = 9
+ damage = 50
+ damage_var_low = PROJECTILE_VARIANCE_TIER_10
+ damage_var_high = PROJECTILE_VARIANCE_TIER_1
penetration = ARMOR_PENETRATION_TIER_1
- bonus_projectiles_amount = EXTRA_PROJECTILES_TIER_3
+ bonus_projectiles_amount = EXTRA_PROJECTILES_TIER_7
shell_speed = AMMO_SPEED_TIER_2
damage_armor_punch = 0
pen_armor_punch = 0
handful_state = "buckshot_shell"
multiple_handful_name = TRUE
+/datum/ammo/bullet/shotgun/buckshot/on_hit_mob(mob/M,obj/projectile/P)
+ knockback(M, P, 4)
+/datum/ammo/bullet/shotgun/buckshot/knockback_effects(mob/living/living_mob, obj/projectile/fired_projectile)
+ if(iscarbonsizexeno(living_mob))
+ var/mob/living/carbon/xenomorph/target = living_mob
+ to_chat(target, SPAN_XENODANGER("You are shaken and slowed by the sudden impact!"))
+ target.KnockDown(2.5)
+ target.Stun(2.5)
+ target.Slow(4)
+ else
+ if(!isyautja(living_mob)) //Not predators.
+ living_mob.KnockDown(3)
+ living_mob.Stun(3)
+ living_mob.Slow(5)
+ to_chat(living_mob, SPAN_HIGHDANGER("The impact knocks you off-balance!"))
+ living_mob.apply_stamina_damage(fired_projectile.ammo.damage, fired_projectile.def_zone, ARMOR_BULLET)
+
/datum/ammo/bullet/shotgun/buckshot/incendiary
name = "incendiary buckshot shell"
handful_state = "incen_buckshot"
@@ -178,8 +195,8 @@
accuracy_var_low = PROJECTILE_VARIANCE_TIER_6
accuracy_var_high = PROJECTILE_VARIANCE_TIER_6
accurate_range = 4
- max_range = 4
- damage = 65
+ max_range = 6
+ damage = 50
damage_var_low = PROJECTILE_VARIANCE_TIER_8
damage_var_high = PROJECTILE_VARIANCE_TIER_8
penetration = ARMOR_PENETRATION_TIER_1
@@ -191,6 +208,23 @@
/datum/ammo/bullet/shotgun/spread/masterkey
damage = 20
+/datum/ammo/bullet/shotgun/spread/on_hit_mob(mob/M,obj/projectile/P)
+ knockback(M, P, 4)
+/datum/ammo/bullet/shotgun/spread/knockback_effects(mob/living/living_mob, obj/projectile/fired_projectile)
+ if(iscarbonsizexeno(living_mob))
+ var/mob/living/carbon/xenomorph/target = living_mob
+ to_chat(target, SPAN_XENODANGER("You are shaken and slowed by the sudden impact!"))
+ target.KnockDown(2.5)
+ target.Stun(2.5)
+ target.Slow(4)
+ else
+ if(!isyautja(living_mob)) //Not predators.
+ living_mob.KnockDown(3)
+ living_mob.Stun(3)
+ living_mob.Slow(5)
+ to_chat(living_mob, SPAN_HIGHDANGER("The impact knocks you off-balance!"))
+ living_mob.apply_stamina_damage(fired_projectile.ammo.damage, fired_projectile.def_zone, ARMOR_BULLET)
+
/datum/ammo/bullet/shotgun/spread/special
name = "additional buckshot, USCM special type"
@@ -209,24 +243,53 @@
handful_state = "heavy_buckshot"
multiple_handful_name = TRUE
bonus_projectiles_type = /datum/ammo/bullet/shotgun/heavy/buckshot/spread
- bonus_projectiles_amount = EXTRA_PROJECTILES_TIER_3
- accurate_range = 3
- max_range = 3
+ bonus_projectiles_amount = EXTRA_PROJECTILES_TIER_8
+ accurate_range = 8
+ max_range = 10
damage = 75
- penetration = 0
+ penetration = ARMOR_PENETRATION_TIER_2
shell_speed = AMMO_SPEED_TIER_2
damage_armor_punch = 0
pen_armor_punch = 0
/datum/ammo/bullet/shotgun/heavy/buckshot/on_hit_mob(mob/M,obj/projectile/P)
- knockback(M,P)
+ knockback(M,P,5)
+/datum/ammo/bullet/shotgun/heavy/buckshot/knockback_effects(mob/living/living_mob, obj/projectile/fired_projectile)
+ if(iscarbonsizexeno(living_mob))
+ var/mob/living/carbon/xenomorph/target = living_mob
+ to_chat(target, SPAN_XENODANGER("You are shaken and slowed by the sudden impact!"))
+ target.KnockDown(5)
+ target.Stun(5)
+ target.Slow(8)
+ else
+ if(!isyautja(living_mob)) //Not predators.
+ living_mob.KnockDown(2)
+ living_mob.Stun(2)
+ living_mob.Slow(6)
+ to_chat(living_mob, SPAN_HIGHDANGER("The impact knocks you off-balance!"))
+ living_mob.apply_stamina_damage(fired_projectile.ammo.damage, fired_projectile.def_zone, ARMOR_BULLET)
/datum/ammo/bullet/shotgun/heavy/buckshot/spread
name = "additional heavy buckshot"
- max_range = 4
+ max_range = 7
scatter = SCATTER_AMOUNT_TIER_1
bonus_projectiles_amount = 0
+/datum/ammo/bullet/shotgun/heavy/buckshot/spread/knockback_effects(mob/living/living_mob, obj/projectile/fired_projectile)
+ if(iscarbonsizexeno(living_mob))
+ var/mob/living/carbon/xenomorph/target = living_mob
+ to_chat(target, SPAN_XENODANGER("You are shaken and slowed by the sudden impact!"))
+ target.KnockDown(5)
+ target.Stun(5)
+ target.Slow(8)
+ else
+ if(!isyautja(living_mob)) //Not predators.
+ living_mob.KnockDown(2)
+ living_mob.Stun(2)
+ living_mob.Slow(6)
+ to_chat(living_mob, SPAN_HIGHDANGER("The impact knocks you off-balance!"))
+ living_mob.apply_stamina_damage(fired_projectile.ammo.damage, fired_projectile.def_zone, ARMOR_BULLET)
+
/datum/ammo/bullet/shotgun/heavy/buckshot/special
bonus_projectiles_type = /datum/ammo/bullet/shotgun/heavy/buckshot/spread/special
bonus_projectiles_amount = EXTRA_PROJECTILES_TIER_8
@@ -251,8 +314,8 @@
multiple_handful_name = TRUE
damage_type = BURN
damage = 60
- accurate_range = 3
- max_range = 4
+ accurate_range = 4
+ max_range = 6
bonus_projectiles_type = /datum/ammo/bullet/shotgun/heavy/buckshot/dragonsbreath/spread
/datum/ammo/bullet/shotgun/heavy/buckshot/dragonsbreath/set_bullet_traits()
@@ -264,9 +327,7 @@
/datum/ammo/bullet/shotgun/heavy/buckshot/dragonsbreath/spread
name = "additional dragon's breath"
bonus_projectiles_amount = 0
- accurate_range = 4
- max_range = 5 //make use of the ablaze property
- shell_speed = AMMO_SPEED_TIER_4 // so they hit before the main shell stuns
+ shell_speed = AMMO_SPEED_TIER_4
/datum/ammo/bullet/shotgun/heavy/slug
@@ -274,26 +335,26 @@
handful_state = "heavy_slug"
accurate_range = 7
- max_range = 8
- damage = 90 //ouch.
- penetration = ARMOR_PENETRATION_TIER_6
+ max_range = 17
+ damage = 120 //ouch.
+ penetration = ARMOR_PENETRATION_TIER_9
damage_armor_punch = 2
/datum/ammo/bullet/shotgun/heavy/slug/on_hit_mob(mob/M,obj/projectile/P)
- knockback(M, P, 7)
+ knockback(M, P, 8)
/datum/ammo/bullet/shotgun/heavy/slug/knockback_effects(mob/living/living_mob, obj/projectile/fired_projectile)
if(iscarbonsizexeno(living_mob))
var/mob/living/carbon/xenomorph/target = living_mob
to_chat(target, SPAN_XENODANGER("You are shaken and slowed by the sudden impact!"))
- target.KnockDown(0.5) // If you ask me the KD should be left out, but players like their visual cues
- target.Stun(0.5)
- target.apply_effect(2, SUPERSLOW)
- target.apply_effect(5, SLOW)
+ target.KnockDown(7)
+ target.Stun(7)
+ target.Slow(10)
else
if(!isyautja(living_mob)) //Not predators.
- living_mob.apply_effect(1, SUPERSLOW)
- living_mob.apply_effect(2, SLOW)
+ living_mob.KnockDown(8)
+ living_mob.Stun(8)
+ living_mob.Superslow(15)
to_chat(living_mob, SPAN_HIGHDANGER("The impact knocks you off-balance!"))
living_mob.apply_stamina_damage(fired_projectile.ammo.damage, fired_projectile.def_zone, ARMOR_BULLET)
@@ -303,14 +364,13 @@
headshot_state = HEADSHOT_OVERLAY_MEDIUM
handful_state = "heavy_beanbag"
flags_ammo_behavior = AMMO_BALLISTIC|AMMO_IGNORE_RESIST
- sound_override = 'sound/weapons/gun_shotgun_riot.ogg'
max_range = 7
shrapnel_chance = 0
- damage = 0
+ damage = 25
stamina_damage = 100
- accuracy = HIT_ACCURACY_TIER_2
- shell_speed = AMMO_SPEED_TIER_2
+ accuracy = HIT_ACCURACY_TIER_6
+ shell_speed = 3
/datum/ammo/bullet/shotgun/heavy/beanbag/on_hit_mob(mob/M, obj/projectile/P)
if(!M || M == P.firer)
diff --git a/code/datums/ammo/bullet/sniper.dm b/code/datums/ammo/bullet/sniper.dm
index 5f888efb1d..d8d751ca40 100644
--- a/code/datums/ammo/bullet/sniper.dm
+++ b/code/datums/ammo/bullet/sniper.dm
@@ -128,7 +128,7 @@
/datum/ammo/bullet/sniper/anti_materiel/vulture
damage = 400 // Fully intended to vaporize anything smaller than a mini cooper
- accurate_range_min = 10
+ accurate_range_min = 0
handful_state = "vulture_bullet"
sound_hit = 'sound/bullets/bullet_vulture_impact.ogg'
flags_ammo_behavior = AMMO_BALLISTIC|AMMO_SNIPER|AMMO_IGNORE_COVER|AMMO_ANTIVEHICLE
diff --git a/code/datums/components/xeno/ai_behavior_overrides/capture_override_behavior.dm b/code/datums/components/xeno/ai_behavior_overrides/capture_override_behavior.dm
index 96eaa7d8fb..1f84842e54 100644
--- a/code/datums/components/xeno/ai_behavior_overrides/capture_override_behavior.dm
+++ b/code/datums/components/xeno/ai_behavior_overrides/capture_override_behavior.dm
@@ -22,7 +22,7 @@
if(isfacehugger(checked_xeno))
return FALSE
- var/mob/parent_mob = parent
+ var/mob/living/parent_mob = parent
var/captee_stat = parent_mob.stat
var/mob/pulledby = parent_mob.pulledby
@@ -45,7 +45,7 @@
if(distance > 10)
return FALSE
- if(captee_stat == CONSCIOUS)
+ if(captee_stat == CONSCIOUS && !(locate(/datum/effects/crit) in parent_mob.effects_list))
return FALSE
if(isxeno(pulledby) && pulledby != checked_xeno)
diff --git a/code/datums/effects/mob_crit/human_crit.dm b/code/datums/effects/mob_crit/human_crit.dm
index ff4d0eeda0..8b25b2bc2a 100644
--- a/code/datums/effects/mob_crit/human_crit.dm
+++ b/code/datums/effects/mob_crit/human_crit.dm
@@ -8,7 +8,8 @@
qdel(src)
return FALSE
- affected_mob.apply_effect(3, PARALYZE)
+ affected_mob.KnockDown(3)
+ affected_mob.Stun(3)
if(!affected_mob.reagents || !affected_mob.reagents.has_reagent("inaprovaline"))
affected_mob.apply_damage(1, OXY)
diff --git a/code/datums/effects/pain/human_pain.dm b/code/datums/effects/pain/human_pain.dm
index 9c8070596b..bddd793077 100644
--- a/code/datums/effects/pain/human_pain.dm
+++ b/code/datums/effects/pain/human_pain.dm
@@ -58,7 +58,8 @@
var/mob/living/carbon/affected_mob = affected_atom
if(do_once)
- affected_mob.apply_effect(3, PARALYZE)
+ affected_mob.KnockDown(3)
+ affected_mob.Stun(3)
do_once = FALSE
affected_mob.EyeBlur(2)
@@ -83,7 +84,8 @@
affected_mob.EyeBlur(2)
if(affected_mob.pain && affected_mob.pain.feels_pain)
affected_mob.TalkStutter(2)
- affected_mob.apply_effect(2, PARALYZE)
+ affected_mob.KnockDown(2)
+ affected_mob.Stun(2)
if(!affected_mob.reagents || !affected_mob.reagents.has_reagent("inaprovaline"))
affected_mob.apply_damage(0.5, OXY)
diff --git a/code/datums/factions/clf.dm b/code/datums/factions/clf.dm
index 5456084b1a..45cedf3bbc 100644
--- a/code/datums/factions/clf.dm
+++ b/code/datums/factions/clf.dm
@@ -58,19 +58,19 @@
list("MP5 Magazine (9mm)", 5, /obj/item/ammo_magazine/smg/mp5, null, VENDOR_ITEM_REGULAR),
list("SIDEARMS", 0, null, null, null),
- list("88 Mod 4 Combat Pistol", 15, /obj/item/weapon/gun/pistol/mod88, null, VENDOR_ITEM_REGULAR),
+ list("VP70 Combat Pistol", 15, /obj/item/weapon/gun/pistol/vp70, null, VENDOR_ITEM_REGULAR),
list("Beretta 92FS Pistol", 15, /obj/item/weapon/gun/pistol/b92fs, null, VENDOR_ITEM_REGULAR),
- list("CMB Spearhead Autorevolver", 15, /obj/item/weapon/gun/revolver/cmb, null, VENDOR_ITEM_REGULAR),
+ list("CMB Spearhead revolver", 15, /obj/item/weapon/gun/revolver/spearhead, null, VENDOR_ITEM_REGULAR),
list("Holdout Pistol", 10, /obj/item/weapon/gun/pistol/holdout, null, VENDOR_ITEM_REGULAR),
list("KT-42 Automag", 15, /obj/item/weapon/gun/pistol/kt42, null, VENDOR_ITEM_REGULAR),
list("S&W .357 Revolver", 15, /obj/item/weapon/gun/revolver/small, null, VENDOR_ITEM_REGULAR),
list("SIDEARM AMMUNITION", 0, null, null, null),
- list("88M4 Magazine (9mm)", 5, /obj/item/ammo_magazine/pistol/mod88/normalpoint, null, VENDOR_ITEM_REGULAR),
+ list("VP70 Magazine (9mm)", 5, /obj/item/ammo_magazine/pistol/vp70, null, VENDOR_ITEM_REGULAR),
list("Beretta 92FS Magazine (9mm)", 5, /obj/item/ammo_magazine/pistol/b92fs, null, VENDOR_ITEM_REGULAR),
list("KT-42 Magazine (.44)", 5, /obj/item/ammo_magazine/pistol/kt42, null, VENDOR_ITEM_REGULAR),
- list("Spearhead Speed Loader (.357)", 10, /obj/item/ammo_magazine/revolver/cmb/normalpoint, VENDOR_ITEM_REGULAR),
- list("Hollowpoint Spearhead Speed Loader (.357)", 5, /obj/item/ammo_magazine/revolver/cmb, VENDOR_ITEM_REGULAR),
+ list("Spearhead Speed Loader (.357)", 10, /obj/item/ammo_magazine/revolver/spearhead, VENDOR_ITEM_REGULAR),
+ list("Hollowpoint Spearhead Speed Loader (.357)", 5, /obj/item/ammo_magazine/revolver/spearhead, VENDOR_ITEM_REGULAR),
list("S&W Speed Loader (.357)", 5, /obj/item/ammo_magazine/revolver/small, null, VENDOR_ITEM_REGULAR),
list("Tiny Pistol Magazine (.22)", 5, /obj/item/ammo_magazine/pistol/holdout, null, VENDOR_ITEM_REGULAR),
@@ -126,19 +126,19 @@
list("MP5 Magazine (9mm)", 60, /obj/item/ammo_magazine/smg/mp5, VENDOR_ITEM_REGULAR),
list("SIDEARMS", -1, null, null),
- list("88 Mod 4 Combat Pistol", 20, /obj/item/weapon/gun/pistol/mod88, VENDOR_ITEM_REGULAR),
+ list("VP70 Combat Pistol", 20, /obj/item/weapon/gun/pistol/vp70, VENDOR_ITEM_REGULAR),
list("Beretta 92FS Pistol", 20, /obj/item/weapon/gun/pistol/b92fs, VENDOR_ITEM_REGULAR),
- list("CMB Spearhead Autorevolver", 20, /obj/item/weapon/gun/revolver/cmb, VENDOR_ITEM_REGULAR),
+ list("CMB Spearhead revolver", 20, /obj/item/weapon/gun/revolver/spearhead, VENDOR_ITEM_REGULAR),
list("Holdout Pistol", 20, /obj/item/weapon/gun/pistol/holdout, VENDOR_ITEM_REGULAR),
list("KT-42 Automag", 20, /obj/item/weapon/gun/pistol/kt42, VENDOR_ITEM_REGULAR),
list("S&W .357 Revolver", 20, /obj/item/weapon/gun/revolver/small, VENDOR_ITEM_REGULAR),
list("SIDEARM AMMUNITION", -1, null, null),
- list("88M4 Magazine (9mm)", 40, /obj/item/ammo_magazine/pistol/mod88/normalpoint, VENDOR_ITEM_REGULAR),
+ list("VP70 Magazine (9mm)", 40, /obj/item/ammo_magazine/pistol/vp70, VENDOR_ITEM_REGULAR),
list("Beretta 92FS Magazine (9mm)", 40, /obj/item/ammo_magazine/pistol/b92fs, VENDOR_ITEM_REGULAR),
list("KT-42 Magazine (.44)", 40, /obj/item/ammo_magazine/pistol/kt42, VENDOR_ITEM_REGULAR),
- list("Spearhead Speed Loader (.357)", 40, /obj/item/ammo_magazine/revolver/cmb/normalpoint, VENDOR_ITEM_REGULAR),
- list("Hollowpoint Spearhead Speed Loader (.357)", 40, /obj/item/ammo_magazine/revolver/cmb, VENDOR_ITEM_REGULAR),
+ list("Spearhead Speed Loader (.357)", 40, /obj/item/ammo_magazine/revolver/spearhead, VENDOR_ITEM_REGULAR),
+ list("Hollowpoint Spearhead Speed Loader (.357)", 40, /obj/item/ammo_magazine/revolver/spearhead, VENDOR_ITEM_REGULAR),
list("S&W Speed Loader (.357)", 40, /obj/item/ammo_magazine/revolver/small, VENDOR_ITEM_REGULAR),
list("Tiny Pistol Magazine (.22)", 40, /obj/item/ammo_magazine/pistol/holdout, VENDOR_ITEM_REGULAR),
diff --git a/code/datums/factions/pmc.dm b/code/datums/factions/pmc.dm
index 0b48fc63eb..51747807f3 100644
--- a/code/datums/factions/pmc.dm
+++ b/code/datums/factions/pmc.dm
@@ -43,11 +43,11 @@
list("SIDEARMS", 0, null, null, null),
list("VP78 pistol", 20, /obj/item/weapon/gun/pistol/vp78, null, VENDOR_ITEM_REGULAR),
- list("88 Mod 4 Combat Pistol", 15, /obj/item/weapon/gun/pistol/mod88, null, VENDOR_ITEM_REGULAR),
+ list("VP70 Combat Pistol", 15, /obj/item/weapon/gun/pistol/vp70, null, VENDOR_ITEM_REGULAR),
list("SIDEARM AMMUNITION", 0, null, null, null),
list("VP78 magazine (9mm)", 5, /obj/item/ammo_magazine/pistol/vp78, null, VENDOR_ITEM_REGULAR),
- list("88M4 Magazine (9mm)", 5, /obj/item/ammo_magazine/pistol/mod88/normalpoint, null, VENDOR_ITEM_REGULAR),
+ list("VP70 Magazine (9mm)", 5, /obj/item/ammo_magazine/pistol/vp70, null, VENDOR_ITEM_REGULAR),
list("ATTACHMENTS", 0, null, null, null),
list("Angled Grip", 15, /obj/item/attachable/angledgrip, null, VENDOR_ITEM_REGULAR),
@@ -83,11 +83,11 @@
list("SIDEARMS", 0, null, null, null),
list("VP78 pistol", 20, /obj/item/weapon/gun/pistol/vp78, null, VENDOR_ITEM_REGULAR),
- list("88 Mod 4 Combat Pistol", 30, /obj/item/weapon/gun/pistol/mod88, null, VENDOR_ITEM_REGULAR),
+ list("VP70 Combat Pistol", 30, /obj/item/weapon/gun/pistol/vp70, null, VENDOR_ITEM_REGULAR),
list("SIDEARM AMMUNITION", 0, null, null, null),
list("VP78 magazine (9mm)", 50, /obj/item/ammo_magazine/pistol/vp78, null, VENDOR_ITEM_REGULAR),
- list("88M4 Magazine (9mm)", 50, /obj/item/ammo_magazine/pistol/mod88/normalpoint, null, VENDOR_ITEM_REGULAR),
+ list("VP70 Magazine (9mm)", 50, /obj/item/ammo_magazine/pistol/vp70, null, VENDOR_ITEM_REGULAR),
list("UTILITIES", 0, null, null, null),
list("M94 Marking Flare Pack", 30, /obj/item/storage/box/m94, null, VENDOR_ITEM_RECOMMENDED),
diff --git a/code/datums/factions/royalmarinescommando.dm b/code/datums/factions/royalmarinescommando.dm
index b5605ea61f..aa9db0f5f2 100644
--- a/code/datums/factions/royalmarinescommando.dm
+++ b/code/datums/factions/royalmarinescommando.dm
@@ -40,11 +40,11 @@
list("SIDEARMS", 0, null, null, null),
list("VP78 Pistol", 20, /obj/item/weapon/gun/pistol/vp78, null, VENDOR_ITEM_REGULAR),
- list("88 Mod 4 Combat Pistol", 15, /obj/item/weapon/gun/pistol/mod88, null, VENDOR_ITEM_REGULAR),
+ list("VP70 Combat Pistol", 15, /obj/item/weapon/gun/pistol/vp70, null, VENDOR_ITEM_REGULAR),
list("SIDEARM AMMUNITION", 0, null, null, null),
list("VP78 magazine (9mm)", 5, /obj/item/ammo_magazine/pistol/vp78, null, VENDOR_ITEM_REGULAR),
- list("88M4 Magazine (9mm)", 5, /obj/item/ammo_magazine/pistol/mod88/normalpoint, null, VENDOR_ITEM_REGULAR),
+ list("VP70 Magazine (9mm)", 5, /obj/item/ammo_magazine/pistol/vp70, null, VENDOR_ITEM_REGULAR),
list("ATTACHMENTS", 0, null, null, null),
list("Angled Grip", 15, /obj/item/attachable/angledgrip, null, VENDOR_ITEM_REGULAR),
@@ -79,11 +79,11 @@
list("SIDEARMS", -1, null, null),
list("VP78 Pistol", 20, /obj/item/weapon/gun/pistol/vp78, null, VENDOR_ITEM_REGULAR),
- list("88 Mod 4 Combat Pistol", 15, /obj/item/weapon/gun/pistol/mod88, null, VENDOR_ITEM_REGULAR),
+ list("VP70 Combat Pistol", 15, /obj/item/weapon/gun/pistol/vp70, null, VENDOR_ITEM_REGULAR),
list("SIDEARM AMMUNITION", -1, null, null),
list("VP78 magazine (9mm)", 5, /obj/item/ammo_magazine/pistol/vp78, null, VENDOR_ITEM_REGULAR),
- list("88M4 Magazine (9mm)", 5, /obj/item/ammo_magazine/pistol/mod88/normalpoint, null, VENDOR_ITEM_REGULAR),
+ list("VP70 Magazine (9mm)", 5, /obj/item/ammo_magazine/pistol/vp70, null, VENDOR_ITEM_REGULAR),
list("UTILITIES", -1, null, null),
list("M94 Marking Flare Pack", 3, /obj/item/storage/box/m94, null, VENDOR_ITEM_RECOMMENDED),
diff --git a/code/datums/langchat/langchat.dm b/code/datums/langchat/langchat.dm
index a447861231..4348cb32b7 100644
--- a/code/datums/langchat/langchat.dm
+++ b/code/datums/langchat/langchat.dm
@@ -10,6 +10,7 @@
/mob/living/carbon/xenomorph/hivelord/langchat_height = 64
/mob/living/carbon/xenomorph/defender/langchat_height = 48
/mob/living/carbon/xenomorph/warrior/langchat_height = 48
+/mob/living/carbon/xenomorph/king/langchat_height = 64
#define LANGCHAT_LONGEST_TEXT 64
#define LANGCHAT_WIDTH 96
diff --git a/code/datums/shuttles.dm b/code/datums/shuttles.dm
index 6a6bd61eb8..9424be83a3 100644
--- a/code/datums/shuttles.dm
+++ b/code/datums/shuttles.dm
@@ -125,3 +125,22 @@
/datum/map_template/shuttle/trijent_elevator/ice_elevator/requisitions
elevator_network = "Requisitions"
+
+/datum/map_template/shuttle/trijent_elevator/golden_arrow
+ shuttle_id = "unused"
+
+/datum/map_template/shuttle/trijent_elevator/golden_arrow/vehicleone
+ name = "Vehicle Elevator One"
+ shuttle_id = MOBILE_SHUTTLE_SHIPMAP_ELEVATOR_ONE
+ elevator_network = "ArrowVehicleOne"
+
+/datum/map_template/shuttle/trijent_elevator/golden_arrow/vehicletwo
+ name = "Vehicle Elevator Two"
+ shuttle_id = MOBILE_SHUTTLE_SHIPMAP_ELEVATOR_TWO
+ elevator_network = "ArrowVehicleTwo"
+
+/datum/map_template/shuttle/trijent_elevator/golden_arrow/cargo
+ name = "Cargo Elevator"
+ elevator_network = "garrow_cargo"
+ shuttle_id = MOBILE_SHUTTLE_SHIPMAP_ELEVATOR_CARGO
+ elevator_network = "ArrowCargo"
diff --git a/code/datums/supply_packs/ammo.dm b/code/datums/supply_packs/ammo.dm
index 164511c25c..6fdb2b4f09 100644
--- a/code/datums/supply_packs/ammo.dm
+++ b/code/datums/supply_packs/ammo.dm
@@ -240,16 +240,16 @@
containername = "\improper shotgun flechette crate"
group = "Ammo"
-//------------------------For 88M4 ----------------
+//------------------------For vp70 ----------------
-/datum/supply_packs/ammo_mod88_mag_box_ap
- name = "Magazine box (88 Mod 4 AP, 16x mags)"
+/datum/supply_packs/ammo_vp70_mag_box_ap
+ name = "Magazine box (VP70, 16x mags)"
contains = list(
- /obj/item/ammo_box/magazine/mod88,
+ /obj/item/ammo_box/magazine/vp70,
)
cost = 20
containertype = /obj/structure/closet/crate/ammo
- containername = "\improper 88 Mod 4 AP magazines crate"
+ containername = "\improper VP70 magazines crate"
group = "Ammo"
//------------------------Special or non common magazines----------------
diff --git a/code/datums/supply_packs/black_market.dm b/code/datums/supply_packs/black_market.dm
index e70d47c6be..16811680f2 100644
--- a/code/datums/supply_packs/black_market.dm
+++ b/code/datums/supply_packs/black_market.dm
@@ -151,7 +151,7 @@ Non-USCM items, from CLF, UPP, colonies, etc. Mostly combat-related.
new /obj/item/ammo_magazine/smg/mac15(src)
new /obj/item/ammo_magazine/smg/mac15(src)
if(4) //upp
- new /obj/item/weapon/gun/shotgun/type23/riot_control(src)
+ new /obj/item/weapon/gun/shotgun/type23/riot(src)
new /obj/item/ammo_magazine/handful/shotgun/heavy/beanbag(src)
new /obj/item/ammo_magazine/handful/shotgun/heavy/beanbag(src)
new /obj/item/ammo_magazine/handful/shotgun/heavy/flechette(src)
@@ -410,12 +410,12 @@ Additionally, weapons that are way too good to put in the basically-flavor black
/datum/supply_packs/contraband/seized/cmb
name = "CMB Spearhead revolver (x5 magazines included)"
contains = list(
- /obj/item/weapon/gun/revolver/cmb,
- /obj/item/ammo_magazine/revolver/cmb,
- /obj/item/ammo_magazine/revolver/cmb,
- /obj/item/ammo_magazine/revolver/cmb,
- /obj/item/ammo_magazine/revolver/cmb,
- /obj/item/ammo_magazine/revolver/cmb,
+ /obj/item/weapon/gun/revolver/spearhead,
+ /obj/item/ammo_magazine/revolver/spearhead,
+ /obj/item/ammo_magazine/revolver/spearhead,
+ /obj/item/ammo_magazine/revolver/spearhead,
+ /obj/item/ammo_magazine/revolver/spearhead,
+ /obj/item/ammo_magazine/revolver/spearhead,
)
dollar_cost = 20
containertype = /obj/structure/largecrate/black_market
@@ -683,7 +683,7 @@ USCM spare items, miscellaneous gear that's too niche and distant (or restricted
contains = list(
/obj/item/ammo_magazine/smg/m39/rubber,
/obj/item/ammo_magazine/pistol/rubber,
- /obj/item/ammo_magazine/pistol/mod88/rubber,
+ /obj/item/ammo_magazine/pistol/vp70/rubber,
/obj/item/ammo_magazine/rifle/rubber,
/obj/item/ammo_magazine/rifle/m4ra/rubber,
/obj/item/ammo_magazine/shotgun/beanbag,
@@ -694,9 +694,9 @@ USCM spare items, miscellaneous gear that's too niche and distant (or restricted
/* - Misc. USCM weaponry - */
/datum/supply_packs/contraband/surplus/mk45_automag
- name = "surplus MK-45 Automagnum case"
+ name = "surplus HG 45 case"
dollar_cost = 35
- contains = list(/obj/item/storage/box/guncase/mk45_automag)
+ contains = list(/obj/item/storage/box/guncase/hg45)
containertype = /obj/structure/largecrate/black_market
/datum/supply_packs/contraband/surplus/nsg23_marine
@@ -927,13 +927,13 @@ This is where the RO can reclaim their lost honor and purchase the M44 custom, t
/datum/supply_packs/contraband/deep_storage/cartridge_bayonet
name = "M8 Cartridge Bayonet Kit"
- contains = list(/obj/item/storage/box/co2_knife)
+ contains = list(/obj/item/storage/box/loadout/co2_knife)
dollar_cost = 10
containertype = /obj/structure/largecrate/black_market
/datum/supply_packs/contraband/deep_storage/clf_holdout
name = "D18 Holdout Pistol"
- contains = list(/obj/item/storage/box/clf)
+ contains = list(/obj/item/storage/box/loadout/clf)
dollar_cost = 10
crate_heat = 2
containertype = /obj/structure/largecrate/black_market
diff --git a/code/datums/weather/weather_events/long.dm b/code/datums/weather/weather_events/long.dm
new file mode 100644
index 0000000000..9e569dd172
--- /dev/null
+++ b/code/datums/weather/weather_events/long.dm
@@ -0,0 +1,48 @@
+// Weather events for Big Red
+/datum/weather_event/dust/infinite
+ name = "Duststorm (Infinite)"
+ length = INFINITY
+
+/datum/weather_event/sand/infinite
+ name = "Sandstorm (Infinite)"
+ length = INFINITY
+
+/datum/weather_event/rock/infinite
+ name = "Rockstorm (Infinite)"
+ length = INFINITY
+
+// Weather events for Chances Claim
+/datum/weather_event/light_rain/lv522/infinite
+ name = "LV522 Light Rain (Infinite)"
+ length = INFINITY
+
+// Weather events for LV624
+/datum/weather_event/light_rain/infinite
+ name = "Light Rain (Infinite)"
+ length = INFINITY
+
+/datum/weather_event/heavy_rain/infinite
+ name = "Heavy Rain (Infinite)"
+ length = INFINITY
+
+// Weather events for New Varadero
+/datum/weather_event/light_rain/varadero/infinite
+ name = "Tropical Storm (Infinite)"
+ length = INFINITY
+
+/datum/weather_event/monsoon/infinite
+ name = "Monsoon Warning (Infinite)"
+ length = INFINITY
+
+// Weather events for Sorokyne
+/datum/weather_event/snow/infinite
+ name = "Snow (Infinite)"
+ length = INFINITY
+
+/datum/weather_event/snowstorm/infinite
+ name = "Snowstorm (Infinite)"
+ length = INFINITY
+
+/datum/weather_event/blizzard/infinite
+ name = "Blizzard (Infinite)"
+ length = INFINITY
diff --git a/code/datums/weather/weather_events/lv522_chances_claim.dm b/code/datums/weather/weather_events/lv522_chances_claim.dm
index 6b7b296b8c..9d1ec84d71 100644
--- a/code/datums/weather/weather_events/lv522_chances_claim.dm
+++ b/code/datums/weather/weather_events/lv522_chances_claim.dm
@@ -1,4 +1,6 @@
/datum/weather_event/light_rain/lv522
+ name = "LV522 Light Rain"
+ display_name = "Light Rain"
length = 3 MINUTES
lightning_chance = 4
diff --git a/code/datums/weather/weather_events/new_varadero.dm b/code/datums/weather/weather_events/new_varadero.dm
index f2af23c3f1..36845a2940 100644
--- a/code/datums/weather/weather_events/new_varadero.dm
+++ b/code/datums/weather/weather_events/new_varadero.dm
@@ -1,22 +1,13 @@
-/datum/weather_event/light_rain
+/datum/weather_event/light_rain/varadero
name = "Tropical Storm"
display_name = "Tropical Storm"
length = 4 MINUTES
- fullscreen_type = /atom/movable/screen/fullscreen/weather/low
- turf_overlay_icon_state = "strata_storm"
turf_overlay_alpha = 40
- effect_message = null
- damage_per_tick = 0
-
has_process = TRUE
lightning_chance = 1
- ambience = 'sound/ambience/rainforest.ogg'
-
- fire_smothering_strength = 1
-
/datum/weather_event/monsoon
name = "Monsoon Warning"
display_name = "Monsoon Warning"
diff --git a/code/datums/weather/weather_map_holders/new_varadero.dm b/code/datums/weather/weather_map_holders/new_varadero.dm
index 8222001f47..1edb2c42c8 100644
--- a/code/datums/weather/weather_map_holders/new_varadero.dm
+++ b/code/datums/weather/weather_map_holders/new_varadero.dm
@@ -5,7 +5,7 @@
no_weather_turf_icon_state = "strata_clearsky"
potential_weather_events = list(
- /datum/weather_event/light_rain,
+ /datum/weather_event/light_rain/varadero,
/datum/weather_event/monsoon,
)
diff --git a/code/datums/xeno_shields/shield_types/king_shield.dm b/code/datums/xeno_shields/shield_types/king_shield.dm
new file mode 100644
index 0000000000..c8a54bf2c5
--- /dev/null
+++ b/code/datums/xeno_shields/shield_types/king_shield.dm
@@ -0,0 +1,20 @@
+/// Shield can be equal to a maximum of percent_maxhealth_damagecap of the receiver's max hp
+/datum/xeno_shield/king_shield
+ duration = 10 SECONDS
+ decay_amount_per_second = 100
+ /// The maximum damage multiplier of max health to apply in a hit
+ var/percent_maxhealth_damagecap = 0.1
+
+/datum/xeno_shield/king_shield/on_hit(damage)
+ var/relative_damage_cap = linked_xeno.maxHealth * percent_maxhealth_damagecap
+
+ if(damage > relative_damage_cap)
+ damage = relative_damage_cap
+ return ..(damage)
+
+
+/datum/xeno_shield/king_shield/on_removal()
+ . = ..()
+ if(linked_xeno)
+ // Remove the shield overlay early
+ linked_xeno.remove_suit_layer()
diff --git a/code/datums/xeno_shields/xeno_shield.dm b/code/datums/xeno_shields/xeno_shield.dm
index 49f04f19e6..659884d669 100644
--- a/code/datums/xeno_shields/xeno_shield.dm
+++ b/code/datums/xeno_shields/xeno_shield.dm
@@ -79,11 +79,14 @@
xeno_shields += new_shield
new_shield.last_damage_taken = world.time // So we don't insta-delete our shield.
- new_shield.decay_amount_per_second = decay_amount_per_second
+ if(decay_amount_per_second)
+ new_shield.decay_amount_per_second = decay_amount_per_second
+ if(duration)
+ new_shield.duration = duration
new_shield.linked_xeno = src
- if(duration > -1)
- addtimer(CALLBACK(new_shield, TYPE_PROC_REF(/datum/xeno_shield, begin_decay)), duration)
+ if(new_shield.duration > -1)
+ addtimer(CALLBACK(new_shield, TYPE_PROC_REF(/datum/xeno_shield, begin_decay)), new_shield.duration)
overlay_shields()
return new_shield
diff --git a/code/game/area/golden_arrow.dm b/code/game/area/golden_arrow.dm
index 20d67e3bad..9b879219b0 100644
--- a/code/game/area/golden_arrow.dm
+++ b/code/game/area/golden_arrow.dm
@@ -31,7 +31,7 @@
icon_state = "upperengineering"
/area/golden_arrow/briefing
- name = "\improper Briefing Area"
+ name = "\improper Assembly Room"
icon_state = "briefing"
/area/golden_arrow/dorms
@@ -81,3 +81,50 @@
/area/golden_arrow/platoonarmory
name = "\improper Platoon Armory"
icon_state = "alpha"
+
+/area/golden_arrow/ai_interface
+ name = "\improper Human AI Interface"
+ icon_state = "airoom"
+ soundscape_playlist = SCAPE_PL_AICORE
+ soundscape_interval = 7
+
+/area/golden_arrow/motor_pool
+ name = "\improper Motor Pool"
+ icon_state = "workshop"
+
+/area/golden_arrow/lower_cargo
+ name = "\improper Lower Cargo Bays"
+ icon_state = "req"
+
+/area/golden_arrow/supplydrop
+ name = "\improper Supply Drop Bay"
+ icon_state = "astronavigation"
+
+
+/area/golden_arrow/cargo_shuttle
+ name = "\improper cargo_shuttle"
+ icon_state = "lifeboat"
+
+/area/golden_arrow/cargo_shuttle/elevator
+ name = "\improper Cargo Elevator"
+ unlimited_power = TRUE
+ requires_power = FALSE
+
+/area/golden_arrow/cargo_shuttle/lower
+ name = "\improper Cargo Elevator Lower Level"
+
+/area/golden_arrow/cargo_shuttle/upper
+ name = "\improper Cargo Elevator Upper Level"
+
+/area/golden_arrow/vehicle_shuttle
+ name = "\improper Vehicle Elevator One"
+
+/area/golden_arrow/vehicle_shuttle/upper
+ name = "\improper Vehicle Elevator One Upper"
+
+/area/golden_arrow/vehicle_shuttle/two
+ name = "\improper Vehicle Elevator Two"
+
+/area/golden_arrow/vehicle_shuttle/two/upper
+ name = "\improper Vehicle Elevator Two Upper"
+
diff --git a/code/game/jobs/role_authority.dm b/code/game/jobs/role_authority.dm
index 42ffc22570..ea6ec48d60 100644
--- a/code/game/jobs/role_authority.dm
+++ b/code/game/jobs/role_authority.dm
@@ -206,18 +206,46 @@ I hope it's easier to tell what the heck this proc is even doing, unlike previou
//PART II: Setting up our player variables and lists, to see if we have anyone to destribute.
unassigned_players = list()
- for(var/mob/new_player/M in GLOB.player_list) //Get all players who are ready.
- if(!M.ready || M.job)
+ for(var/mob/new_player/player as anything in GLOB.new_player_list)
+ if(!player.ready || player.job) //get only players who are ready and unassigned
continue
- unassigned_players += M
+ var/datum/preferences/prefs = player.client?.prefs
+ if(!prefs) //either no client to play, or no preferences
+ continue
+
+ if(prefs.alternate_option == RETURN_TO_LOBBY && !prefs.has_job_priorities()) //only try to assign players that could possibly be assigned
+ continue
+
+ unassigned_players += player
if(!length(unassigned_players)) //If we don't have any players, the round can't start.
unassigned_players = null
return
- unassigned_players = shuffle(unassigned_players, 1) //Shuffle the players.
+ var/list/player_weights = list()
+ var/debug_total_weight = 0
+ for(var/mob/new_player/cycled_unassigned as anything in unassigned_players)
+ var/base_weight = 1 //baseline weighting
+ var/new_bonus = 0
+ switch(cycled_unassigned.client.get_total_human_playtime()) //+1 for new players, +2 for really new players
+ if(0 to 2 HOURS)
+ new_bonus = 2
+ if(2 HOURS to 5 HOURS)
+ new_bonus = 1
+
+ var/streak_bonus = max(get_client_stat(cycled_unassigned.client, PLAYER_STAT_UNASSIGNED_ROUND_STREAK) - 2, 0) //+1 per missed round after 2
+
+ player_weights[cycled_unassigned] = base_weight + new_bonus + streak_bonus
+ debug_total_weight += player_weights[cycled_unassigned]
+ log_debug("ASSIGNMENT: player_weights generated with [length(player_weights)] players and [debug_total_weight] total weight.")
+
+ unassigned_players = shuffle_weight(player_weights)
+ var/list/debug_weight_order = list()
+ for(var/mob/new_player/cycled_unassigned as anything in unassigned_players)
+ debug_weight_order += player_weights[cycled_unassigned]
+ log_debug("ASSIGNMENT: unassigned_players by entry weight: ([debug_weight_order.Join(", ")])")
// How many positions do we open based on total pop
for(var/i in roles_by_name)
@@ -247,11 +275,11 @@ I hope it's easier to tell what the heck this proc is even doing, unlike previou
return
log_debug("ASSIGNMENT: Starting prime priority assignments.")
- for(var/mob/new_player/cycled_unassigned in shuffle(unassigned_players))
+ for(var/mob/new_player/cycled_unassigned in unassigned_players)
assign_role_to_player_by_priority(cycled_unassigned, roles_to_assign, unassigned_players, PRIME_PRIORITY)
log_debug("ASSIGNMENT: Starting regular priority assignments.")
- for(var/mob/new_player/cycled_unassigned in shuffle(unassigned_players))
+ for(var/mob/new_player/cycled_unassigned in unassigned_players)
var/player_assigned_job = FALSE
for(var/priority in HIGH_PRIORITY to LOW_PRIORITY)
@@ -264,20 +292,17 @@ I hope it's easier to tell what the heck this proc is even doing, unlike previou
break
if(!player_assigned_job)
- log_debug("ASSIGNMENT: [cycled_unassigned] was unable to be assigned a job based on preferences and roles to assign. Attempting alternate options.")
-
switch(cycled_unassigned.client.prefs.alternate_option)
if(GET_RANDOM_JOB)
- log_debug("ASSIGNMENT: [cycled_unassigned] has opted for random job alternate option. Finding random job.")
var/iterator = 0
while((cycled_unassigned in unassigned_players) || iterator >= 5)
iterator++
var/random_job_name = pick(roles_to_assign)
var/datum/job/random_job = roles_to_assign[random_job_name]
- log_debug("ASSIGNMENT: [cycled_unassigned] is attempting to be assigned to [random_job_name].")
if(assign_role(cycled_unassigned, random_job))
log_debug("ASSIGNMENT: We have randomly assigned [random_job_name] to [cycled_unassigned]")
+ cycled_unassigned.client.player_data.adjust_stat(PLAYER_STAT_UNASSIGNED_ROUND_STREAK, STAT_CATEGORY_MISC, 0, TRUE)
unassigned_players -= cycled_unassigned
if(random_job.spawn_positions != -1 && random_job.current_positions >= random_job.spawn_positions)
@@ -288,10 +313,10 @@ I hope it's easier to tell what the heck this proc is even doing, unlike previou
log_debug("ASSIGNMENT: [cycled_unassigned] was unable to be randomly assigned a job. Something has gone wrong.")
if(BE_MARINE)
- log_debug("ASSIGNMENT: [cycled_unassigned] has opted for marine alternate option. Checking if slot is available.")
var/datum/job/marine_job = GET_MAPPED_ROLE(JOB_SQUAD_MARINE)
if(assign_role(cycled_unassigned, marine_job))
log_debug("ASSIGNMENT: We have assigned [marine_job.title] to [cycled_unassigned] via alternate option.")
+ cycled_unassigned.client.player_data.adjust_stat(PLAYER_STAT_UNASSIGNED_ROUND_STREAK, STAT_CATEGORY_MISC, 0, TRUE)
unassigned_players -= cycled_unassigned
if(marine_job.spawn_positions != -1 && marine_job.current_positions >= marine_job.spawn_positions)
@@ -305,22 +330,22 @@ I hope it's easier to tell what the heck this proc is even doing, unlike previou
cycled_unassigned.ready = 0
log_debug("ASSIGNMENT: Assignment complete. Players unassigned: [length(unassigned_players)] Jobs unassigned: [length(roles_to_assign)]")
+ for(var/mob/new_player/cycled_unassigned in unassigned_players)
+ cycled_unassigned.client.player_data.adjust_stat(PLAYER_STAT_UNASSIGNED_ROUND_STREAK, STAT_CATEGORY_MISC, 1)
return roles_to_assign
/datum/authority/branch/role/proc/assign_role_to_player_by_priority(mob/new_player/cycled_unassigned, list/roles_to_assign, list/unassigned_players, priority)
- log_debug("ASSIGNMENT: We have started cycled through priority [priority] for [cycled_unassigned].")
- var/wanted_jobs_by_name = shuffle(cycled_unassigned.client?.prefs?.get_jobs_by_priority(priority))
+ var/wanted_jobs_by_name = shuffle(cycled_unassigned.client.prefs.get_jobs_by_priority(priority))
var/player_assigned_job = FALSE
for(var/job_name in wanted_jobs_by_name)
- log_debug("ASSIGNMENT: We are cycling through wanted jobs and are at [job_name] for [cycled_unassigned].")
if(job_name in roles_to_assign)
- log_debug("ASSIGNMENT: We have found [job_name] in roles to assign for [cycled_unassigned].")
var/datum/job/actual_job = roles_to_assign[job_name]
if(assign_role(cycled_unassigned, actual_job))
- log_debug("ASSIGNMENT: We have assigned [job_name] to [cycled_unassigned].")
+ log_debug("ASSIGNMENT: We have assigned [job_name] to [cycled_unassigned] at priority [priority].")
+ cycled_unassigned.client.player_data?.adjust_stat(PLAYER_STAT_UNASSIGNED_ROUND_STREAK, STAT_CATEGORY_MISC, 0, TRUE)
unassigned_players -= cycled_unassigned
if(actual_job.spawn_positions != -1 && actual_job.current_positions >= actual_job.spawn_positions)
@@ -331,10 +356,8 @@ I hope it's easier to tell what the heck this proc is even doing, unlike previou
break
if(player_assigned_job)
- log_debug("ASSIGNMENT: [cycled_unassigned] has been assigned a job.")
return player_assigned_job
- log_debug("ASSIGNMENT: [cycled_unassigned] did not get a job at priority [priority].")
return player_assigned_job
/**
@@ -773,6 +796,8 @@ I hope it's easier to tell what the heck this proc is even doing, unlike previou
M = /mob/living/carbon/xenomorph/predalien
if(XENO_CASTE_HELLHOUND)
M = /mob/living/carbon/xenomorph/hellhound
+ if(XENO_CASTE_KING)
+ M = /mob/living/carbon/xenomorph/king
return M
diff --git a/code/game/machinery/computer/dropship_weapons.dm b/code/game/machinery/computer/dropship_weapons.dm
index ab77f35d26..b5022b4a75 100644
--- a/code/game/machinery/computer/dropship_weapons.dm
+++ b/code/game/machinery/computer/dropship_weapons.dm
@@ -694,10 +694,10 @@
if(CEILING_GLASS)
is_outside = TRUE
if(!is_outside && !cavebreaker) //cavebreaker doesn't care
- to_chat(weapon_operator, SPAN_WARNING("INVALID TARGET: target must be visible from high altitude."))
+ to_chat(weapon_operator, SPAN_WARNING("WARNING: Target obstructed by terrain features."))
return FALSE
if (protected_by_pylon(TURF_PROTECTION_CAS, TU))
- to_chat(weapon_operator, SPAN_WARNING("INVALID TARGET: biological-pattern interference with signal."))
+ to_chat(weapon_operator, SPAN_WARNING("WARNING: Signal garbled, launch aborted."))
return FALSE
if(!DEW.ammo_equipped.can_fire_at(TU, weapon_operator))
return FALSE
@@ -807,10 +807,10 @@
if (!istype(dropship))
return FALSE
if (!dropship.in_flyby || dropship.mode != SHUTTLE_CALL)
- to_chat(user, SPAN_WARNING("Has to be in Fly By mode"))
+ to_chat(user, SPAN_WARNING("You must be making a flyby!"))
return FALSE
if (dropship.timer && dropship.timeLeft(1) < firemission_envelope.flyoff_period)
- to_chat(user, SPAN_WARNING("Not enough time to complete the Fire Mission"))
+ to_chat(user, SPAN_WARNING("Not enough time on station to complete the firemission."))
return FALSE
var/datum/cas_signal/recorded_loc = firemission_envelope.recorded_loc
var/obj/source = recorded_loc.signal_loc
@@ -846,7 +846,7 @@
return
if(firemission_envelope.recorded_loc.obstructed_signal())
if(firemission_envelope.user_is_guided(user))
- to_chat(user, SPAN_WARNING("Signal Obstructed. You have to go in blind."))
+ to_chat(user, SPAN_WARNING("Signal obstructed. You have to go in blind."))
return
var/sx = 0
var/sy = 0
@@ -872,7 +872,7 @@
var/area/laser_area = get_area(shootloc)
if(!istype(laser_area) || CEILING_IS_PROTECTED(laser_area.ceiling, CEILING_PROTECTION_TIER_1))
if(firemission_envelope.user_is_guided(user))
- to_chat(user, SPAN_WARNING("Vision Obstructed. You have to go in blind."))
+ to_chat(user, SPAN_WARNING("Vision obstructed. You have to go in blind."))
firemission_envelope.change_current_loc()
else
firemission_envelope.change_current_loc(shootloc)
diff --git a/code/game/machinery/doors/poddoor.dm b/code/game/machinery/doors/poddoor.dm
index 562a589c78..1ae545ea4e 100644
--- a/code/game/machinery/doors/poddoor.dm
+++ b/code/game/machinery/doors/poddoor.dm
@@ -298,6 +298,7 @@
/obj/structure/machinery/door/airlock,
)
+
/obj/structure/machinery/door/poddoor/almayer/open
density = FALSE
@@ -319,6 +320,20 @@
. = ..()
addtimer(CALLBACK(src, TYPE_PROC_REF(/atom, relativewall_neighbours)), 10)
+/obj/structure/machinery/door/poddoor/almayer/blended/aicore
+ icon_state = "aidoor1"
+ base_icon_state = "aidoor"
+
+/obj/structure/machinery/door/poddoor/almayer/blended/aicore/open
+ density = FALSE
+
+/obj/structure/machinery/door/poddoor/almayer/blended/white_aicore
+ icon_state = "w_aidoor1"
+ base_icon_state = "w_aidoor"
+
+/obj/structure/machinery/door/poddoor/almayer/blended/white_aicore/open
+ density = FALSE
+
/obj/structure/machinery/door/poddoor/almayer/locked
unacidable = TRUE
diff --git a/code/game/machinery/vending/cm_vending.dm b/code/game/machinery/vending/cm_vending.dm
index fee6f9a53c..9fd775b64f 100644
--- a/code/game/machinery/vending/cm_vending.dm
+++ b/code/game/machinery/vending/cm_vending.dm
@@ -1012,7 +1012,7 @@ GLOBAL_LIST_EMPTY(vending_products)
//---helper glob data
GLOBAL_LIST_INIT(cm_vending_gear_corresponding_types_list, list(
- /obj/item/ammo_box/magazine/mod88/empty = /obj/item/ammo_box/magazine/mod88,
+ /obj/item/ammo_box/magazine/vp70/empty = /obj/item/ammo_box/magazine/vp70,
/obj/item/ammo_box/magazine/m4a3/empty = /obj/item/ammo_box/magazine/m4a3,
/obj/item/ammo_box/magazine/m4a3/ap/empty = /obj/item/ammo_box/magazine/m4a3/ap,
/obj/item/ammo_box/magazine/m4a3/hp/empty = /obj/item/ammo_box/magazine/m4a3/hp,
diff --git a/code/game/machinery/vending/vending_types.dm b/code/game/machinery/vending/vending_types.dm
index e9f8f3bc37..8922b12733 100644
--- a/code/game/machinery/vending/vending_types.dm
+++ b/code/game/machinery/vending/vending_types.dm
@@ -261,6 +261,20 @@
/obj/item/tape/regulation = 5,
)
+/obj/structure/machinery/vending/security/upp
+ name = "\improper People's Police Equipment Vendor"
+ desc = "A standard security vendor used by security forces of the UPP."
+ req_access = list(ACCESS_CIVILIAN_BRIG)
+ products = list(
+ /obj/item/handcuffs = 8,
+ /obj/item/reagent_container/spray/pepper = 4,
+ /obj/item/device/flashlight = 4,
+ /obj/item/storage/belt/security/MP/UPP = 4,
+ /obj/item/device/flash = 5,
+ /obj/item/storage/box/evidence = 6,
+ /obj/item/tape/regulation = 5,
+ )
+
/obj/structure/machinery/vending/sea
name = "\improper SeaTech"
desc = "An equipment vendor designed to save lives"
@@ -273,7 +287,7 @@
products = list(
/obj/item/ammo_magazine/smg/m39/rubber = 20,
/obj/item/ammo_magazine/pistol/rubber = 20,
- /obj/item/ammo_magazine/pistol/mod88/rubber = 20,
+ /obj/item/ammo_magazine/pistol/vp70/rubber = 20,
/obj/item/ammo_magazine/rifle/rubber = 20,
/obj/item/ammo_magazine/rifle/m4ra/rubber = 20,
/obj/item/ammo_magazine/shotgun/beanbag = 20,
diff --git a/code/game/machinery/vending/vendor_types/crew/mp.dm b/code/game/machinery/vending/vendor_types/crew/mp.dm
index b63a022481..f9dc3d45f2 100644
--- a/code/game/machinery/vending/vendor_types/crew/mp.dm
+++ b/code/game/machinery/vending/vendor_types/crew/mp.dm
@@ -15,7 +15,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_military_police, list(
list("MP Beret", 0, /obj/item/clothing/head/beret/marine/mp, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_MANDATORY),
list("HANDGUN CASE (CHOOSE 1)", 0, null, null, null),
- list("88 mod 4 Combat Pistol Case", 0, /obj/item/storage/box/guncase/mod88, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_MANDATORY),
+ list("VP70 Combat Pistol Case", 0, /obj/item/storage/box/guncase/vp70, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_MANDATORY),
list("M44 Combat Revolver Case", 0, /obj/item/storage/box/guncase/m44, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_MANDATORY),
list("M4A3 Service Pistol Case", 0, /obj/item/storage/box/guncase/m4a3, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_MANDATORY),
@@ -73,7 +73,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_military_police_warden, list(
list("Warden Peaked Cap", 0, /obj/item/clothing/head/beret/marine/mp/warden, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_MANDATORY),
list("HANDGUN CASE (CHOOSE 1)", 0, null, null, null),
- list("88 mod 4 Combat Pistol Case", 0, /obj/item/storage/box/guncase/mod88, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_MANDATORY),
+ list("VP70 Combat Pistol Case", 0, /obj/item/storage/box/guncase/vp70, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_MANDATORY),
list("M44 Combat Revolver Case", 0, /obj/item/storage/box/guncase/m44, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_MANDATORY),
list("M4A3 Service Pistol Case", 0, /obj/item/storage/box/guncase/m4a3, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_MANDATORY),
diff --git a/code/game/machinery/vending/vendor_types/crew/pilot_officer.dm b/code/game/machinery/vending/vendor_types/crew/pilot_officer.dm
index 14691dbe27..d3935a3bcc 100644
--- a/code/game/machinery/vending/vendor_types/crew/pilot_officer.dm
+++ b/code/game/machinery/vending/vendor_types/crew/pilot_officer.dm
@@ -24,13 +24,13 @@
list("M41A Magazine (10x24mm)", 24, /obj/item/ammo_magazine/rifle, VENDOR_ITEM_REGULAR),
list("SIDEARMS", -1, null, null),
- list("88 Mod 4 Combat Pistol", 4, /obj/item/weapon/gun/pistol/mod88, VENDOR_ITEM_REGULAR),
+ list("VP70 Combat Pistol", 4, /obj/item/weapon/gun/pistol/vp70, VENDOR_ITEM_REGULAR),
list("M44 Combat Revolver", 4, /obj/item/weapon/gun/revolver/m44, VENDOR_ITEM_REGULAR),
list("M4A3 Service Pistol", 4, /obj/item/weapon/gun/pistol/m4a3, VENDOR_ITEM_REGULAR),
list("M82F Flare Gun", 4, /obj/item/weapon/gun/flare, VENDOR_ITEM_REGULAR),
list("SIDEARM AMMUNITION", -1, null, null),
- list("88M4 Magazine (9mm)", 20, /obj/item/ammo_magazine/pistol/mod88/normalpoint, VENDOR_ITEM_REGULAR),
+ list("VP70 Magazine (9mm)", 20, /obj/item/ammo_magazine/pistol/vp70, VENDOR_ITEM_REGULAR),
list("M44 Speedloader (.44)", 20, /obj/item/ammo_magazine/revolver, VENDOR_ITEM_REGULAR),
list("M4A3 Magazine (9mm)", 20, /obj/item/ammo_magazine/pistol, VENDOR_ITEM_REGULAR),
list("M4A3 AP Magazine (9mm)", 12, /obj/item/ammo_magazine/pistol/ap, VENDOR_ITEM_REGULAR),
@@ -71,7 +71,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_pilot_officer, list(
list("M3-VL Pattern Flak Vest", 0, /obj/item/clothing/suit/storage/marine/light/vest/dcc, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_MANDATORY),
list("PERSONAL SIDEARM (CHOOSE 1)", 0, null, null, null),
- list("88 Mod 4 Combat Pistol", 0, /obj/item/weapon/gun/pistol/mod88, MARINE_CAN_BUY_ATTACHMENT, VENDOR_ITEM_REGULAR),
+ list("VP70 Combat Pistol", 0, /obj/item/weapon/gun/pistol/vp70, MARINE_CAN_BUY_ATTACHMENT, VENDOR_ITEM_REGULAR),
list("VP78 Pistol", 0, /obj/item/weapon/gun/pistol/vp78, MARINE_CAN_BUY_ATTACHMENT, VENDOR_ITEM_REGULAR),
list("BELT (CHOOSE 1)", 0, null, null, null),
@@ -160,7 +160,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_dropship_crew_chief, list(
list("M3-VL Pattern Flak Vest", 0, /obj/item/clothing/suit/storage/marine/light/vest/dcc, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_MANDATORY),
list("PERSONAL SIDEARM (CHOOSE 1)", 0, null, null, null),
- list("88 Mod 4 Combat Pistol", 0, /obj/item/weapon/gun/pistol/mod88, MARINE_CAN_BUY_ATTACHMENT, VENDOR_ITEM_REGULAR),
+ list("VP70 Combat Pistol", 0, /obj/item/weapon/gun/pistol/vp70, MARINE_CAN_BUY_ATTACHMENT, VENDOR_ITEM_REGULAR),
list("VP78 Pistol", 0, /obj/item/weapon/gun/pistol/vp78, MARINE_CAN_BUY_ATTACHMENT, VENDOR_ITEM_REGULAR),
list("BELT (CHOOSE 1)", 0, null, null, null),
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 b5bc42eabb..a0d37fb154 100644
--- a/code/game/machinery/vending/vendor_types/crew/senior_officers.dm
+++ b/code/game/machinery/vending/vendor_types/crew/senior_officers.dm
@@ -45,7 +45,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_military_police_chief, list(
list("CMP Beret", 0, /obj/item/clothing/head/beret/marine/mp/cmp, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_MANDATORY),
list("HANDGUN CASE (CHOOSE 1)", 0, null, null, null),
- list("88 mod 4 Combat Pistol Case", 0, /obj/item/storage/box/guncase/mod88, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_MANDATORY),
+ list("VP70 Combat Pistol Case", 0, /obj/item/storage/box/guncase/vp70, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_MANDATORY),
list("M44 Combat Revolver Case", 0, /obj/item/storage/box/guncase/m44, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_MANDATORY),
list("M4A3 Service Pistol Case", 0, /obj/item/storage/box/guncase/m4a3, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_MANDATORY),
@@ -132,7 +132,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_chief_engineer, list(
list("PERSONAL SIDEARM (CHOOSE 1)", 0, null, null, null),
list("M4A3 Service Pistol", 0, /obj/item/storage/belt/gun/m4a3/full, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED),
- list("Mod 88 Pistol", 0, /obj/item/storage/belt/gun/m4a3/mod88, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED),
+ list("VP70 Pistol", 0, /obj/item/storage/belt/gun/m4a3/vp70, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED),
list("M44 Revolver", 0, /obj/item/storage/belt/gun/m44/mp, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED),
list("ACCESSORIES (CHOOSE 1)", 0, null, null, null),
@@ -158,7 +158,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_chief_engineer, list(
list("Heat Absorbent Coif", 0, /obj/item/clothing/mask/rebreather/scarf, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR),
list("PRIMARY FIREARMS (CHOOSE 1)", 0, null, null, null),
- list("M37A2 Pump Shotgun", 0, /obj/item/storage/box/guncase/pumpshotgun, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_REGULAR),
+ list("M120 Tactical Shotgun", 0, /obj/item/storage/box/guncase/shotguncombat, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_REGULAR),
list("M41A Pulse Rifle MK2", 0, /obj/item/storage/box/guncase/m41a, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_REGULAR),
list("M240 Incinerator Unit", 0, /obj/item/storage/box/guncase/flamer, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_REGULAR),
@@ -181,7 +181,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_req_officer, list(
list("PERSONAL SIDEARM (CHOOSE 1)", 0, null, null, null),
list("M4A3 Service Pistol", 0, /obj/item/storage/belt/gun/m4a3/full, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED),
- list("Mod 88 Pistol", 0, /obj/item/storage/belt/gun/m4a3/mod88, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED),
+ list("VP70 Pistol", 0, /obj/item/storage/belt/gun/m4a3/vp70, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED),
list("M44 Custom Revolver", 0, /obj/item/storage/belt/gun/m44/custom, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED),
list("COMBAT EQUIPMENT (TAKE ALL)", 0, null, null, null),
@@ -234,7 +234,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_cmo, list(
list("PERSONAL SIDEARM (CHOOSE 1)", 0, null, null, null),
list("M4A3 Service Pistol", 0, /obj/item/storage/belt/gun/m4a3/full, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_REGULAR),
- list("Mod 88 Pistol", 0, /obj/item/storage/belt/gun/m4a3/mod88, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_REGULAR),
+ list("VP70 Pistol", 0, /obj/item/storage/belt/gun/m4a3/vp70, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_REGULAR),
list("M44 Revolver", 0, /obj/item/storage/belt/gun/m44/mp, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED),
list("COMBAT EQUIPMENT (TAKE ALL)", 0, null, null, null),
@@ -283,7 +283,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_xo, list(
list("PERSONAL WEAPON (CHOOSE 1)", 0, null, null, null),
list("VP78 Pistol", 0, /obj/item/storage/belt/gun/m4a3/vp78, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED),
list("M4A3 Service Pistol", 0, /obj/item/storage/belt/gun/m4a3/commander, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_REGULAR),
- list("Mod 88 Pistol", 0, /obj/item/storage/belt/gun/m4a3/mod88, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_REGULAR),
+ list("VP70 Pistol", 0, /obj/item/storage/belt/gun/m4a3/vp70, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_REGULAR),
list("M44 Revolver", 0, /obj/item/storage/belt/gun/m44/mp, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_REGULAR),
list("COMBAT EQUIPMENT (TAKE ALL)", 0, null, null, null),
@@ -342,7 +342,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_auxiliary_officer, list(
list("PERSONAL SIDEARM (CHOOSE 1)", 0, null, null, null),
list("M4A3 Service Pistol", 0, /obj/item/storage/belt/gun/m4a3/full, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED),
- list("Mod 88 Pistol", 0, /obj/item/storage/belt/gun/m4a3/mod88, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED),
+ list("VP70 Pistol", 0, /obj/item/storage/belt/gun/m4a3/vp70, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED),
list("M44 Custom Revolver", 0, /obj/item/storage/belt/gun/m44/custom, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED),
list("COMBAT EQUIPMENT (TAKE ALL)", 0, null, null, null),
diff --git a/code/game/machinery/vending/vendor_types/crew/vehicle_crew.dm b/code/game/machinery/vending/vendor_types/crew/vehicle_crew.dm
index 55046eaa2b..76b8eb6301 100644
--- a/code/game/machinery/vending/vendor_types/crew/vehicle_crew.dm
+++ b/code/game/machinery/vending/vendor_types/crew/vehicle_crew.dm
@@ -272,13 +272,13 @@ GLOBAL_LIST_INIT(cm_vending_vehicle_crew_apc_spare, list(
list("M41A Magazine (10x24mm)", 12, /obj/item/ammo_magazine/rifle, VENDOR_ITEM_REGULAR),
list("SIDEARMS", -1, null, null),
- list("88 Mod 4 Combat Pistol", 2, /obj/item/weapon/gun/pistol/mod88, VENDOR_ITEM_REGULAR),
+ list("VP70 Combat Pistol", 2, /obj/item/weapon/gun/pistol/vp70, VENDOR_ITEM_REGULAR),
list("M44 Combat Revolver", 2, /obj/item/weapon/gun/revolver/m44, VENDOR_ITEM_REGULAR),
list("M4A3 Service Pistol", 2, /obj/item/weapon/gun/pistol/m4a3, VENDOR_ITEM_REGULAR),
list("M82F Flare Gun", 2, /obj/item/weapon/gun/flare, VENDOR_ITEM_REGULAR),
list("SIDEARM AMMUNITION", -1, null, null),
- list("88M4 Magazine (9mm)", 10, /obj/item/ammo_magazine/pistol/mod88/normalpoint, VENDOR_ITEM_REGULAR),
+ list("VP70 Magazine (9mm)", 10, /obj/item/ammo_magazine/pistol/vp70, VENDOR_ITEM_REGULAR),
list("M44 Speedloader (.44)", 10, /obj/item/ammo_magazine/revolver, VENDOR_ITEM_REGULAR),
list("M4A3 Magazine (9mm)", 10, /obj/item/ammo_magazine/pistol, VENDOR_ITEM_REGULAR),
list("M4A3 AP Magazine (9mm)", 6, /obj/item/ammo_magazine/pistol/ap, VENDOR_ITEM_REGULAR),
@@ -313,7 +313,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_vehicle_crew, list(
list("MRE", 0, /obj/item/storage/box/MRE, MARINE_CAN_BUY_MRE, VENDOR_ITEM_MANDATORY),
list("PERSONAL SIDEARM (CHOOSE 1)", 0, null, null, null),
- list("88 Mod 4 Combat Pistol", 0, /obj/item/weapon/gun/pistol/mod88, MARINE_CAN_BUY_ATTACHMENT, VENDOR_ITEM_REGULAR),
+ list("VP70 Combat Pistol", 0, /obj/item/weapon/gun/pistol/vp70, MARINE_CAN_BUY_ATTACHMENT, VENDOR_ITEM_REGULAR),
list("VP78 Pistol", 0, /obj/item/weapon/gun/pistol/vp78, MARINE_CAN_BUY_ATTACHMENT, VENDOR_ITEM_REGULAR),
list("BELT (CHOOSE 1)", 0, null, null, null),
diff --git a/code/game/machinery/vending/vendor_types/requisitions.dm b/code/game/machinery/vending/vendor_types/requisitions.dm
index f3c4973c3f..1717d1e9de 100644
--- a/code/game/machinery/vending/vendor_types/requisitions.dm
+++ b/code/game/machinery/vending/vendor_types/requisitions.dm
@@ -30,7 +30,7 @@
list("M4RA Battle Rifle", round(scale * 20), /obj/item/weapon/gun/rifle/m4ra, VENDOR_ITEM_REGULAR),
list("SIDEARMS", -1, null, null),
- list("88 Mod 4 Combat Pistol", round(scale * 50), /obj/item/weapon/gun/pistol/mod88, VENDOR_ITEM_REGULAR),
+ list("VP70 Combat Pistol", round(scale * 50), /obj/item/weapon/gun/pistol/vp70, VENDOR_ITEM_REGULAR),
list("M44 Combat Revolver", round(scale * 50), /obj/item/weapon/gun/revolver/m44, VENDOR_ITEM_REGULAR),
list("M4A3 Service Pistol", round(scale * 50), /obj/item/weapon/gun/pistol/m4a3, VENDOR_ITEM_REGULAR),
list("M82F Flare Gun", round(scale * 20), /obj/item/weapon/gun/flare, VENDOR_ITEM_REGULAR),
@@ -224,7 +224,7 @@
list("M39 HV Magazine (10x20mm)", round(scale * 50), /obj/item/ammo_magazine/smg/m39, VENDOR_ITEM_REGULAR),
list("M44 Speed Loader (.44)", round(scale * 40), /obj/item/ammo_magazine/revolver, VENDOR_ITEM_REGULAR),
list("M4A3 Magazine (9mm)", round(scale * 50), /obj/item/ammo_magazine/pistol, VENDOR_ITEM_REGULAR),
- list("88 Mod 4 Magazine (9mm)", round(scale * 50), /obj/item/ammo_magazine/pistol/mod88/normalpoint, VENDOR_ITEM_REGULAR),
+ list("VP70 Magazine (9mm)", round(scale * 50), /obj/item/ammo_magazine/pistol/vp70, VENDOR_ITEM_REGULAR),
list("ARMOR-PIERCING AMMUNITION", -1, null, null),
list("M4RA AP Magazine (10x24mm)", round(scale * 15.7), /obj/item/ammo_magazine/rifle/m4ra/ap, VENDOR_ITEM_REGULAR),
@@ -497,11 +497,11 @@
list("M41A Rubber Magazine (10x24mm)", round(scale * 25), /obj/item/ammo_magazine/rifle/rubber, VENDOR_ITEM_REGULAR),
list("SIDEARMS", -1, null, null),
- list("88 Mod 4 Combat Pistol", round(scale * 25), /obj/item/weapon/gun/pistol/mod88, VENDOR_ITEM_REGULAR),
+ list("VP70 Combat Pistol", round(scale * 25), /obj/item/weapon/gun/pistol/vp70, VENDOR_ITEM_REGULAR),
list("M4A3 Service Pistol", round(scale * 25), /obj/item/weapon/gun/pistol/m4a3, VENDOR_ITEM_REGULAR),
list("SIDEARM NONLETHAL AMMUNITION", -1, null, null),
- list("88M4 Rubber Magazine (9mm)", round(scale * 25), /obj/item/ammo_magazine/pistol/mod88/rubber, VENDOR_ITEM_REGULAR),
+ list("VP70 Rubber Magazine (9mm)", round(scale * 25), /obj/item/ammo_magazine/pistol/vp70/rubber, VENDOR_ITEM_REGULAR),
list("M4A3 Rubber Magazine (9mm)", round(scale * 25), /obj/item/ammo_magazine/pistol/rubber, VENDOR_ITEM_REGULAR),
list("ATTACHMENTS", -1, null, null),
diff --git a/code/game/machinery/vending/vendor_types/squad_prep/squad_prep.dm b/code/game/machinery/vending/vendor_types/squad_prep/squad_prep.dm
index 327af25c33..8ec93ab581 100644
--- a/code/game/machinery/vending/vendor_types/squad_prep/squad_prep.dm
+++ b/code/game/machinery/vending/vendor_types/squad_prep/squad_prep.dm
@@ -31,13 +31,13 @@
list("M41A Magazine (10x24mm)", round(scale * 25), /obj/item/ammo_magazine/rifle, VENDOR_ITEM_REGULAR),
list("SIDEARMS", -1, null, null),
- list("88 Mod 4 Combat Pistol", round(scale * 25), /obj/item/weapon/gun/pistol/mod88, VENDOR_ITEM_REGULAR),
+ list("VP70 Combat Pistol", round(scale * 25), /obj/item/weapon/gun/pistol/vp70, VENDOR_ITEM_REGULAR),
list("M44 Combat Revolver", round(scale * 25), /obj/item/weapon/gun/revolver/m44, VENDOR_ITEM_REGULAR),
list("M4A3 Service Pistol", round(scale * 25), /obj/item/weapon/gun/pistol/m4a3, VENDOR_ITEM_REGULAR),
list("M82F Flare Gun", round(scale * 10), /obj/item/weapon/gun/flare, VENDOR_ITEM_REGULAR),
list("SIDEARM AMMUNITION", -1, null, null),
- list("88M4 Magazine (9mm)", round(scale * 25), /obj/item/ammo_magazine/pistol/mod88/normalpoint, VENDOR_ITEM_REGULAR),
+ list("VP70 Magazine (9mm)", round(scale * 25), /obj/item/ammo_magazine/pistol/vp70, VENDOR_ITEM_REGULAR),
list("M44 Speedloader (.44)", round(scale * 20), /obj/item/ammo_magazine/revolver, VENDOR_ITEM_REGULAR),
list("M4A3 Magazine (9mm)", round(scale * 25), /obj/item/ammo_magazine/pistol, VENDOR_ITEM_REGULAR),
@@ -140,7 +140,7 @@
list("M1A1 Ballistic goggles", round(scale * 10), /obj/item/clothing/glasses/mgoggles/v2, VENDOR_ITEM_REGULAR),
list("Prescription ballistic goggles", round(scale * 10), /obj/item/clothing/glasses/mgoggles/prescription, VENDOR_ITEM_REGULAR),
list("Marine RPG glasses", round(scale * 10), /obj/item/clothing/glasses/regular, VENDOR_ITEM_REGULAR),
- list("M5 Integrated Gas Mask", round(scale * 10), /obj/item/prop/helmetgarb/helmet_gasmask, VENDOR_ITEM_REGULAR),
+ list("M10 Helmet Camouflage Wrap", round(scale * 10), /obj/item/prop/helmetgarb/camocover, VENDOR_ITEM_REGULAR),
list("M10 Helmet Netting", round(scale * 10), /obj/item/prop/helmetgarb/netting, VENDOR_ITEM_REGULAR),
list("M10 Helmet Rain Cover", round(scale * 10), /obj/item/prop/helmetgarb/raincover, VENDOR_ITEM_REGULAR),
list("Firearm Lubricant", round(scale * 15), /obj/item/prop/helmetgarb/gunoil, VENDOR_ITEM_REGULAR),
@@ -425,18 +425,10 @@
list("M89-S Signal Flare Pack", round(scale * 1), /obj/item/storage/box/m94/signal, VENDOR_ITEM_REGULAR),
list("SIDEARMS", -1, null, null),
- list("88 Mod 4 Combat Pistol", round(scale * 2), /obj/item/weapon/gun/pistol/mod88, VENDOR_ITEM_REGULAR),
- list("M44 Combat Revolver", round(scale * 2), /obj/item/weapon/gun/revolver/m44, VENDOR_ITEM_REGULAR),
+ list("VP70 Combat Pistol", round(scale * 2), /obj/item/weapon/gun/pistol/vp70, VENDOR_ITEM_REGULAR),
list("M4A3 Service Pistol", round(scale * 2), /obj/item/weapon/gun/pistol/m4a3, VENDOR_ITEM_REGULAR),
- list("VP78 pistol", round(scale * 2), /obj/item/weapon/gun/pistol/vp78, VENDOR_ITEM_REGULAR),
list("M82F Flare Gun", round(scale * 1), /obj/item/weapon/gun/flare, VENDOR_ITEM_REGULAR),
- list("SIDEARM AMMUNITION", -1, null, null),
- list("88M4 Magazine (9mm)", round(scale * 20), /obj/item/ammo_magazine/pistol/mod88/normalpoint, VENDOR_ITEM_REGULAR),
- list("M44 Speedloader (.44)", round(scale * 20), /obj/item/ammo_magazine/revolver, VENDOR_ITEM_REGULAR),
- list("M4A3 Magazine (9mm)", round(scale * 20), /obj/item/ammo_magazine/pistol, VENDOR_ITEM_REGULAR),
- list("VP78 magazine (9mm)", round(scale * 20), /obj/item/ammo_magazine/pistol/vp78, VENDOR_ITEM_REGULAR),
-
list("MISCELLANEOUS", -1, null, null),
list("Extinguisher", round(scale * 5), /obj/item/tool/extinguisher, VENDOR_ITEM_REGULAR),
list("Fire Extinguisher (Portable)", round(scale * 1), /obj/item/tool/extinguisher/mini, VENDOR_ITEM_REGULAR),
@@ -444,8 +436,9 @@
list("Machete Scabbard (Full)", round(scale * 5), /obj/item/storage/large_holster/machete/full, VENDOR_ITEM_REGULAR),
list("Binoculars", round(scale * 1), /obj/item/device/binoculars, VENDOR_ITEM_REGULAR),
list("AN/PSQ-55 Sentry Console", round(scale * 1), /obj/item/device/sentry_computer, VENDOR_ITEM_REGULAR),
- list("Spare PDT/L Battle Buddy Kit", round(scale * 3), /obj/item/storage/box/pdt_kit, VENDOR_ITEM_REGULAR),
+ list("Spare PDT/L Battle Buddy Kit", round(scale * 3), /obj/item/storage/box/pdt_kit/advanced, VENDOR_ITEM_REGULAR),
list("Rail Flashlight", round(scale * 5), /obj/item/attachable/flashlight, VENDOR_ITEM_REGULAR),
+ list("M5 'Night Raider' bayonet", round(scale * 5), /obj/item/attachable/bayonet, VENDOR_ITEM_REGULAR),
)
/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad/upp
@@ -502,8 +495,9 @@
list("Roller Bed", round(scale * 2), /obj/item/roller, VENDOR_ITEM_REGULAR),
list("Machete Scabbard (Full)", round(scale * 5), /obj/item/storage/large_holster/machete/full, VENDOR_ITEM_REGULAR),
list("Binoculars", round(scale * 1), /obj/item/device/binoculars, VENDOR_ITEM_REGULAR),
- list("Spare PDT/L Battle Buddy Kit", round(scale * 3), /obj/item/storage/box/pdt_kit, VENDOR_ITEM_REGULAR),
+ list("Spare PDT/L Battle Buddy Kit", round(scale * 3), /obj/item/storage/box/pdt_kit/advanced, VENDOR_ITEM_REGULAR),
list("Rail Flashlight", round(scale * 5), /obj/item/attachable/flashlight, VENDOR_ITEM_REGULAR),
+ list("Type 80 Bayonet", round(scale * 5), /obj/item/attachable/bayonet/upp, null, VENDOR_ITEM_REGULAR),
list("CLOTHING", -1, null, null),
list("Cap", round(scale * 5), /obj/item/clothing/head/uppcap, VENDOR_ITEM_REGULAR),
@@ -544,7 +538,7 @@
list("SIDEARMS", -1, null, null), //forecon loves their pistols
list("M48A4 Service Pistol", round(scale * 5), /obj/item/weapon/gun/pistol/m1911/socom, VENDOR_ITEM_REGULAR),
- list("88 Mod 4 Combat Pistol", round(scale * 5), /obj/item/weapon/gun/pistol/mod88, VENDOR_ITEM_REGULAR),
+ list("VP70 Combat Pistol", round(scale * 5), /obj/item/weapon/gun/pistol/vp70, VENDOR_ITEM_REGULAR),
list("M44 Combat Revolver", round(scale * 5), /obj/item/weapon/gun/revolver/m44, VENDOR_ITEM_REGULAR),
list("M4A3 Service Pistol", round(scale * 5), /obj/item/weapon/gun/pistol/m4a3, VENDOR_ITEM_REGULAR),
list("VP78 pistol", round(scale * 5), /obj/item/weapon/gun/pistol/vp78, VENDOR_ITEM_REGULAR),
@@ -552,7 +546,7 @@
list("SIDEARM AMMUNITION", -1, null, null),
list("M1911 Magazine (.45)", round(scale * 20), /obj/item/ammo_magazine/pistol/m1911, VENDOR_ITEM_REGULAR),
- list("88M4 Magazine (9mm)", round(scale * 20), /obj/item/ammo_magazine/pistol/mod88/normalpoint, VENDOR_ITEM_REGULAR),
+ list("VP70 Magazine (9mm)", round(scale * 20), /obj/item/ammo_magazine/pistol/vp70, VENDOR_ITEM_REGULAR),
list("M44 Speedloader (.44)", round(scale * 20), /obj/item/ammo_magazine/revolver, VENDOR_ITEM_REGULAR),
list("M4A3 Magazine (9mm)", round(scale * 20), /obj/item/ammo_magazine/pistol, VENDOR_ITEM_REGULAR),
list("VP78 magazine (9mm)", round(scale * 20), /obj/item/ammo_magazine/pistol/vp78, VENDOR_ITEM_REGULAR),
@@ -563,8 +557,9 @@
list("Roller Bed", round(scale * 2), /obj/item/roller, VENDOR_ITEM_REGULAR),
list("Machete Scabbard (Full)", round(scale * 5), /obj/item/storage/large_holster/machete/full, VENDOR_ITEM_REGULAR),
list("Binoculars", round(scale * 1), /obj/item/device/binoculars, VENDOR_ITEM_REGULAR),
- list("Spare PDT/L Battle Buddy Kit", round(scale * 3), /obj/item/storage/box/pdt_kit, VENDOR_ITEM_REGULAR),
+ list("Spare PDT/L Battle Buddy Kit", round(scale * 3), /obj/item/storage/box/pdt_kit/advanced, VENDOR_ITEM_REGULAR),
list("Rail Flashlight", round(scale * 5), /obj/item/attachable/flashlight, VENDOR_ITEM_REGULAR),
+ list("M5 'Night Raider' bayonet", round(scale * 5), /obj/item/attachable/bayonet, VENDOR_ITEM_REGULAR),
list("CLOTHING", -1, null, null),
list("Poncho (green)", round(scale * 10), /obj/item/clothing/accessory/poncho/green, VENDOR_ITEM_REGULAR),
diff --git a/code/game/machinery/vending/vendor_types/wo_vendors.dm b/code/game/machinery/vending/vendor_types/wo_vendors.dm
index 37e5aa1c27..f12d787024 100644
--- a/code/game/machinery/vending/vendor_types/wo_vendors.dm
+++ b/code/game/machinery/vending/vendor_types/wo_vendors.dm
@@ -87,13 +87,13 @@
list("M41A MK2 Magazine (10x24mm)", round(scale * 25), /obj/item/ammo_magazine/rifle, VENDOR_ITEM_REGULAR),
list("SIDEARMS", -1, null, null),
- list("88 Mod 4 Combat Pistol", round(scale * 25), /obj/item/weapon/gun/pistol/mod88, VENDOR_ITEM_REGULAR),
+ list("VP70 Combat Pistol", round(scale * 25), /obj/item/weapon/gun/pistol/vp70, VENDOR_ITEM_REGULAR),
list("M44 Combat Revolver", round(scale * 25), /obj/item/weapon/gun/revolver/m44, VENDOR_ITEM_REGULAR),
list("M4A3 Service Pistol", round(scale * 25), /obj/item/weapon/gun/pistol/m4a3, VENDOR_ITEM_REGULAR),
list("M82F Flare Gun", round(scale * 5), /obj/item/weapon/gun/flare, VENDOR_ITEM_REGULAR),
list("SIDEARM AMMUNITION", -1, null, null),
- list("88M4 Magazine (9mm)", round(scale * 25), /obj/item/ammo_magazine/pistol/mod88/normalpoint, VENDOR_ITEM_REGULAR),
+ list("VP70 Magazine (9mm)", round(scale * 25), /obj/item/ammo_magazine/pistol/vp70, VENDOR_ITEM_REGULAR),
list("M44 Speedloader (.44)", round(scale * 20), /obj/item/ammo_magazine/revolver, VENDOR_ITEM_REGULAR),
list("M4A3 Magazine (9mm)", round(scale * 25), /obj/item/ammo_magazine/pistol, VENDOR_ITEM_REGULAR),
diff --git a/code/game/objects/effects/effect_system/smoke.dm b/code/game/objects/effects/effect_system/smoke.dm
index 4cd3c4a37d..9e472ec5d7 100644
--- a/code/game/objects/effects/effect_system/smoke.dm
+++ b/code/game/objects/effects/effect_system/smoke.dm
@@ -681,6 +681,22 @@
// XENO SMOKES
+/obj/effect/particle_effect/smoke/king
+ opacity = FALSE
+ color = "#000000"
+ icon = 'icons/effects/effects.dmi'
+ icon_state = "sparks"
+ anchored = TRUE
+ mouse_opacity = MOUSE_OPACITY_TRANSPARENT
+ layer = BELOW_OBJ_LAYER
+ time_to_live = 5
+ spread_speed = 1
+ pixel_x = 0
+ pixel_y = 0
+
+/datum/effect_system/smoke_spread/king_doom
+ smoke_type = /obj/effect/particle_effect/smoke/king
+
/datum/effect_system/smoke_spread/xeno_acid
smoke_type = /obj/effect/particle_effect/smoke/xeno_burn
diff --git a/code/game/objects/effects/spawners/faction_spawners.dm b/code/game/objects/effects/spawners/faction_spawners.dm
index eb634e383d..6c80260d44 100644
--- a/code/game/objects/effects/spawners/faction_spawners.dm
+++ b/code/game/objects/effects/spawners/faction_spawners.dm
@@ -134,7 +134,7 @@
mags_min = 1
guns = list(
/obj/item/weapon/gun/pistol/vp78 = /obj/item/ammo_magazine/pistol/vp78,
- /obj/item/weapon/gun/pistol/mod88 = /obj/item/ammo_magazine/pistol/mod88/normalpoint
+ /obj/item/weapon/gun/pistol/vp70 = /obj/item/ammo_magazine/pistol/vp70
)
/obj/effect/spawner/random/gun/pmc_secondary/lowchance
diff --git a/code/game/objects/effects/spawners/random.dm b/code/game/objects/effects/spawners/random.dm
index d302e7794f..82192a9ca3 100644
--- a/code/game/objects/effects/spawners/random.dm
+++ b/code/game/objects/effects/spawners/random.dm
@@ -329,7 +329,7 @@
var/mags_min = 1
var/list/guns = list(
/obj/item/weapon/gun/pistol/b92fs = /obj/item/ammo_magazine/pistol/b92fs,
- /obj/item/weapon/gun/revolver/cmb = /obj/item/ammo_magazine/revolver/cmb,
+ /obj/item/weapon/gun/revolver/spearhead = /obj/item/ammo_magazine/revolver/spearhead,
/obj/item/weapon/gun/pistol/highpower = /obj/item/ammo_magazine/pistol/highpower,
/obj/item/weapon/gun/pistol/m1911 = /obj/item/ammo_magazine/pistol/m1911,
/obj/item/weapon/gun/revolver/small = /obj/item/ammo_magazine/revolver/small,
@@ -388,9 +388,9 @@
/obj/item/weapon/gun/pistol/b92fs = /obj/item/ammo_magazine/pistol/b92fs,
/obj/item/weapon/gun/pistol/b92fs = /obj/item/ammo_magazine/pistol/b92fs,
/obj/item/weapon/gun/pistol/b92fs = /obj/item/ammo_magazine/pistol/b92fs,
- /obj/item/weapon/gun/revolver/cmb = /obj/item/ammo_magazine/revolver/cmb,
- /obj/item/weapon/gun/revolver/cmb = /obj/item/ammo_magazine/revolver/cmb,
- /obj/item/weapon/gun/revolver/cmb = /obj/item/ammo_magazine/revolver/cmb,
+ /obj/item/weapon/gun/revolver/spearhead = /obj/item/ammo_magazine/revolver/spearhead,
+ /obj/item/weapon/gun/revolver/spearhead = /obj/item/ammo_magazine/revolver/spearhead,
+ /obj/item/weapon/gun/revolver/spearhead = /obj/item/ammo_magazine/revolver/spearhead,
/obj/item/weapon/gun/pistol/highpower = /obj/item/ammo_magazine/pistol/highpower,
/obj/item/weapon/gun/pistol/highpower = /obj/item/ammo_magazine/pistol/highpower,
/obj/item/weapon/gun/pistol/highpower = /obj/item/ammo_magazine/pistol/highpower,
diff --git a/code/game/objects/effects/temporary_visuals.dm b/code/game/objects/effects/temporary_visuals.dm
index 1f3800fa01..97612a3a8f 100644
--- a/code/game/objects/effects/temporary_visuals.dm
+++ b/code/game/objects/effects/temporary_visuals.dm
@@ -21,6 +21,19 @@
. = ..()
deltimer(timerid)
+//-----------------------------------------
+//HEAVY IMPACT
+//-----------------------------------------
+
+/obj/effect/temp_visual/heavy_impact
+ icon = 'icons/effects/heavyimpact.dmi'
+ icon_state = "heavyimpact"
+ duration = 1.3 SECONDS
+
+/obj/effect/temp_visual/heavyimpact/Initialize(mapload)
+ . = ..()
+ flick("heavyimpact", src)
+
/obj/effect/temp_visual/dir_setting
randomdir = FALSE
diff --git a/code/game/objects/items/devices/motion_detector.dm b/code/game/objects/items/devices/motion_detector.dm
index 60cf62b4e2..4e72795510 100644
--- a/code/game/objects/items/devices/motion_detector.dm
+++ b/code/game/objects/items/devices/motion_detector.dm
@@ -217,6 +217,10 @@
range_bounds.set_shape(cur_turf.x, cur_turf.y, detector_range * 2)
+ var/list/ping_receivers = list()
+ for(var/mob/living/carbon/human/humans in range(1, human_user))
+ ping_receivers += humans
+
var/list/ping_candidates = SSquadtree.players_in_range(range_bounds, cur_turf.z, QTREE_EXCLUDE_OBSERVER | QTREE_SCAN_MOBS)
for(var/A in ping_candidates)
@@ -230,7 +234,8 @@
apply_debuff(M)
ping_count++
if(human_user)
- show_blip(human_user, M)
+ for(var/mob/living/carbon/human/show_ping_to as anything in ping_receivers)
+ show_blip(show_ping_to, M)
for(var/mob/hologram/holo as anything in GLOB.hologram_list)
if(!holo.motion_sensed)
diff --git a/code/game/objects/items/props/helmetgarb.dm b/code/game/objects/items/props/helmetgarb.dm
index 2c83f5beee..558c8b235c 100644
--- a/code/game/objects/items/props/helmetgarb.dm
+++ b/code/game/objects/items/props/helmetgarb.dm
@@ -52,6 +52,15 @@
desc = "The standard M10 combat helmet is already water-resistant at depths of up to 10 meters. This makes the top potentially water-proof. At least it's something."
icon_state = "raincover"
+/obj/item/prop/helmetgarb/camocover
+ name = "camocover"
+ desc = "A cover that goes over the top of an M10 pattern helmet to camoflauge it without needing the use of paints."
+ icon_state = "camocover"
+
+/obj/item/prop/helmetgarb/camocover/Initialize(mapload, ...)
+ . = ..()
+ select_gamemode_skin(/obj/item/prop/helmetgarb/camocover)
+
/obj/item/prop/helmetgarb/rabbitsfoot
name = "Rabbit's Foot"
desc = "Lucky for you, but not the rabbit, didn't really do it much good."
diff --git a/code/game/objects/items/stacks/sheets/sheet_types.dm b/code/game/objects/items/stacks/sheets/sheet_types.dm
index 0ed2894150..cefdee4c93 100644
--- a/code/game/objects/items/stacks/sheets/sheet_types.dm
+++ b/code/game/objects/items/stacks/sheets/sheet_types.dm
@@ -222,7 +222,7 @@ var/global/list/datum/stack_recipe/cardboard_recipes = list ( \
)), \
null, \
new/datum/stack_recipe_list("empty ammo boxes",list( \
- new/datum/stack_recipe("empty magazine box (88 Mod 4 AP)", /obj/item/ammo_box/magazine/mod88/empty), \
+ new/datum/stack_recipe("empty magazine box (VP70)", /obj/item/ammo_box/magazine/vp70/empty), \
new/datum/stack_recipe("empty magazine box (M4A3)", /obj/item/ammo_box/magazine/m4a3/empty), \
new/datum/stack_recipe("empty magazine box (M4A3 AP)", /obj/item/ammo_box/magazine/m4a3/ap/empty), \
new/datum/stack_recipe("empty magazine box (M4A3 HP)", /obj/item/ammo_box/magazine/m4a3/hp/empty), \
diff --git a/code/game/objects/items/storage/backpack.dm b/code/game/objects/items/storage/backpack.dm
index 81e838b30b..619c50b90c 100644
--- a/code/game/objects/items/storage/backpack.dm
+++ b/code/game/objects/items/storage/backpack.dm
@@ -1027,7 +1027,7 @@
/obj/item/weapon/gun/rifle/m4ra/training,
/obj/item/weapon/gun/smg/m39/training,
/obj/item/weapon/gun/pistol/m4a3/training,
- /obj/item/weapon/gun/pistol/mod88/training) //Ivan doesn't carry toys.
+ /obj/item/weapon/gun/pistol/vp70/training) //Ivan doesn't carry toys.
var/list/picklist = subtypesof(/obj/item/weapon/gun) - (template_guns + bad_guns + emplacements + yautja_guns + smartguns + training_guns)
var/random_gun = pick(picklist)
diff --git a/code/game/objects/items/storage/belt.dm b/code/game/objects/items/storage/belt.dm
index 2c17f447f1..91ab540a5b 100644
--- a/code/game/objects/items/storage/belt.dm
+++ b/code/game/objects/items/storage/belt.dm
@@ -88,6 +88,7 @@
desc = "The M276 is the standard load-bearing equipment of the USCM. It consists of a modular belt with various clips. This version lacks any combat functionality, and is commonly used by engineers to transport important tools."
icon_state = "utilitybelt"
item_state = "utility"
+ max_w_class = SIZE_MEDIUM
can_hold = list(
/obj/item/tool/crowbar,
/obj/item/tool/screwdriver,
@@ -418,8 +419,8 @@
new /obj/item/handcuffs(src)
new /obj/item/handcuffs(src)
new /obj/item/reagent_container/spray/pepper(src)
- new /obj/item/ammo_magazine/pistol/mod88/normalpoint(src)
- new /obj/item/ammo_magazine/pistol/mod88/normalpoint(src)
+ new /obj/item/ammo_magazine/pistol/vp70(src)
+ new /obj/item/ammo_magazine/pistol/vp70(src)
/obj/item/storage/belt/security/MP/UPP
@@ -448,8 +449,8 @@
new /obj/item/handcuffs(src)
new /obj/item/handcuffs(src)
new /obj/item/handcuffs(src)
- new /obj/item/ammo_magazine/revolver/cmb/normalpoint(src)
- new /obj/item/ammo_magazine/revolver/cmb/normalpoint(src)
+ new /obj/item/ammo_magazine/revolver/spearhead(src)
+ new /obj/item/ammo_magazine/revolver/spearhead(src)
/obj/item/storage/belt/security/MP/CMB/full/highpower/fill_preset_inventory()
new /obj/item/weapon/gun/energy/taser(src)
@@ -1184,15 +1185,15 @@
new /obj/item/ammo_magazine/pistol(src)
new /obj/item/ammo_magazine/pistol(src)
-/obj/item/storage/belt/gun/m4a3/mod88/fill_preset_inventory()
- handle_item_insertion(new /obj/item/weapon/gun/pistol/mod88())
+/obj/item/storage/belt/gun/m4a3/vp70/fill_preset_inventory()
+ handle_item_insertion(new /obj/item/weapon/gun/pistol/vp70())
for(var/i = 1 to storage_slots - 1)
- new /obj/item/ammo_magazine/pistol/mod88/normalpoint(src)
+ new /obj/item/ammo_magazine/pistol/vp70(src)
-/obj/item/storage/belt/gun/m4a3/mod88_near_empty/fill_preset_inventory()
- handle_item_insertion(new /obj/item/weapon/gun/pistol/mod88())
+/obj/item/storage/belt/gun/m4a3/vp70_near_empty/fill_preset_inventory()
+ handle_item_insertion(new /obj/item/weapon/gun/pistol/vp70())
for(var/i = 1 to 3)
- new /obj/item/ammo_magazine/pistol/mod88/normalpoint(src)
+ new /obj/item/ammo_magazine/pistol/vp70(src)
/obj/item/storage/belt/gun/m4a3/vp78/fill_preset_inventory()
handle_item_insertion(new /obj/item/weapon/gun/pistol/vp78())
@@ -1254,10 +1255,15 @@
for(var/i = 1 to storage_slots - 1)
new /obj/item/ammo_magazine/pistol/highpower/black(src)
-/obj/item/storage/belt/gun/m4a3/highpower/tactical/fill_preset_inventory()
- handle_item_insertion(new /obj/item/weapon/gun/pistol/highpower/tactical())
+/obj/item/storage/belt/gun/m4a3/highpower/automag/fill_preset_inventory()
+ handle_item_insertion(new /obj/item/weapon/gun/pistol/highpower/automag())
for(var/i = 1 to storage_slots - 1)
- new /obj/item/ammo_magazine/pistol/highpower/black(src)
+ new /obj/item/ammo_magazine/pistol/highpower/automag(src)
+
+/obj/item/storage/belt/gun/m4a3/highpower/automag/tactical/fill_preset_inventory()
+ handle_item_insertion(new /obj/item/weapon/gun/pistol/highpower/automag/tactical())
+ for(var/i = 1 to storage_slots - 1)
+ new /obj/item/ammo_magazine/pistol/highpower/automag(src)
/obj/item/storage/belt/gun/m39
name = "\improper M276 pattern M39 holster rig"
@@ -1582,11 +1588,11 @@
/obj/item/ammo_magazine/rifle/m4ra/rubber,
/obj/item/ammo_magazine/smg/m39/rubber,
/obj/item/ammo_magazine/pistol/rubber,
- /obj/item/ammo_magazine/pistol/mod88/rubber) //Ivan doesn't bring children's ammo.
+ /obj/item/ammo_magazine/pistol/vp70/rubber) //Ivan doesn't bring children's ammo.
var/list/picklist = subtypesof(/obj/item/ammo_magazine) - (internal_mags + bad_mags + sentry_mags + training_mags)
var/random_mag = pick(picklist)
- var/guntype = pick(subtypesof(/obj/item/weapon/gun/revolver) + subtypesof(/obj/item/weapon/gun/pistol) - list(/obj/item/weapon/gun/pistol/m4a3/training, /obj/item/weapon/gun/pistol/mod88/training))
+ var/guntype = pick(subtypesof(/obj/item/weapon/gun/revolver) + subtypesof(/obj/item/weapon/gun/pistol) - list(/obj/item/weapon/gun/pistol/m4a3/training, /obj/item/weapon/gun/pistol/vp70/training))
handle_item_insertion(new guntype())
for(var/total_storage_slots in 2 to storage_slots) //minus templates
new random_mag(src)
@@ -1680,7 +1686,7 @@
/obj/item/device/flashlight/flare,
/obj/item/weapon/gun/flare,
/obj/item/weapon/gun/pistol,
- /obj/item/weapon/gun/revolver/m44,
+ /obj/item/weapon/gun/revolver,
/obj/item/ammo_magazine/revolver,
/obj/item/ammo_magazine/pistol,
/obj/item/ammo_magazine/smartgun,
@@ -1872,7 +1878,7 @@
/obj/item/storage/belt/gun/utility/full/fill_preset_inventory()
- handle_item_insertion(new /obj/item/weapon/gun/pistol/mod88())
+ handle_item_insertion(new /obj/item/weapon/gun/pistol/vp70())
new /obj/item/tool/screwdriver(src)
new /obj/item/tool/wrench(src)
new /obj/item/tool/weldingtool(src)
diff --git a/code/game/objects/items/storage/misc.dm b/code/game/objects/items/storage/misc.dm
index 19e680a197..33b2b5f778 100644
--- a/code/game/objects/items/storage/misc.dm
+++ b/code/game/objects/items/storage/misc.dm
@@ -111,48 +111,117 @@
else
icon_state = "6_pack_[contents.len]"
-/obj/item/storage/box/clf
- name = "D18-storing box"
- desc = "A fairly decorated and ceremonial box containing a CLF D18 and a single additional magazine for it. I guess those CLF folk really care about their craftsmanship and prose rather than practicality, eh?"
- icon = 'icons/obj/items/storage.dmi'
- icon_state = "m43case"
- w_class = SIZE_SMALL
- max_w_class = SIZE_TINY
- storage_slots = 2
-
-/obj/item/storage/box/clf/fill_preset_inventory()
- new /obj/item/weapon/gun/pistol/clfpistol(src)
- new /obj/item/ammo_magazine/pistol/clfpistol(src)
-
-/obj/item/storage/box/upp //war trophy luger
- name = "Type 73 storing case"
- desc = "A small case containing the once-standard sidearm of the UPP, the Type 73, and two additional magazines. The contained sidearm is probably looted off a dead officer or from a captured stockpile, either way this thing is worth a pretty penny."
+/obj/item/storage/box/loadout
+ name = "storage case"
+ desc = "A wooden case that fits a pistol and a number of magazines."
icon = 'icons/obj/items/storage.dmi'
icon_state = "matebacase"
w_class = SIZE_LARGE
max_w_class = SIZE_MEDIUM
- storage_slots = 3
-
-/obj/item/storage/box/upp/fill_preset_inventory()
- new /obj/item/weapon/gun/pistol/t73(src)
- new /obj/item/ammo_magazine/pistol/t73(src)
- new /obj/item/ammo_magazine/pistol/t73(src)
+ storage_slots = 7
-/obj/item/storage/box/M1911_loadout
+/obj/item/storage/box/loadout/upp
+ name = "Type 73 storing case"
+ desc = "A small case containing a loaded Type 73, and additional magazines."
+/obj/item/storage/box/loadout/upp/fill_preset_inventory()
+ handle_item_insertion(new /obj/item/weapon/gun/pistol/t73())
+ for(var/i = 1 to storage_slots - 1)
+ new /obj/item/ammo_magazine/pistol/t73(src)
+
+/obj/item/storage/box/loadout/M4A3_custom_loadout
+ name = "M4A3 storage case"
+ desc = "A relatively large storage case containing a loaded M4A3 and additional magazines."
+
+/obj/item/storage/box/loadout/M4A3_custom_loadout/fill_preset_inventory()
+ handle_item_insertion(new /obj/item/weapon/gun/pistol/m4a3/custom())
+ for(var/i = 1 to storage_slots - 1)
+ new /obj/item/ammo_magazine/pistol(src)
+
+/obj/item/storage/box/loadout/HG45_civilian_loadout
+ name = "HG 45 'Aguila' storage case"
+ desc = "A relatively large storage case containing a loaded HG 45 'Aguila' and additional magazines."
+
+/obj/item/storage/box/loadout/HG45_civilian_loadout/fill_preset_inventory()
+ handle_item_insertion(new /obj/item/weapon/gun/pistol/highpower())
+ for(var/i = 1 to storage_slots - 1)
+ new /obj/item/ammo_magazine/pistol/highpower(src)
+
+/obj/item/storage/box/loadout/HG45_marine_loadout
+ name = "HG 45 'Marina' storage case"
+ desc = "A relatively large storage case containing a loaded HG 45 'Marina' and additional magazines."
+
+/obj/item/storage/box/loadout/HG45_marine_loadout/fill_preset_inventory()
+ handle_item_insertion(new /obj/item/weapon/gun/pistol/highpower/black())
+ for(var/i = 1 to storage_slots - 1)
+ new /obj/item/ammo_magazine/pistol/highpower/black(src)
+
+/obj/item/storage/box/loadout/HG44_loadout
+ name = "HG 44 'Automag' storage case"
+ desc = "A relatively large storage case containing a loaded HG 44 'Automag' and additional magazines."
+
+/obj/item/storage/box/loadout/HG44_loadout/fill_preset_inventory()
+ handle_item_insertion(new /obj/item/weapon/gun/pistol/highpower/automag())
+ for(var/i = 1 to storage_slots - 1)
+ new /obj/item/ammo_magazine/pistol/highpower/automag(src)
+
+/obj/item/storage/box/loadout/Spearhead_loadout
+ name = "Spearhead Armoury storage case"
+ desc = "A relatively large storage case containing a loaded Spearhead Armoury revolver and additional speedloaders."
+
+/obj/item/storage/box/loadout/Spearhead_loadout/fill_preset_inventory()
+ handle_item_insertion(new /obj/item/weapon/gun/revolver/spearhead())
+ for(var/i = 1 to storage_slots - 1)
+ new /obj/item/ammo_magazine/revolver/spearhead(src)
+
+/obj/item/storage/box/loadout/Spearhead_loadout/custom
+ name = "Spearhead Armoury storage case"
+ desc = "A relatively large storage case containing a loaded Spearhead Armoury revolver and additional speedloaders."
+
+/obj/item/storage/box/loadout/Spearhead_loadout/custom/fill_preset_inventory()
+ handle_item_insertion(new /obj/item/weapon/gun/revolver/spearhead/black())
+ for(var/i = 1 to storage_slots - 1)
+ new /obj/item/ammo_magazine/revolver/spearhead(src)
+
+/obj/item/storage/box/loadout/M1911_loadout
name = "M1911 storage case"
- desc = "A relatively large storage case containing the 1911 and additional magazines. Purchased by enlisted or aspiring PMCs looking to carry a timeless classic"
- icon = 'icons/obj/items/storage.dmi'
- icon_state = "matebacase"
- w_class = SIZE_LARGE
- max_w_class = SIZE_MEDIUM
- storage_slots = 3
+ desc = "A relatively large storage case containing a loaded M1911 and additional magazines."
+
+/obj/item/storage/box/loadout/M1911_loadout/fill_preset_inventory()
+ handle_item_insertion(new /obj/item/weapon/gun/pistol/m1911())
+ for(var/i = 1 to storage_slots - 1)
+ new /obj/item/ammo_magazine/pistol/m1911(src)
+
+/obj/item/storage/box/loadout/M44_loadout
+ name = "M44 storage case"
+ desc = "A relatively large storage case containing a loaded M44 revolver and additional speedloaders."
+
+/obj/item/storage/box/loadout/M44_loadout/fill_preset_inventory()
+ handle_item_insertion(new /obj/item/weapon/gun/revolver/m44())
+ for(var/i = 1 to storage_slots - 1)
+ new /obj/item/ammo_magazine/revolver(src)
+
+/obj/item/storage/box/loadout/M44_custom_loadout
+ name = "M44 storage case"
+ desc = "A relatively large storage case containing a loaded M44 revolver and additional speedloaders."
+
+/obj/item/storage/box/loadout/M44_custom_loadout/fill_preset_inventory()
+ handle_item_insertion(new /obj/item/weapon/gun/revolver/m44/custom())
+ for(var/i = 1 to storage_slots - 1)
+ new /obj/item/ammo_magazine/revolver(src)
+
+/obj/item/storage/box/loadout/clf
+ name = "Hummingbird storage box"
+ desc = "A slim storage case containing a loaded Hummingbird pistol and additional magazines."
+ w_class = SIZE_SMALL
+ max_w_class = SIZE_TINY
+ storage_slots = 4
-/obj/item/storage/box/M1911_loadout/fill_preset_inventory()
- new /obj/item/weapon/gun/pistol/m1911(src)
- new /obj/item/ammo_magazine/pistol/m1911(src)
- new /obj/item/ammo_magazine/pistol/m1911(src)
+/obj/item/storage/box/loadout/clf/fill_preset_inventory()
+ handle_item_insertion(new /obj/item/weapon/gun/pistol/clfpistol())
+ for(var/i = 1 to storage_slots - 1)
+ new /obj/item/ammo_magazine/pistol/clfpistol(src)
-/obj/item/storage/box/co2_knife
+/obj/item/storage/box/loadout/co2_knife
name = "M8 cartridge bayonet packaging"
desc = "Contains one M8 Cartridge Bayonet and two sister CO2 cartridges. Thanks for being a dedicated Boots magazine subscriber!"
icon_state = "co2_box"
@@ -162,7 +231,7 @@
w_class = SIZE_SMALL
max_w_class = SIZE_SMALL
-/obj/item/storage/box/co2_knife/fill_preset_inventory()
+/obj/item/storage/box/loadout/co2_knife/fill_preset_inventory()
new /obj/item/attachable/bayonet/co2(src)
new /obj/item/co2_cartridge(src)
new /obj/item/co2_cartridge(src)
diff --git a/code/game/objects/items/storage/pouch.dm b/code/game/objects/items/storage/pouch.dm
index e1f4a17204..6ab25f0b73 100644
--- a/code/game/objects/items/storage/pouch.dm
+++ b/code/game/objects/items/storage/pouch.dm
@@ -461,7 +461,7 @@
/obj/item/storage/pouch/magazine/pistol/pmc_mod88/fill_preset_inventory()
for(var/i = 1 to storage_slots)
- new /obj/item/ammo_magazine/pistol/mod88/normalpoint(src)
+ new /obj/item/ammo_magazine/pistol/vp70(src)
/obj/item/storage/pouch/magazine/pistol/pmc_vp78/fill_preset_inventory()
for(var/i = 1 to storage_slots)
diff --git a/code/game/objects/items/toys/toys.dm b/code/game/objects/items/toys/toys.dm
index 88946f5fa4..f9b7648a1d 100644
--- a/code/game/objects/items/toys/toys.dm
+++ b/code/game/objects/items/toys/toys.dm
@@ -318,6 +318,11 @@
desc = "Mini-Mecha action figure! Collect them all! 11/11."
icon_state = "phazonprize"
+/obj/item/toy/prize/apc
+ name = "toy APC"
+ desc = "Limited edition APC action figure."
+ icon_state = "apctoy"
+
/obj/item/toy/inflatable_duck
name = "inflatable duck"
desc = "No bother to sink or swim when you can just float!"
diff --git a/code/game/objects/prop.dm b/code/game/objects/prop.dm
index ac94e8ab03..f24fec66a6 100644
--- a/code/game/objects/prop.dm
+++ b/code/game/objects/prop.dm
@@ -291,3 +291,22 @@
/obj/item/prop/magazine/boots/n055
name = "Boots!: Issue No.55"
desc = "The only official USCM magazine, the headline reads 'TEN tips to keep your UD4 cockpit both safer and more relaxing.'"
+
+/obj/item/prop/scrap
+ name = "scrap metal"
+ icon = 'icons/obj/items/fishing_atoms.dmi'
+ icon_state = "sheet-scrap"
+ item_state = ""
+ desc = "A rusty piece of scrap metal."
+ w_class = SIZE_MEDIUM
+
+/obj/item/prop/rock
+ name = "rock"
+ icon = 'icons/obj/items/plush.dmi'
+ icon_state = "rock"
+ item_state = ""
+ force = 30
+ throwforce = 25
+ desc = "The most ancient of tools."
+ w_class = SIZE_TINY
+ hitsound = 'sound/weapons/genhit3.ogg'
diff --git a/code/game/objects/structures/crates_lockers/closets/job_closets.dm b/code/game/objects/structures/crates_lockers/closets/job_closets.dm
index 2379837c97..f5fee64f1a 100644
--- a/code/game/objects/structures/crates_lockers/closets/job_closets.dm
+++ b/code/game/objects/structures/crates_lockers/closets/job_closets.dm
@@ -82,12 +82,6 @@
/obj/structure/closet/secure_closet/platoon_sergeant/Initialize()
. = ..()
- new /obj/item/weapon/gun/rifle/m41aMK1(src)
- new /obj/item/ammo_magazine/rifle/m41aMK1(src)
- new /obj/item/ammo_magazine/rifle/m41aMK1(src)
- new /obj/item/ammo_magazine/rifle/m41aMK1(src)
- new /obj/item/ammo_magazine/rifle/m41aMK1(src)
- new /obj/item/ammo_magazine/rifle/m41aMK1(src)
new /obj/item/clothing/head/helmet/marine/leader(src)
new /obj/item/device/binoculars/range/designator(src)
new /obj/item/device/whistle(src)
@@ -99,12 +93,6 @@
/obj/structure/closet/secure_closet/platoon_sergeant_forecon/Initialize()
. = ..()
- new /obj/item/weapon/gun/rifle/m41aMK1(src)
- new /obj/item/ammo_magazine/rifle/m41aMK1(src)
- new /obj/item/ammo_magazine/rifle/m41aMK1(src)
- new /obj/item/ammo_magazine/rifle/m41aMK1(src)
- new /obj/item/ammo_magazine/rifle/m41aMK1(src)
- new /obj/item/ammo_magazine/rifle/m41aMK1(src)
new /obj/item/device/binoculars/range/designator(src)
new /obj/item/device/whistle(src)
@@ -115,7 +103,6 @@
/obj/structure/closet/secure_closet/squad_sergeant/Initialize()
. = ..()
- new /obj/item/clothing/head/helmet/marine/rto(src)
new /obj/item/device/binoculars/range/designator(src)
new /obj/item/device/whistle(src)
diff --git a/code/game/objects/structures/crates_lockers/closets/secure/guncabinet/guncabinet.dm b/code/game/objects/structures/crates_lockers/closets/secure/guncabinet/guncabinet.dm
index 4531a68c42..30b8ccb025 100644
--- a/code/game/objects/structures/crates_lockers/closets/secure/guncabinet/guncabinet.dm
+++ b/code/game/objects/structures/crates_lockers/closets/secure/guncabinet/guncabinet.dm
@@ -80,10 +80,10 @@
new /obj/item/weapon/shield/riot(src)
new /obj/item/weapon/shield/riot(src)
new /obj/item/weapon/shield/riot(src)
- new /obj/item/ammo_magazine/shotgun/beanbag/riot(src)
- new /obj/item/ammo_magazine/shotgun/beanbag/riot(src)
- new /obj/item/ammo_magazine/shotgun/beanbag/riot(src)
- new /obj/item/ammo_magazine/shotgun/beanbag/riot(src)
+ new /obj/item/ammo_magazine/shotgun/beanbag(src)
+ new /obj/item/ammo_magazine/shotgun/beanbag(src)
+ new /obj/item/ammo_magazine/shotgun/beanbag(src)
+ new /obj/item/ammo_magazine/shotgun/beanbag(src)
new /obj/item/weapon/gun/launcher/grenade/m81/riot(src, TRUE)
new /obj/item/storage/box/nade_box/tear_gas(src)
new /obj/item/clothing/mask/gas(src)
diff --git a/code/game/objects/structures/crates_lockers/closets/secure/guncabinet/level_blue.dm b/code/game/objects/structures/crates_lockers/closets/secure/guncabinet/level_blue.dm
index acc43c302e..a208a61a95 100644
--- a/code/game/objects/structures/crates_lockers/closets/secure/guncabinet/level_blue.dm
+++ b/code/game/objects/structures/crates_lockers/closets/secure/guncabinet/level_blue.dm
@@ -18,10 +18,10 @@
new /obj/item/weapon/shield/riot(src)
new /obj/item/weapon/shield/riot(src)
new /obj/item/weapon/shield/riot(src)
- new /obj/item/ammo_magazine/shotgun/beanbag/riot(src)
- new /obj/item/ammo_magazine/shotgun/beanbag/riot(src)
- new /obj/item/ammo_magazine/shotgun/beanbag/riot(src)
- new /obj/item/ammo_magazine/shotgun/beanbag/riot(src)
+ new /obj/item/ammo_magazine/shotgun/beanbag(src)
+ new /obj/item/ammo_magazine/shotgun/beanbag(src)
+ new /obj/item/ammo_magazine/shotgun/beanbag(src)
+ new /obj/item/ammo_magazine/shotgun/beanbag(src)
new /obj/item/weapon/gun/launcher/grenade/m81/riot(src, TRUE)
new /obj/item/storage/box/nade_box/tear_gas(src)
new /obj/item/clothing/mask/gas(src)
diff --git a/code/game/objects/structures/crates_lockers/crates.dm b/code/game/objects/structures/crates_lockers/crates.dm
index 119615ab7a..9d9aaeb0f3 100644
--- a/code/game/objects/structures/crates_lockers/crates.dm
+++ b/code/game/objects/structures/crates_lockers/crates.dm
@@ -411,11 +411,11 @@
weapon_type = /obj/item/weapon/gun/pistol/m4a3/training
ammo_type = /obj/item/ammo_magazine/pistol/rubber
-/obj/structure/closet/crate/weapon/training/mod88
- name = "training 88 mod 4 crate"
- desc = "A crate with an 88 mod 4 pistol and nonlethal ammunition for it. Intended for use in combat exercises."
- weapon_type = /obj/item/weapon/gun/pistol/mod88/training
- ammo_type = /obj/item/ammo_magazine/pistol/mod88/rubber
+/obj/structure/closet/crate/weapon/training/vp70
+ name = "training VP70 crate"
+ desc = "A crate with an VP70 pistol and nonlethal ammunition for it. Intended for use in combat exercises."
+ weapon_type = /obj/item/weapon/gun/pistol/vp70/training
+ ammo_type = /obj/item/ammo_magazine/pistol/vp70/rubber
/obj/structure/closet/crate/weapon/training/grenade
name = "rubber pellet M15 grenades crate"
diff --git a/code/game/objects/structures/crates_lockers/largecrate.dm b/code/game/objects/structures/crates_lockers/largecrate.dm
index d3417c9720..955825ec85 100644
--- a/code/game/objects/structures/crates_lockers/largecrate.dm
+++ b/code/game/objects/structures/crates_lockers/largecrate.dm
@@ -377,7 +377,7 @@
/obj/item/weapon/gun/pistol/m1911 = /obj/item/ammo_magazine/pistol/m1911,
/obj/item/weapon/gun/pistol/heavy = /obj/item/ammo_magazine/pistol/heavy,
/obj/item/weapon/gun/revolver/small = /obj/item/ammo_magazine/revolver/small,
- /obj/item/weapon/gun/revolver/cmb = /obj/item/ammo_magazine/revolver/cmb,
+ /obj/item/weapon/gun/revolver/spearhead = /obj/item/ammo_magazine/revolver/spearhead,
/obj/item/weapon/gun/shotgun/merc = /obj/item/ammo_magazine/handful/shotgun/buckshot,
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb = /obj/item/ammo_magazine/handful/shotgun/buckshot,
/obj/item/weapon/gun/smg/mp27 = /obj/item/ammo_magazine/smg/mp27,
diff --git a/code/game/objects/structures/gun_rack.dm b/code/game/objects/structures/gun_rack.dm
index 099d8d4c20..45a63e46f3 100644
--- a/code/game/objects/structures/gun_rack.dm
+++ b/code/game/objects/structures/gun_rack.dm
@@ -91,3 +91,24 @@
/obj/structure/gun_rack/m41/recon/unloaded
populate_type = /obj/item/weapon/gun/rifle/m41aMK1/forecon/unloaded
+
+/obj/structure/gun_rack/flamer
+ name = "M240A1 incinerator rack"
+ icon_state = "m240"
+ desc = "ARMAT-produced gun rack for storage of long guns. While initial model was supposed to be extremely modifiable, USCM comissioned racks with fixed slots which only fit M240A1 incinerators. Some say they were cheaper, and some say the main reason was marine's ability to easily break anything more complex than a tungsten ball."
+ max_stored = 2
+ initial_stored = 2
+ allowed_type = /obj/item/weapon/gun/flamer
+ populate_type = /obj/item/weapon/gun/flamer
+
+/obj/structure/gun_rack/flamer/unloaded
+ populate_type = /obj/item/weapon/gun/flamer/unloaded
+
+/obj/structure/gun_rack/mk221
+ name = "M120 shotgun rack"
+ icon_state = "mk221"
+ desc = "ARMAT-produced gun rack for storage of long guns. While initial model was supposed to be extremely modifiable, USCM comissioned racks with fixed slots which only fit M120 tactical shotguns. Some say they were cheaper, and some say the main reason was marine's ability to easily break anything more complex than a tungsten ball."
+ max_stored = 2
+ initial_stored = 2
+ allowed_type = /obj/item/weapon/gun/shotgun/combat
+ populate_type = /obj/item/weapon/gun/shotgun/combat
diff --git a/code/game/objects/structures/signs.dm b/code/game/objects/structures/signs.dm
index 765c717c6b..50bbdeea55 100644
--- a/code/game/objects/structures/signs.dm
+++ b/code/game/objects/structures/signs.dm
@@ -111,7 +111,32 @@
/obj/structure/sign/banners/united_americas_flag
name = "\improper United Americas flag"
desc = "A flag of the United Americas. Inspires patriotism, fear, or revulsion depending on the viewer's political leanings."
- icon_state = "ua_flag"
+ icon_state = "uaflag"
+
+/obj/structure/sign/banners/colonial_marines_flag
+ name = "\improper United States Colonial Marine Corps flag"
+ desc = "A flag of the United States Colonial Marine Corps. Inspires patriotism, fear, or revulsion depending on the viewer's political leanings."
+ icon_state = "cmflag"
+/obj/structure/sign/banners/colonial_marines_flag_worn
+ name = "\improper Worn United States Colonial Marine Corps flag"
+ desc = "A very worn flag of the United States Colonial Marine Corps. Inspires patriotism, fear, or revulsion depending on the viewer's political leanings."
+ icon_state = "cmflag_worn"
+/obj/structure/sign/banners/twe_flag
+ name = "\improper Three World Empire flag"
+ desc = "A flag of the Three World Empire. Inspires patriotism, fear, or revulsion depending on the viewer's political leanings."
+ icon_state = "tweflag"
+/obj/structure/sign/banners/twe_worn
+ name = "\improper Worn Three World Empire flag"
+ desc = "A very worn flag of the Three World Empire. Inspires patriotism, fear, or revulsion depending on the viewer's political leanings."
+ icon_state = "tweflag_worn"
+/obj/structure/sign/banners/upp_flag
+ name = "\improper Union of Progressive Peoples flag"
+ desc = "A flag of the Union of Progressive Peoples. Inspires patriotism, fear, or revulsion depending on the viewer's political leanings."
+ icon_state = "uppflag"
+/obj/structure/sign/banners/upp_worn
+ name = "\improper Worn Union of Progressive Peoples flag"
+ desc = "A very worn flag of the Union of Progressive Peoples. Inspires patriotism, fear, or revulsion depending on the viewer's political leanings."
+ icon_state = "uppflag_worn"
//=====================//
// SEMIOTIC STANDARD //
diff --git a/code/game/objects/structures/tables_racks.dm b/code/game/objects/structures/tables_racks.dm
index 25a3e2390c..88e917a5b1 100644
--- a/code/game/objects/structures/tables_racks.dm
+++ b/code/game/objects/structures/tables_racks.dm
@@ -625,6 +625,14 @@
icon_state = "clothtable"
table_prefix = "cloth"
+/obj/structure/surface/table/reinforced/aicore
+ name = "AI interface table"
+ desc = "A rather fancy looking table for the ship's AI core."
+ icon_state = "aicoretable"
+
+/obj/structure/surface/table/reinforced/aicore/update_icon()
+ return
+
/obj/structure/surface/table/reinforced/toc
name = "operations table"
desc = "A square metal surface resting on its fat metal bottom. You can't flip something that doesn't have legs."
diff --git a/code/game/objects/structures/window.dm b/code/game/objects/structures/window.dm
index d0651eb5e9..7aa85129e1 100644
--- a/code/game/objects/structures/window.dm
+++ b/code/game/objects/structures/window.dm
@@ -604,6 +604,34 @@
unacidable = TRUE
health = 1000000 //Failsafe, shouldn't matter
+/obj/structure/window/framed/almayer/aicore
+ icon_state = "ai_rwindow0"
+ basestate = "ai_rwindow"
+ window_frame = /obj/structure/window_frame/almayer/aicore
+
+/obj/structure/window/framed/almayer/aicore/hull
+ name = "hull window"
+ desc = "An ultra-reinforced window designed to protect the AI Core. Made out of exotic materials to prevent hull breaches, nothing will get through here."
+ not_damageable = TRUE
+ not_deconstructable = TRUE
+ unslashable = TRUE
+ unacidable = TRUE
+ health = 1000000 //Failsafe, shouldn't matter
+
+/obj/structure/window/framed/almayer/aicore/white
+ icon_state = "w_ai_rwindow0"
+ basestate = "w_ai_rwindow"
+ window_frame = /obj/structure/window_frame/almayer/aicore/white
+
+/obj/structure/window/framed/almayer/aicore/white/hull
+ name = "hull window"
+ desc = "An ultra-reinforced window designed to protect the AI Core. Made out of exotic materials to prevent hull breaches, nothing will get through here."
+ not_damageable = TRUE
+ not_deconstructable = TRUE
+ unslashable = TRUE
+ unacidable = TRUE
+ health = 1000000 //Failsafe, shouldn't matter
+
/obj/structure/window/framed/colony
name = "window"
icon_state = "col_window0"
diff --git a/code/game/objects/structures/window_frame.dm b/code/game/objects/structures/window_frame.dm
index 2c165b424d..460a11af10 100644
--- a/code/game/objects/structures/window_frame.dm
+++ b/code/game/objects/structures/window_frame.dm
@@ -174,6 +174,16 @@
basestate = "white_window"
window_type = /obj/structure/window/framed/almayer/white
+/obj/structure/window_frame/almayer/aicore
+ icon_state = "ai_window0_frame"
+ basestate = "ai_window"
+ window_type = /obj/structure/window/framed/almayer/aicore
+
+/obj/structure/window_frame/almayer/aicore/white
+ icon_state = "w_ai_window0_frame"
+ basestate = "w_ai_window"
+ window_type = /obj/structure/window/framed/almayer/aicore/white
+
/obj/structure/window_frame/almayer/requisitions/attackby(obj/item/W, mob/living/user)
if(istype(W, sheet_type))
to_chat(user, SPAN_WARNING("You can't repair this window."))
diff --git a/code/game/sound.dm b/code/game/sound.dm
index 6bee74ba01..b9c9636093 100644
--- a/code/game/sound.dm
+++ b/code/game/sound.dm
@@ -433,8 +433,8 @@
S = pick('sound/weapons/gun_shotgun_tactical_1.ogg','sound/weapons/gun_shotgun_tactical_2.ogg','sound/weapons/gun_shotgun_tactical_3.ogg','sound/weapons/gun_shotgun_tactical_4.ogg')
if("m4a3")
S = pick('sound/weapons/gun_m4a3_1.ogg','sound/weapons/gun_m4a3_2.ogg','sound/weapons/gun_m4a3_3.ogg','sound/weapons/gun_m4a3_4.ogg','sound/weapons/gun_m4a3_5.ogg')
- if("88m4")
- S = pick('sound/weapons/gun_88m4_v7.ogg')
+ if("vp70")
+ S = pick('sound/weapons/gun_vp70_v7.ogg')
if("gun_casing_shotgun")
S = pick ('sound/bullets/bulletcasing_shotgun_fall1.ogg')
if("gun_nsg23")
diff --git a/code/game/turfs/floor_types.dm b/code/game/turfs/floor_types.dm
index d71d42ff2c..d3cbe86c7d 100644
--- a/code/game/turfs/floor_types.dm
+++ b/code/game/turfs/floor_types.dm
@@ -180,7 +180,22 @@
/turf/open/floor/plating/plating_catwalk/shiva
icon = 'icons/turf/floors/ice_colony/shiva_floor.dmi'
+/turf/open/floor/plating/plating_catwalk/aicore
+ icon = 'icons/turf/floors/aicore.dmi'
+ icon_state = "ai_plating_catwalk"
+/turf/open/floor/plating/plating_catwalk/aicore/update_icon()
+ . = ..()
+ if(covered)
+ overlays += image(icon, src, "ai_catwalk", CATWALK_LAYER)
+
+/turf/open/floor/plating/plating_catwalk/aicore/white
+ icon_state = "w_ai_plating_catwalk"
+
+/turf/open/floor/plating/plating_catwalk/aicore/white/update_icon()
+ . = ..()
+ if(covered)
+ overlays += image(icon, src, "w_ai_catwalk", CATWALK_LAYER)
/turf/open/floor/plating/ironsand
name = "Iron Sand"
@@ -203,6 +218,21 @@
icon_state = "default"
plating_type = /turf/open/floor/plating/almayer
+/turf/open/floor/almayer/edge
+ icon_state = "floor_edge"
+
+/turf/open/floor/almayer/edge/smooth
+ icon_state = "floor_edge_smooth"
+
+/turf/open/floor/almayer/edge/smooth/corner
+ icon_state = "floor_edge_smooth_corner"
+
+/turf/open/floor/almayer/edge/smooth/endcap_right
+ icon_state = "floor_edge_smooth2"
+
+/turf/open/floor/almayer/edge/smooth/endcap_left
+ icon_state = "floor_edge_smooth3"
+
/// Admin level thunderdome floor. Doesn't get damaged by explosions and such for pristine testing
/turf/open/floor/tdome
icon = 'icons/turf/almayer.dmi'
@@ -271,6 +301,34 @@
for(var/obj/effect/decal/cleanable/C in contents) //for the off chance of someone bleeding mid=flight
qdel(C)
+/turf/open/floor/almayer/empty/golden_arrow
+ desc = "You can see the elevator down there. It's a pretty long fall though..."
+ var/area_type = /area/golden_arrow/cargo_shuttle/elevator
+
+/turf/open/floor/almayer/empty/golden_arrow/enter_depths(atom/movable/AM)
+ if(AM.anchored)
+ return
+ if(AM.throwing == 0 && istype(get_turf(AM), type))
+ AM.visible_message(SPAN_WARNING("[AM] falls into the depths!"), SPAN_WARNING("You fall into the depths!"))
+
+ var/list/area_turfs = get_area_turfs(area_type)
+ for(var/turf/turf in area_turfs)
+ if(turf.density)
+ area_turfs -= turf
+
+ AM.forceMove(pick(area_turfs))
+ if(ishuman(AM))
+ var/mob/living/carbon/human/human = AM
+ human.KnockDown(3)
+ human.take_limb_damage(30)
+ playsound(human, "punch", rand(20, 70), TRUE)
+
+/turf/open/floor/almayer/empty/golden_arrow/vehicle_one
+ area_type = /area/golden_arrow/vehicle_shuttle
+
+/turf/open/floor/almayer/empty/golden_arrow/vehicle_two
+ area_type = /area/golden_arrow/vehicle_shuttle/two
+
//Others
/turf/open/floor/almayer/uscm
icon_state = "logo_c"
@@ -286,6 +344,27 @@
allow_construction = FALSE
hull_floor = TRUE
+/turf/open/floor/almayer/aicore
+ icon = 'icons/turf/floors/aicore.dmi'
+ icon_state = "ai_floor1"
+
+/turf/open/floor/almayer/aicore/glowing
+ icon_state = "ai_floor2"
+ light_color = "#d69c46"
+ light_range = 2
+
+/turf/open/floor/almayer/aicore/glowing/Initialize(mapload, ...)
+ . = ..()
+ set_light_on(TRUE)
+
+/turf/open/floor/almayer/aicore/no_build
+ allow_construction = FALSE
+ hull_floor = TRUE
+
+/turf/open/floor/almayer/aicore/glowing/no_build
+ allow_construction = FALSE
+ hull_floor = TRUE
+
// RESEARCH STUFF
/turf/open/floor/almayer/research/containment/entrance
icon_state = "containment_entrance"
diff --git a/code/game/turfs/walls/wall_types.dm b/code/game/turfs/walls/wall_types.dm
index 35a5d53379..10a49869ce 100644
--- a/code/game/turfs/walls/wall_types.dm
+++ b/code/game/turfs/walls/wall_types.dm
@@ -195,7 +195,39 @@
icon_state = "containment_window"
opacity = FALSE
+//AI Core
+/turf/closed/wall/almayer/aicore
+ walltype = WALL_AICORE
+ icon = 'icons/turf/walls/almayer_aicore.dmi'
+ icon_state = "aiwall"
+
+/turf/closed/wall/almayer/aicore/reinforced
+ name = "reinforced hull"
+ damage_cap = HEALTH_WALL_REINFORCED
+ icon_state = "reinforced"
+
+/turf/closed/wall/almayer/aicore/hull
+ name = "ultra reinforced hull"
+ desc = "An extremely reinforced metal wall used to isolate potentially dangerous areas"
+ hull = TRUE
+ icon_state = "hull"
+
+/turf/closed/wall/almayer/aicore/white
+ walltype = WALL_AICORE
+ icon = 'icons/turf/walls/almayer_aicore_white.dmi'
+ icon_state = "aiwall"
+
+/turf/closed/wall/almayer/aicore/white/reinforced
+ name = "reinforced hull"
+ damage_cap = HEALTH_WALL_REINFORCED
+ icon_state = "reinforced"
+
+/turf/closed/wall/almayer/aicore/white/hull
+ name = "ultra reinforced hull"
+ desc = "An extremely reinforced metal wall used to isolate potentially dangerous areas"
+ hull = TRUE
+ icon_state = "hull"
//Sulaco walls.
diff --git a/code/modules/admin/player_panel/actions/transform.dm b/code/modules/admin/player_panel/actions/transform.dm
index df2eb87f5c..ca20829357 100644
--- a/code/modules/admin/player_panel/actions/transform.dm
+++ b/code/modules/admin/player_panel/actions/transform.dm
@@ -140,6 +140,11 @@ GLOBAL_LIST_INIT(pp_transformables, list(
name = XENO_CASTE_PREDALIEN,
key = /mob/living/carbon/xenomorph/predalien,
color = "purple"
+ ),
+ list(
+ name = XENO_CASTE_KING,
+ key = /mob/living/carbon/xenomorph/king,
+ color="purple"
)
),
diff --git a/code/modules/almayer/machinery.dm b/code/modules/almayer/machinery.dm
index 400e1f0f6f..de49c1df62 100644
--- a/code/modules/almayer/machinery.dm
+++ b/code/modules/almayer/machinery.dm
@@ -195,11 +195,15 @@
unslashable = TRUE
unacidable = TRUE
+/obj/structure/prop/almayer/ship_memorial/golden_arrow
+ name = "memorial"
+ desc = "A memorial plaque dedicated to those of the Golden Arrow who have fallen in combat. It's an unfortunately long list of names."
+ icon_state = "garrow_memorial"
+
/obj/structure/prop/almayer/ship_memorial/centcomm
name = "slab of remembrance"
desc = "A memorial to all Maintainer Team members that have retired from working on CM. No mentor names are present."
-
/obj/structure/prop/almayer/ship_memorial/centcomm/admin
desc = "A memorial to all Admins and Moderators who have retired from CM. No mentor names are present."
diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm
index 33d77b05c6..dc67dcd57d 100644
--- a/code/modules/client/preferences.dm
+++ b/code/modules/client/preferences.dm
@@ -21,7 +21,7 @@ GLOBAL_LIST_INIT(bgstate_options, list(
"whitefull"
))
-var/const/MAX_SAVE_SLOTS = 10
+var/const/MAX_SAVE_SLOTS = 20
/datum/preferences
var/client/owner
@@ -927,6 +927,18 @@ var/const/MAX_SAVE_SLOTS = 10
return jobs_to_return
+/// Returns TRUE if any job has a priority other than NEVER, FALSE otherwise.
+/datum/preferences/proc/has_job_priorities()
+ if(!length(job_preference_list))
+ ResetJobs()
+ return FALSE
+
+ for(var/job in job_preference_list)
+ if(job_preference_list[job] != NEVER_PRIORITY)
+ return TRUE
+
+ return FALSE
+
/datum/preferences/proc/SetJobDepartment(datum/job/J, priority)
if(!J || priority < 0 || priority > 4)
return FALSE
@@ -1594,7 +1606,7 @@ var/const/MAX_SAVE_SLOTS = 10
if("underwear")
var/list/underwear_options = gender == MALE ? GLOB.underwear_m : GLOB.underwear_f
var/old_gender = gender
- var/new_underwear = tgui_input_list(user, "Choose your character's underwear:", "Character Preference", underwear_options)
+ var/new_underwear = tgui_input_list(user, "Choose your character's underwear:", "Character Preference", underwear_options-GLOB.underwear_restricted)
if(old_gender != gender)
return
if(new_underwear)
@@ -1604,7 +1616,7 @@ var/const/MAX_SAVE_SLOTS = 10
if("undershirt")
var/list/undershirt_options = gender == MALE ? GLOB.undershirt_m : GLOB.undershirt_f
var/old_gender = gender
- var/new_undershirt = tgui_input_list(user, "Choose your character's undershirt:", "Character Preference", undershirt_options)
+ var/new_undershirt = tgui_input_list(user, "Choose your character's undershirt:", "Character Preference", undershirt_options-GLOB.undershirt_restricted)
if(old_gender != gender)
return
if(new_undershirt)
diff --git a/code/modules/client/preferences_gear.dm b/code/modules/client/preferences_gear.dm
index 74346c4d87..c6a492b3d8 100644
--- a/code/modules/client/preferences_gear.dm
+++ b/code/modules/client/preferences_gear.dm
@@ -720,31 +720,58 @@ var/global/list/gear_datums_by_name = list()
/datum/gear/weapon/m8_cartridge_bayonet
display_name = "M8 Cartridge Bayonet"
- path = /obj/item/storage/box/co2_knife
+ path = /obj/item/storage/box/loadout/co2_knife
/datum/gear/weapon/clfpistol
- display_name = "D18 Holdout Pistol"
- path = /obj/item/storage/box/clf
+ display_name = "Hummingbird Pistol"
+ path = /obj/item/storage/box/loadout/clf
-/datum/gear/weapon/upppistol //ww2 war trophy luger
+/datum/gear/weapon/upppistol
display_name = "Type 73 Pistol"
- path = /obj/item/storage/box/upp
- slot = WEAR_IN_BACK
- cost = 4
+ path = /obj/item/storage/box/loadout/upp
/datum/gear/weapon/m4a3_custom
- display_name = "M4A3 Custom Pistol"
- path = /obj/item/weapon/gun/pistol/m4a3/custom
+ display_name = "Custom M4A3 Pistol"
+ path = /obj/item/storage/box/loadout/M4A3_custom_loadout
+ allowed_origins = USCM_ORIGINS
+
+/datum/gear/weapon/m1911
+ display_name = "M1911 Pistol"
+ path = /obj/item/storage/box/loadout/M1911_loadout
+ allowed_origins = USCM_ORIGINS
+
+/datum/gear/weapon/m44
+ display_name = "M44 Revolver"
+ path = /obj/item/storage/box/loadout/M44_loadout
allowed_origins = USCM_ORIGINS
/datum/gear/weapon/m44_custom_revolver
- display_name = "M44 Custom Revolver"
- path = /obj/item/weapon/gun/revolver/m44/custom
+ display_name = "Custom M44 Revolver"
+ path = /obj/item/storage/box/loadout/M44_custom_loadout
allowed_origins = USCM_ORIGINS
-/datum/gear/weapon/m1911
- display_name = "M1911 Service Pistol"
- path = /obj/item/storage/box/M1911_loadout
+/datum/gear/weapon/hg45_civilian
+ display_name = "HG 45 'Aguila' Pistol"
+ path = /obj/item/storage/box/loadout/HG45_civilian_loadout
+
+/datum/gear/weapon/hg45_marine
+ display_name = "HG 45 'Marina' Pistol"
+ path = /obj/item/storage/box/loadout/HG45_marine_loadout
+ allowed_origins = USCM_ORIGINS
+
+/datum/gear/weapon/hg44
+ display_name = "HG 44 'Automag' Pistol"
+ path = /obj/item/storage/box/loadout/HG45_marine_loadout
+ allowed_origins = USCM_ORIGINS
+
+/datum/gear/weapon/spearhead
+ display_name = "Spearhead Armoury Revolver"
+ path = /obj/item/storage/box/loadout/Spearhead_loadout
+ allowed_origins = USCM_ORIGINS
+
+/datum/gear/weapon/spearhead_custom
+ display_name = "Custom Spearhead Armoury Revolver"
+ path = /obj/item/storage/box/loadout/Spearhead_loadout/custom
allowed_origins = USCM_ORIGINS
/datum/gear/weapon/m2100_machete
diff --git a/code/modules/clothing/glasses/night.dm b/code/modules/clothing/glasses/night.dm
index fbb6fcab27..8b3a1551cd 100644
--- a/code/modules/clothing/glasses/night.dm
+++ b/code/modules/clothing/glasses/night.dm
@@ -89,7 +89,7 @@
/obj/item/clothing/glasses/night/m56_goggles
name = "\improper M56 head mounted sight"
gender = NEUTER
- desc = "A headset and goggles system for the M56 Smartgun. Has a low-res short-range imager, allowing for view of terrain."
+ desc = "A headset and goggles system for the M56 Smartgun weapon system. Has a low-res short-range imager, allowing for view of terrain."
icon = 'icons/obj/items/clothing/glasses.dmi'
icon_state = "m56_goggles"
deactive_state = "m56_goggles_0"
diff --git a/code/modules/clothing/head/head.dm b/code/modules/clothing/head/head.dm
index f6a3297148..e5398bab46 100644
--- a/code/modules/clothing/head/head.dm
+++ b/code/modules/clothing/head/head.dm
@@ -375,7 +375,7 @@
/obj/item/clothing/head/cmcap/flap
name = "\improper USCM expedition cap"
- desc = "It's a cap, with flaps. A patch stitched across the front reads \"USS ALMAYER\"."
+ desc = "A casual cap issued as part of the non-combat uniform. While it only protects from the sun, it's much more comfortable than a helmet. This one comes with flaps to keep the sun off your neck."
icon = 'icons/obj/items/clothing/cm_hats.dmi'
icon_state = "flapcap"
flags_marine_hat = HAT_GARB_OVERLAY
diff --git a/code/modules/clothing/head/helmet.dm b/code/modules/clothing/head/helmet.dm
index a12828cbec..07fc36b7a8 100644
--- a/code/modules/clothing/head/helmet.dm
+++ b/code/modules/clothing/head/helmet.dm
@@ -283,6 +283,7 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list(
/obj/item/prop/helmetgarb/cartridge = "cartridge",
/obj/item/prop/helmetgarb/prescription_bottle = "prescription_bottle",
/obj/item/prop/helmetgarb/raincover = "raincover",
+ /obj/item/prop/helmetgarb/camocover = "camocover",
/obj/item/prop/helmetgarb/rabbitsfoot = "rabbitsfoot",
/obj/item/prop/helmetgarb/rosary = "helmet_rosary", // This one was already in the game for some reason, but never had an object
/obj/item/prop/helmetgarb/lucky_feather = "lucky_feather",
@@ -902,8 +903,7 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list(
flags_inventory = BLOCKSHARPOBJ
flags_inv_hide = HIDEEARS|HIDETOPHAIR
flags_marine_helmet = HELMET_GARB_OVERLAY
- flags_item = MOB_LOCK_ON_EQUIP
- specialty = "M45 ghillie"
+ specialty = "M10 ghillie"
/obj/item/clothing/head/helmet/marine/CO
name = "\improper M10 pattern commanding officer helmet"
diff --git a/code/modules/clothing/suits/marine_armor.dm b/code/modules/clothing/suits/marine_armor.dm
index 6c5701c1a3..bc6d55250f 100644
--- a/code/modules/clothing/suits/marine_armor.dm
+++ b/code/modules/clothing/suits/marine_armor.dm
@@ -376,7 +376,7 @@
/obj/item/clothing/suit/storage/marine/smartgunner
name = "\improper M56 combat harness"
- desc = "Lightweight vest composed of ballistic micromesh and a ceramic composite chestplate. Also contains the computers, straps, and bracing required for operating the M56 Smartgun itself."
+ desc = "Lightweight vest composed of ballistic micromesh and a ceramic composite chestplate for practical protection, as well as the computers, straps, and armature required for operating the M56 Smartgun itself."
icon_state = "8"
item_state = "armor"
armor_laser = CLOTHING_ARMOR_LOW
@@ -385,6 +385,7 @@
storage_slots = 2
slowdown = SLOWDOWN_ARMOR_LIGHT
flags_inventory = BLOCKSHARPOBJ|SMARTGUN_HARNESS
+ flags_atom = NO_NAME_OVERRIDE
allowed = list(
/obj/item/tank/emergency_oxygen,
/obj/item/device/flashlight,
@@ -402,7 +403,7 @@
/obj/item/clothing/suit/storage/marine/smartgunner/Initialize()
. = ..()
- if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD] && name == "M56 combat harness")
+ if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD] && name == "\improper M56 combat harness" && !(flags_atom & NO_SNOW_TYPE))
name = "M56 snow combat harness"
/obj/item/clothing/suit/storage/marine/smartgunner/mob_can_equip(mob/equipping_mob, slot, disable_warning = FALSE)
@@ -439,10 +440,10 @@
UnregisterSignal(user, COMSIG_HUMAN_ATTEMPTING_EQUIP)
/obj/item/clothing/suit/storage/marine/smartgunner/standard
- flags_atom = NO_SNOW_TYPE
+ flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE
/obj/item/clothing/suit/storage/marine/smartgunner/black
- flags_atom = NO_SNOW_TYPE
+ flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE
icon_state = "8fancy"
/obj/item/clothing/suit/storage/marine/smartgunner/upp
@@ -514,6 +515,16 @@
/obj/item/clothing/suit/storage/marine/medium
armor_variation = 6
+/obj/item/clothing/suit/storage/marine/medium/non_spec_ghillie //doesnt have sniper spec shit associated with it
+ name = "\improper M40 pattern ghillie armor"
+ desc = "An older variant of camouflage suit used by snipers and scouts. While cheap to produce and easy to use, this suit of armor doesn't offer same level of stealth as newer M45 with integrated heatsink."
+ icon_state = "ghillie_armor"
+ armor_bio = CLOTHING_ARMOR_MEDIUMHIGH
+ flags_marine_armor = ARMOR_LAMP_OVERLAY
+ specialty = "M40 pattern ghillie"
+ valid_accessory_slots = list(ACCESSORY_SLOT_ARMBAND, ACCESSORY_SLOT_DECOR, ACCESSORY_SLOT_MEDAL)
+ restricted_accessory_slots = list(ACCESSORY_SLOT_ARMBAND)
+
/obj/item/clothing/suit/storage/marine/light
name = "\improper M3-L pattern light armor"
desc = "A lighter, cut down version of the standard M3 pattern armor. It sacrifices durability for more speed."
diff --git a/code/modules/cm_aliens/XenoStructures.dm b/code/modules/cm_aliens/XenoStructures.dm
index 3cbac124b3..d2ccd0cdea 100644
--- a/code/modules/cm_aliens/XenoStructures.dm
+++ b/code/modules/cm_aliens/XenoStructures.dm
@@ -919,6 +919,16 @@
E.source = initial(name)
qdel(src)
+/obj/effect/alien/resin/king_cocoon
+ name = "alien cocoon"
+ desc = "A large pulsating cocoon."
+ icon = 'icons/obj/structures/alien/xenoKingHatchery.dmi'
+ icon_state = "growing" // I wanna to set hatching/hatched state on MMB game panel soon
+ health = 4000
+ pixel_x = -48
+ pixel_y = -64
+ density = TRUE
+ plane = FLOOR_PLANE
/datum/automata_cell/acid
neighbor_type = NEIGHBORS_NONE
diff --git a/code/modules/cm_marines/equipment/guncases.dm b/code/modules/cm_marines/equipment/guncases.dm
index 98af79c511..16f55fad95 100644
--- a/code/modules/cm_marines/equipment/guncases.dm
+++ b/code/modules/cm_marines/equipment/guncases.dm
@@ -24,7 +24,7 @@
//------------
/obj/item/storage/box/guncase/vp78
name = "\improper VP78 pistol case"
- desc = "A gun case containing the VP78. Comes with two magazines."
+ desc = "A gun case containing a VP78. Comes with two magazines."
can_hold = list(/obj/item/weapon/gun/pistol/vp78, /obj/item/ammo_magazine/pistol/vp78)
storage_slots = 3
@@ -36,7 +36,7 @@
//------------
/obj/item/storage/box/guncase/smartpistol
name = "\improper SU-6 pistol case"
- desc = "A gun case containing the SU-6 smart pistol. Comes with a full belt holster."
+ desc = "A gun case containing a SU-6 smart pistol. Comes with a full belt holster."
can_hold = list(/obj/item/storage/belt/gun/smartpistol, /obj/item/weapon/gun/pistol/smart, /obj/item/ammo_magazine/pistol/smart)
storage_slots = 2
@@ -47,7 +47,7 @@
//------------
/obj/item/storage/box/guncase/mou53
name = "\improper MOU53 shotgun case"
- desc = "A gun case containing the MOU53 shotgun. It does come loaded, but you'll still have to find ammunition as you go."
+ desc = "A gun case containing a MOU53 shotgun. It does come loaded, but you'll still have to find ammunition as you go."
storage_slots = 2
can_hold = list(/obj/item/weapon/gun/shotgun/double/mou53, /obj/item/attachable/stock/mou53)
@@ -58,7 +58,7 @@
//------------
/obj/item/storage/box/guncase/lmg
name = "\improper M41AE2 heavy pulse rifle case"
- desc = "A gun case containing the M41AE2 heavy pulse rifle. You can get additional ammunition at requisitions."
+ desc = "A gun case containing a M41AE2 heavy pulse rifle. You can get additional ammunition at requisitions."
storage_slots = 5
can_hold = list(/obj/item/weapon/gun/rifle/lmg, /obj/item/ammo_magazine/rifle/lmg)
@@ -72,7 +72,7 @@
//------------
/obj/item/storage/box/guncase/m41aMK1
name = "\improper M41A pulse rifle MK1 case"
- desc = "A gun case containing the M41A pulse rifle MK1. It can only use proprietary MK1 magazines."
+ desc = "A gun case containing a loaded M41A pulse rifle MK1 and two additional magazines."
storage_slots = 3
can_hold = list(/obj/item/weapon/gun/rifle/m41aMK1, /obj/item/ammo_magazine/rifle/m41aMK1)
@@ -84,7 +84,7 @@
/obj/item/storage/box/guncase/m41aMK1AP
name = "\improper M41A pulse rifle MK1 AP case"
- desc = "A gun case containing the M41A pulse rifle MK1 loaded with AP rounds. It can only use proprietary MK1 magazines."
+ desc = "A gun case containing a M41A pulse rifle MK1 loaded with AP rounds and two additional magazines."
storage_slots = 3
can_hold = list(/obj/item/weapon/gun/rifle/m41aMK1, /obj/item/ammo_magazine/rifle/m41aMK1)
@@ -97,7 +97,7 @@
//M79 grenade launcher
/obj/item/storage/box/guncase/m79
name = "\improper M79 grenade launcher case"
- desc = "A gun case containing the modernized M79 grenade launcher. Comes with 3 baton slugs, 3 hornet shells and 3 star shell grenades."
+ desc = "A gun case containing a modernized M79 grenade launcher. Comes with 3 baton slugs, 3 hornet shells and 3 star shell grenades."
storage_slots = 4
can_hold = list(/obj/item/weapon/gun/launcher/grenade/m81/m79, /obj/item/storage/box/packet)
@@ -111,7 +111,7 @@
//R4T lever action rifle
/obj/item/storage/box/guncase/r4t_scout
name = "\improper R4T lever action rifle case"
- desc = "A gun case containing the R4T lever action rifle, intended for scouting. Comes with an ammunition belt, the optional revolver attachment for it, two boxes of ammunition, a sling, and a stock for the rifle."
+ desc = "A gun case containing a R4T lever action rifle, intended for scouting. Comes with an ammunition belt, the optional revolver attachment for it, two boxes of ammunition, a sling, and a stock for the rifle."
storage_slots = 7
can_hold = list(/obj/item/weapon/gun/lever_action/r4t, /obj/item/attachable/stock/r4t, /obj/item/attachable/magnetic_harness/lever_sling, /obj/item/ammo_magazine/lever_action, /obj/item/ammo_magazine/lever_action/training, /obj/item/storage/belt/shotgun/lever_action, /obj/item/storage/belt/gun/m44/lever_action/attach_holster, /obj/item/device/motiondetector/m717)
@@ -126,7 +126,7 @@
/obj/item/storage/box/guncase/xm88
name = "\improper XM88 heavy rifle case"
- desc = "A gun case containing the XM88 Heavy Rifle, a prototype weapon designed for use against heavily armored infantry targets and light vehicles. Contains an ammunition belt, two boxes of ammunition, the XS-9 Targeting Relay attachment, and the stock for the rifle."
+ desc = "A gun case containing a XM88 Heavy Rifle, a prototype weapon designed for use against heavily armored infantry targets and light vehicles. Contains an ammunition belt, two boxes of ammunition, the XS-9 Targeting Relay attachment, and the stock for the rifle."
storage_slots = 6
can_hold = list(/obj/item/weapon/gun/lever_action/xm88, /obj/item/attachable/stock/xm88, /obj/item/attachable/scope/mini/xm88, /obj/item/ammo_magazine/lever_action/xm88, /obj/item/storage/belt/shotgun/xm88)
@@ -140,8 +140,8 @@
//------------
/obj/item/storage/box/guncase/flamer
- name = "\improper M240 incinerator case"
- desc = "A gun case containing the M240A1 incinerator unit. It does come loaded, but you'll still have to find extra tanks as you go."
+ name = "\improper M240A1 incinerator case"
+ desc = "A gun case containing a M240A1 incinerator unit. It does come loaded, but you'll still have to find extra tanks as you go."
storage_slots = 4
can_hold = list(/obj/item/weapon/gun/flamer, /obj/item/ammo_magazine/flamer_tank, /obj/item/attachable/attached_gun/extinguisher)
@@ -159,10 +159,25 @@
new /obj/item/ammo_magazine/flamer_tank(src)
new /obj/item/attachable/attached_gun/extinguisher/pyro(src)
+/obj/item/storage/box/guncase/flamer/fuel
+ name = "\improper M240A1 fuel case"
+ desc = "A case containing four fuel canisters for the M240A1 incinerator unit."
+ icon_state = "fuelbox"
+ storage_slots = 6
+ can_hold = list(/obj/item/ammo_magazine/flamer_tank)
+
+/obj/item/storage/box/guncase/flamer/fuel/fill_preset_inventory()
+ new /obj/item/ammo_magazine/flamer_tank(src)
+ new /obj/item/ammo_magazine/flamer_tank(src)
+ new /obj/item/ammo_magazine/flamer_tank(src)
+ new /obj/item/ammo_magazine/flamer_tank(src)
+ new /obj/item/ammo_magazine/flamer_tank(src)
+ new /obj/item/ammo_magazine/flamer_tank(src)
+
//------------
/obj/item/storage/box/guncase/m56d
name = "\improper M56D heavy machine gun case"
- desc = "A gun case containing the M56D heavy machine gun. You'll need to order resupplies from requisitions or scavenge them on the field. How do they fit all this into a case? Wouldn't you need a crate."
+ desc = "A gun case containing a M56D heavy machine gun. You'll need to order resupplies from requisitions or scavenge them on the field. How do they fit all this into a case? Wouldn't you need a crate."
storage_slots = 8
can_hold = list(/obj/item/device/m56d_gun, /obj/item/ammo_magazine/m56d, /obj/item/device/m56d_post, /obj/item/tool/wrench, /obj/item/tool/screwdriver, /obj/item/ammo_magazine/m56d, /obj/item/pamphlet/skill/machinegunner, /obj/item/storage/belt/marine/m2c)
@@ -179,7 +194,7 @@
//------------
/obj/item/storage/box/guncase/m2c
name = "\improper M2C heavy machine gun case"
- desc = "A gun case containing the M2C heavy machine gun. It doesn't come loaded, but it does have spare ammunition. You'll have to order extras from requisitions."
+ desc = "A gun case containing a M2C heavy machine gun. It doesn't come loaded, but it does have spare ammunition. You'll have to order extras from requisitions."
storage_slots = 7
can_hold = list(/obj/item/pamphlet/skill/machinegunner, /obj/item/device/m2c_gun, /obj/item/ammo_magazine/m2c, /obj/item/storage/belt/marine/m2c, /obj/item/pamphlet/skill/machinegunner)
@@ -195,7 +210,7 @@
//------------
/obj/item/storage/box/guncase/m41a
name = "\improper M41A pulse rifle MK2 case"
- desc = "A gun case containing the M41A pulse rifle MK2."
+ desc = "A gun case containing a M41A pulse rifle MK2."
storage_slots = 5
can_hold = list(/obj/item/weapon/gun/rifle/m41a, /obj/item/ammo_magazine/rifle)
@@ -206,43 +221,50 @@
//------------
-/obj/item/storage/box/guncase/pumpshotgun
- name = "\improper M37A2 Pump Shotgun case"
- desc = "A gun case containing the M37A2 Pump Shotgun."
- icon_state = "guncase_red"
- storage_slots = 4
- can_hold = list(/obj/item/weapon/gun/shotgun/pump, /obj/item/ammo_magazine/shotgun/buckshot, /obj/item/ammo_magazine/shotgun/flechette, /obj/item/ammo_magazine/shotgun/slugs, /obj/item/storage/pouch/shotgun)
+/obj/item/storage/box/guncase/shotguncombat
+ name = "\improper M120 tactical shotgun case"
+ desc = "A gun case containing an unloaded M120 tactical shotgun, two boxes of 12 gauge buckshot, and one box of 12 gauge slug."
+ icon_state = "guncase"
+ storage_slots = 3
+ can_hold = list(/obj/item/weapon/gun/shotgun/combat, /obj/item/ammo_magazine/shotgun/buckshot, /obj/item/ammo_magazine/shotgun/slugs)
-/obj/item/storage/box/guncase/pumpshotgun/fill_preset_inventory()
+/obj/item/storage/box/guncase/shotguncombat/fill_preset_inventory()
+ new /obj/item/weapon/gun/shotgun/combat(src)
+ new /obj/item/ammo_magazine/shotgun/buckshot(src)
+ new /obj/item/ammo_magazine/shotgun/slugs(src)
+
+/obj/item/storage/box/guncase/shotgunpump
+ name = "\improper Ithaca 37 pump-action shotgun case"
+ desc = "A gun case containing an unloaded Ithaca 37 pump-action shotgun, a box of 12 gauge buckshot, and a box of 12 gauge slugs."
+ icon_state = "matebacase"
+ storage_slots = 3
+ can_hold = list(/obj/item/weapon/gun/shotgun/pump, /obj/item/ammo_magazine/shotgun/buckshot, /obj/item/ammo_magazine/shotgun/slugs)
+
+/obj/item/storage/box/guncase/shotgunpump/fill_preset_inventory()
new /obj/item/weapon/gun/shotgun/pump(src)
- new /obj/item/storage/pouch/shotgun(src)
- new /obj/item/storage/large_holster/m37(src)
- for(var/i = 1 to 3)
- var/random_pick = rand(1, 3)
- switch(random_pick)
- if(1)
- new /obj/item/ammo_magazine/shotgun/buckshot(src)
- if(2)
- new /obj/item/ammo_magazine/shotgun/flechette(src)
- if(3)
- new /obj/item/ammo_magazine/shotgun/slugs(src)
-
-/obj/item/storage/box/guncase/pumpshotgun/special
+ new /obj/item/ammo_magazine/shotgun/buckshot(src)
+ new /obj/item/ammo_magazine/shotgun/slugs(src)
+
+
+/obj/item/storage/box/guncase/shotgunpump/special
+ name = "\improper Ithaca 37 pump-action shotgun case"
+ desc = "A gun case containing an unloaded Ithaca 37 pump-action shotgun and one box of 12 gauge USCM Special buckshot."
+ icon_state = "matebacase"
storage_slots = 2
-/obj/item/storage/box/guncase/pumpshotgun/special/fill_preset_inventory()
- new /obj/item/weapon/gun/shotgun/pump/special(src)
+/obj/item/storage/box/guncase/shotgunpump/special/fill_preset_inventory()
+ new /obj/item/weapon/gun/shotgun/pump(src)
new /obj/item/ammo_magazine/shotgun/buckshot/special(src)
new /obj/item/storage/pouch/shotgun(src)
new /obj/item/storage/large_holster/m37(src)
-/obj/item/storage/box/guncase/mk45_automag
- name = "\improper MK-45 Automagnum case"
- desc = "A gun case containing the MK-45 'High-Power' Automagnum sidearm. While this weapon was rejected as a replacement for the M44 Combat Revolver, it is often back-issued to troops who prefer its powerful bullets over more common sidearms."
+/obj/item/storage/box/guncase/hg45
+ name = "\improper HG 45 pistol case"
+ desc = "A gun case containing a HG 45 pistol."
storage_slots = 6
can_hold = list(/obj/item/weapon/gun/pistol/highpower, /obj/item/ammo_magazine/pistol/highpower)
-/obj/item/storage/box/guncase/mk45_automag/fill_preset_inventory()
+/obj/item/storage/box/guncase/hg45/fill_preset_inventory()
if(prob(30))
new /obj/item/weapon/gun/pistol/highpower(src)
new /obj/item/ammo_magazine/pistol/highpower(src)
@@ -251,19 +273,11 @@
new /obj/item/ammo_magazine/pistol/highpower(src)
new /obj/item/ammo_magazine/pistol/highpower(src)
new /obj/item/ammo_magazine/pistol/highpower(src)
- else
- new /obj/item/weapon/gun/pistol/highpower/black(src)
- new /obj/item/ammo_magazine/pistol/highpower/black(src)
- new /obj/item/ammo_magazine/pistol/highpower/black(src)
- new /obj/item/ammo_magazine/pistol/highpower/black(src)
- new /obj/item/ammo_magazine/pistol/highpower/black(src)
- new /obj/item/ammo_magazine/pistol/highpower/black(src)
- new /obj/item/ammo_magazine/pistol/highpower/black(src)
/obj/item/storage/box/guncase/nsg23_marine
name = "\improper NSG-23 assault rifle case"
- desc = "A gun case containing the NSG 23 assault rifle. While usually seen in the hands of PMCs, this weapon is sometimes issued to USCM personnel."
+ desc = "A gun case containing a NSG 23 assault rifle. While usually seen in the hands of PMCs, this weapon is sometimes issued to USCM personnel."
storage_slots = 6
can_hold = list(/obj/item/weapon/gun/rifle/nsg23/no_lock, /obj/item/ammo_magazine/rifle/nsg23)
@@ -277,7 +291,7 @@
/obj/item/storage/box/guncase/m3717
name = "\improper M37-17 pump shotgun case"
- desc = "A gun case containing the M37-17 pump shotgun. Rarely seen issued to USCM vessels on the edges of inhabited space who need the extra bang for their buck (literally) the M37-17 has. Like this one! Well, if it had the budget for it."
+ desc = "A gun case containing a M37-17 pump shotgun. Rarely seen issued to USCM vessels on the edges of inhabited space who need the extra bang for their buck (literally) the M37-17 has. Like this one! Well, if it had the budget for it."
storage_slots = 4
can_hold = list(/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb/m3717, /obj/item/ammo_magazine/shotgun/buckshot)
@@ -289,7 +303,7 @@
/obj/item/storage/box/guncase/m1911
name = "\improper M1911 service pistol case"
- desc = "A gun case containing the M1911 service pistol. It might be three centuries old but it's still a damn good pistol. Back-issue only, though."
+ desc = "A gun case containing a M1911 service pistol. It might be three centuries old but it's still a damn good pistol. Back-issue only, though."
storage_slots = 7
can_hold = list(/obj/item/weapon/gun/pistol/m1911, /obj/item/ammo_magazine/pistol/m1911)
@@ -331,7 +345,7 @@
/obj/item/storage/box/guncase/vulture
name = "\improper M707 anti-materiel rifle case"
- desc = "A gun case containing the M707 \"Vulture\" anti-materiel rifle and its requisite spotting tools."
+ desc = "A gun case containing a M707 \"Vulture\" anti-materiel rifle and its requisite spotting tools."
icon_state = "guncase_blue"
storage_slots = 7
can_hold = list(
@@ -364,24 +378,24 @@
//Handgun case for Military police vendor three mag , a railflashligh and the handgun.
-//88 Mod 4 Combat Pistol
-/obj/item/storage/box/guncase/mod88
- name = "\improper 88 Mod 4 Combat Pistol case"
- desc = "A gun case containing an 88 Mod 4 Combat Pistol."
+//VP70 Combat Pistol
+/obj/item/storage/box/guncase/vp70
+ name = "\improper VP70 Combat Pistol case"
+ desc = "A gun case containing a VP70 Combat Pistol."
storage_slots = 5
- can_hold = list(/obj/item/attachable/flashlight, /obj/item/weapon/gun/pistol/mod88, /obj/item/ammo_magazine/pistol/mod88)
+ can_hold = list(/obj/item/attachable/flashlight, /obj/item/weapon/gun/pistol/vp70, /obj/item/ammo_magazine/pistol/vp70)
-/obj/item/storage/box/guncase/mod88/fill_preset_inventory()
+/obj/item/storage/box/guncase/vp70/fill_preset_inventory()
new /obj/item/attachable/flashlight(src)
- new /obj/item/weapon/gun/pistol/mod88(src)
- new /obj/item/ammo_magazine/pistol/mod88/normalpoint(src)
- new /obj/item/ammo_magazine/pistol/mod88/normalpoint(src)
- new /obj/item/ammo_magazine/pistol/mod88/normalpoint(src)
+ new /obj/item/weapon/gun/pistol/vp70(src)
+ new /obj/item/ammo_magazine/pistol/vp70(src)
+ new /obj/item/ammo_magazine/pistol/vp70(src)
+ new /obj/item/ammo_magazine/pistol/vp70(src)
//M44 Combat Revolver
/obj/item/storage/box/guncase/m44
name = "\improper M44 Combat Revolver case"
- desc = "A gun case containing an M44 Combat Revolver loaded with marksman ammo."
+ desc = "A gun case containing a M44 Combat Revolver loaded with marksman ammo."
storage_slots = 5
can_hold = list(/obj/item/attachable/flashlight, /obj/item/weapon/gun/revolver/m44, /obj/item/ammo_magazine/revolver)
@@ -395,7 +409,7 @@
//M4A3 Service Pistol
/obj/item/storage/box/guncase/m4a3
name = "\improper M4A3 Service Pistol case"
- desc = "A gun case containing an M4A3 Service Pistol."
+ desc = "A gun case containing a M4A3 Service Pistol."
storage_slots = 5
can_hold = list(/obj/item/attachable/flashlight, /obj/item/weapon/gun/pistol/m4a3, /obj/item/ammo_magazine/pistol)
diff --git a/code/modules/cm_marines/equipment/kit_boxes.dm b/code/modules/cm_marines/equipment/kit_boxes.dm
index 6058ae93ec..f0172a2858 100644
--- a/code/modules/cm_marines/equipment/kit_boxes.dm
+++ b/code/modules/cm_marines/equipment/kit_boxes.dm
@@ -491,7 +491,7 @@
icon_state = "[initial(icon_state)]_e"
/obj/item/storage/box/kit/cryo_self_defense/fill_preset_inventory()
- new /obj/item/weapon/gun/pistol/mod88/flashlight(src)
+ new /obj/item/weapon/gun/pistol/vp70/flashlight(src)
new /obj/item/attachable/bayonet(src)
new /obj/item/reagent_container/food/snacks/packaged_meal(src, pick("boneless pork ribs", "grilled chicken", "pizza square", "spaghetti chunks", "chicken tender"))
diff --git a/code/modules/cm_marines/overwatch.dm b/code/modules/cm_marines/overwatch.dm
index c29b4ad5b5..8fcf1a4020 100644
--- a/code/modules/cm_marines/overwatch.dm
+++ b/code/modules/cm_marines/overwatch.dm
@@ -218,6 +218,9 @@
if(DEAD)
mob_state = "Dead"
+ if(mob_state == "Conscious" && (locate(/datum/effects/crit) in marine_human.effects_list))
+ mob_state = "Incapacitated"
+
if(!istype(marine_human.head, /obj/item/clothing/head/helmet/marine))
has_helmet = FALSE
diff --git a/code/modules/cm_tech/implements/ammo_kits.dm b/code/modules/cm_tech/implements/ammo_kits.dm
index bcf267a54c..8cce3da199 100644
--- a/code/modules/cm_tech/implements/ammo_kits.dm
+++ b/code/modules/cm_tech/implements/ammo_kits.dm
@@ -62,7 +62,7 @@
.[/obj/item/ammo_magazine/rifle/m41aMK1] = /obj/item/ammo_magazine/rifle/m41aMK1/incendiary
.[/obj/item/ammo_magazine/pistol] = /obj/item/ammo_magazine/pistol/incendiary
.[/obj/item/ammo_magazine/pistol/vp78] = /obj/item/ammo_magazine/pistol/vp78/incendiary
- .[/obj/item/ammo_magazine/pistol/mod88] = /obj/item/ammo_magazine/pistol/mod88/incendiary
+ .[/obj/item/ammo_magazine/pistol/vp70] = /obj/item/ammo_magazine/pistol/vp70/incendiary
.[/obj/item/ammo_magazine/revolver] = /obj/item/ammo_magazine/revolver/incendiary
/obj/item/storage/box/shotgun
@@ -110,7 +110,7 @@
.[/obj/item/ammo_magazine/rifle/m41aMK1] = /obj/item/ammo_magazine/rifle/m41aMK1/penetrating
.[/obj/item/ammo_magazine/pistol] = /obj/item/ammo_magazine/pistol/penetrating
.[/obj/item/ammo_magazine/pistol/vp78] = /obj/item/ammo_magazine/pistol/vp78/penetrating
- .[/obj/item/ammo_magazine/pistol/mod88] = /obj/item/ammo_magazine/pistol/mod88/penetrating
+ .[/obj/item/ammo_magazine/pistol/vp70] = /obj/item/ammo_magazine/pistol/vp70/penetrating
.[/obj/item/ammo_magazine/revolver] = /obj/item/ammo_magazine/revolver/penetrating
/obj/item/ammo_kit/toxin
@@ -126,5 +126,5 @@
.[/obj/item/ammo_magazine/rifle/m41aMK1] = /obj/item/ammo_magazine/rifle/m41aMK1/toxin
.[/obj/item/ammo_magazine/pistol] = /obj/item/ammo_magazine/pistol/toxin
.[/obj/item/ammo_magazine/pistol/vp78] = /obj/item/ammo_magazine/pistol/vp78/toxin
- .[/obj/item/ammo_magazine/pistol/mod88] = /obj/item/ammo_magazine/pistol/mod88/toxin
+ .[/obj/item/ammo_magazine/pistol/vp70] = /obj/item/ammo_magazine/pistol/vp70/toxin
.[/obj/item/ammo_magazine/revolver] = /obj/item/ammo_magazine/revolver/marksman/toxin
diff --git a/code/modules/fishing/bait/generic.dm b/code/modules/fishing/bait/generic.dm
index 8a8c8698d7..21716406a2 100644
--- a/code/modules/fishing/bait/generic.dm
+++ b/code/modules/fishing/bait/generic.dm
@@ -1,5 +1,7 @@
/obj/item/fish_bait
name = "fish bait"
+ icon = 'icons/obj/items/fishing_atoms.dmi'
+ icon_state = "other_meat"
desc = "A tasty piece of... meat? Whatever it is, fish love this."
var/common_mod = -10
diff --git a/code/modules/fishing/datums/generic.dm b/code/modules/fishing/datums/generic.dm
index 76099ec848..4f9be08003 100644
--- a/code/modules/fishing/datums/generic.dm
+++ b/code/modules/fishing/datums/generic.dm
@@ -2,20 +2,22 @@ GLOBAL_LIST_EMPTY(fishing_loot_tables)
/datum/fish_loot_table
var/list/common_fishable_atoms = list(
- /obj/item/clothing/shoes/leather,
- /obj/item/clothing/shoes/marine,
+ /obj/item/prop/scrap,
+ /obj/item/trash/crushed_cup,
+ /obj/item/trash/c_tube,
+ /obj/item/trash/cigbutt/bcigbutt,
+ /obj/item/trash/cigbutt/cigarbutt
)
var/list/uncommon_fishable_atoms = list(
- /obj/item/cell/high,
- /obj/item/device/multitool
+ /obj/item/reagent_container/food/snacks/fishable/squid/whorl,
+ /obj/item/reagent_container/food/snacks/fishable/crab
)
var/list/rare_fishable_atoms = list(
/obj/item/reagent_container/food/snacks/microwavable/packaged_burrito
+ /obj/item/coin/silver
)
var/list/ultra_rare_fishable_atoms = list(
- /obj/item/card/data/clown,
- /obj/item/reagent_container/food/snacks/clownburger,
- /obj/item/reagent_container/pill/ultrazine/unmarked
+ /obj/item/reagent_container/food/snacks/fishable/quadtopus
)
/datum/fish_loot_table/proc/return_caught_fish(common_weight, uncommon_weight, rare_weight, ultra_rare_weight)
diff --git a/code/modules/fishing/props/fishing_pole.dm b/code/modules/fishing/props/fishing_pole.dm
index 3d87a171e3..3782012514 100644
--- a/code/modules/fishing/props/fishing_pole.dm
+++ b/code/modules/fishing/props/fishing_pole.dm
@@ -9,7 +9,7 @@
/obj/structure/prop/fishing/pole_interactive
var/time_to_fish = 30 SECONDS
- var/fishing_success = 'sound/items/bikehorn.ogg'//to-do get a sound effect(s)
+ var/fishing_success = 'sound/items/fulton.ogg'//to-do get a sound effect(s)
var/fishing_start = 'sound/items/fulton.ogg'
var/fishing_failure = 'sound/items/jetpack_beep.ogg'
var/fishing_event = 'sound/items/component_pickup.ogg'
diff --git a/code/modules/gear_presets/_select_equipment.dm b/code/modules/gear_presets/_select_equipment.dm
index 6aefa9a673..8dafd13b36 100644
--- a/code/modules/gear_presets/_select_equipment.dm
+++ b/code/modules/gear_presets/_select_equipment.dm
@@ -893,8 +893,8 @@ var/list/rebel_rifles = list(
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/b92fs(new_human), WEAR_IN_BACK)
if(1)
- new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/revolver/cmb(new_human), WEAR_IN_BACK)
- new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/cmb(new_human), WEAR_IN_BACK)
+ new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/revolver/spearhead(new_human), WEAR_IN_BACK)
+ new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/spearhead(new_human), WEAR_IN_BACK)
if(2)
new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/highpower(new_human), WEAR_IN_BACK)
@@ -1050,20 +1050,11 @@ var/list/rebel_rifles = list(
)
/datum/equipment_preset/proc/load_upp_shotgun(mob/living/carbon/human/new_human)
- var/random_shotgun = rand(1,3)
- switch(random_shotgun)
- if(1)
- new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/type23/breacher, WEAR_J_STORE)
- new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/shotgun/heavybuck, WEAR_L_STORE)
- new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/shotgun/heavybuck, WEAR_R_STORE)
- if(2)
- new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/type23/breacher/slug, WEAR_J_STORE)
- new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/shotgun/heavyslug, WEAR_L_STORE)
- new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/shotgun/heavyslug, WEAR_R_STORE)
- if(3)
- new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/type23/breacher/flechette, WEAR_J_STORE)
- new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/shotgun/heavyflechette, WEAR_L_STORE)
- new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/shotgun/heavyflechette, WEAR_R_STORE)
+
+ new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/type23, WEAR_J_STORE)
+ new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/shotgun/heavybuck, WEAR_L_STORE)
+ new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/shotgun/heavybuck, WEAR_R_STORE)
+
/datum/equipment_preset/proc/add_upp_weapon(mob/living/carbon/human/new_human)
var/random_gun = rand(1,5)
diff --git a/code/modules/gear_presets/cbrn.dm b/code/modules/gear_presets/cbrn.dm
index 98a6b0665e..bcc24c101f 100644
--- a/code/modules/gear_presets/cbrn.dm
+++ b/code/modules/gear_presets/cbrn.dm
@@ -44,7 +44,7 @@
if("flamethrower")
new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/flamer/underextinguisher(new_human), WEAR_J_STORE)
new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/engineerpack/flamethrower/kit(new_human), WEAR_BACK)
- new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88(new_human), WEAR_WAIST)
+ new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70(new_human), WEAR_WAIST)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/flamer_tank(new_human), WEAR_IN_BACK)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/flamer_tank(new_human), WEAR_IN_BACK)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/flamer_tank(new_human), WEAR_IN_BACK)
@@ -91,7 +91,7 @@
if("flamethrower")
new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/flamer/underextinguisher(new_human), WEAR_J_STORE)
new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/engineerpack/flamethrower/kit(new_human), WEAR_BACK)
- new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88(new_human), WEAR_WAIST)
+ new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70(new_human), WEAR_WAIST)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/flamer_tank(new_human), WEAR_IN_BACK)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/flamer_tank(new_human), WEAR_IN_BACK)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/flamer_tank(new_human), WEAR_IN_BACK)
@@ -122,7 +122,7 @@
. = ..()
new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/webbing/five_slots(new_human), WEAR_ACCESSORY)
- new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88(new_human), WEAR_J_STORE)
+ new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70(new_human), WEAR_J_STORE)
new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/medic(new_human), WEAR_BACK)
new_human.equip_to_slot_or_del(new /obj/item/storage/belt/medical/lifesaver/full/dutch(new_human), WEAR_WAIST)
new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/medkit/full_advanced(new_human), WEAR_L_STORE)
diff --git a/code/modules/gear_presets/clf.dm b/code/modules/gear_presets/clf.dm
index 91a44328e4..277c21036b 100644
--- a/code/modules/gear_presets/clf.dm
+++ b/code/modules/gear_presets/clf.dm
@@ -455,7 +455,7 @@
new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/swat(new_human), WEAR_HEAD)
new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/combat(new_human), WEAR_FEET)
new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/combat(new_human), WEAR_HANDS)
- new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88(new_human), WEAR_WAIST)
+ new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70(new_human), WEAR_WAIST)
new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/night(new_human), WEAR_EYES)
new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/CLF/cct(new_human), WEAR_L_EAR)
diff --git a/code/modules/gear_presets/cmb.dm b/code/modules/gear_presets/cmb.dm
index 0f5f67e071..c348f63fae 100644
--- a/code/modules/gear_presets/cmb.dm
+++ b/code/modules/gear_presets/cmb.dm
@@ -77,9 +77,9 @@
switch(choice)
if(1 to 6)
new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/holster, WEAR_ACCESSORY)
- new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/revolver/cmb, WEAR_IN_ACCESSORY)
- new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/cmb/normalpoint, WEAR_IN_ACCESSORY)
- new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/cmb/normalpoint, WEAR_IN_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/revolver/spearhead, WEAR_IN_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/spearhead, WEAR_IN_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/spearhead, WEAR_IN_ACCESSORY)
new_human.equip_to_slot_or_del(new /obj/item/storage/belt/security/MP/CMB/full/revolver, WEAR_WAIST)
new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, WEAR_J_STORE)
new_human.equip_to_slot_or_del(new /obj/item/handcuffs/zip, WEAR_IN_BACK)
@@ -111,9 +111,9 @@
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/handful/shotgun, WEAR_IN_R_STORE)
if(10)
new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/holster, WEAR_ACCESSORY)
- new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/revolver/cmb, WEAR_IN_ACCESSORY)
- new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/cmb/normalpoint, WEAR_IN_ACCESSORY)
- new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/cmb/normalpoint, WEAR_IN_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/revolver/spearhead, WEAR_IN_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/spearhead, WEAR_IN_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/spearhead, WEAR_IN_ACCESSORY)
new_human.equip_to_slot_or_del(new /obj/item/storage/belt/security/MP/CMB/full/revolver, WEAR_WAIST)
new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m41aMK1, WEAR_J_STORE)
new_human.equip_to_slot_or_del(new /obj/item/handcuffs/zip, WEAR_IN_BACK)
@@ -147,9 +147,9 @@
new_human.equip_to_slot_or_del(new headset_type, WEAR_L_EAR)
new_human.equip_to_slot_or_del(new /obj/item/clothing/under/CM_uniform, WEAR_BODY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/holster, WEAR_ACCESSORY)
- new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/revolver/cmb, WEAR_IN_ACCESSORY)
- new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/cmb/normalpoint, WEAR_IN_ACCESSORY)
- new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/cmb/normalpoint, WEAR_IN_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/revolver/spearhead, WEAR_IN_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/spearhead, WEAR_IN_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/spearhead, WEAR_IN_ACCESSORY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/CMB/marshal, WEAR_JACKET)
new_human.equip_to_slot_or_del(new /obj/item/weapon/telebaton, WEAR_IN_JACKET)
new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb/m3717, WEAR_J_STORE)
@@ -227,9 +227,9 @@
load_name(new_human)
//backpack
new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/security, WEAR_BACK)
- new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/cmb/normalpoint, WEAR_IN_BACK)
- new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/cmb/normalpoint, WEAR_IN_BACK)
- new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/cmb, WEAR_IN_BACK)
+ new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/spearhead, WEAR_IN_BACK)
+ new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/spearhead, WEAR_IN_BACK)
+ new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/spearhead, WEAR_IN_BACK)
new_human.equip_to_slot_or_del(new /obj/item/device/autopsy_scanner, WEAR_IN_BACK)
new_human.equip_to_slot_or_del(new /obj/item/explosive/plastic/breaching_charge, WEAR_IN_BACK)
new_human.equip_to_slot_or_del(new /obj/item/device/radio, WEAR_IN_BACK)
@@ -296,9 +296,9 @@
new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/CMB/ICC, WEAR_L_EAR)
new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/corporate_formal, WEAR_BODY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/holster, WEAR_ACCESSORY)
- new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/mod88, WEAR_IN_ACCESSORY)
- new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/mod88/normalpoint, WEAR_IN_ACCESSORY)
- new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/mod88/normalpoint, WEAR_IN_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/vp70, WEAR_IN_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/vp70, WEAR_IN_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/vp70, WEAR_IN_ACCESSORY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/health/ceramic_plate, WEAR_ACCESSORY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/head/hardhat/white, WEAR_HEAD)
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/hazardvest/yellow, WEAR_JACKET)
diff --git a/code/modules/gear_presets/corpses.dm b/code/modules/gear_presets/corpses.dm
index 450758c691..16d1b960e0 100644
--- a/code/modules/gear_presets/corpses.dm
+++ b/code/modules/gear_presets/corpses.dm
@@ -356,7 +356,7 @@
else
new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK)
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/vest(new_human), WEAR_JACKET)
- new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88(new_human), WEAR_WAIST)
+ new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70(new_human), WEAR_WAIST)
new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/WY(new_human), WEAR_L_EAR)
new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel(new_human), WEAR_BACK)
new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK)
@@ -786,7 +786,7 @@
new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf, WEAR_FACE)
new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel, WEAR_BACK)
new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK)
- new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88, WEAR_WAIST)
+ new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70, WEAR_WAIST)
new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/tools/full(new_human), WEAR_R_STORE)
new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/ert(new_human), WEAR_L_STORE)
add_random_survivor_equipment(new_human)
@@ -814,7 +814,7 @@
new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack/five_slot, WEAR_BACK)
new_human.equip_to_slot_or_del(new /obj/item/weapon/baton, WEAR_IN_BACK)
new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar, WEAR_IN_BACK)
- new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88_near_empty, WEAR_WAIST)
+ new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70_near_empty, WEAR_WAIST)
new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full, WEAR_R_STORE)
/datum/equipment_preset/corpse/pmc/goon/lead
@@ -835,7 +835,7 @@
new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack/five_slot, WEAR_BACK)
new_human.equip_to_slot_or_del(new /obj/item/weapon/baton, WEAR_IN_BACK)
new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar, WEAR_IN_BACK)
- new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88_near_empty, WEAR_WAIST)
+ new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70_near_empty, WEAR_WAIST)
new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full, WEAR_R_STORE)
// Freelancer
diff --git a/code/modules/gear_presets/pmc.dm b/code/modules/gear_presets/pmc.dm
index 1dcb5fa95c..1f4a9d40df 100644
--- a/code/modules/gear_presets/pmc.dm
+++ b/code/modules/gear_presets/pmc.dm
@@ -90,7 +90,7 @@
new_human.equip_to_slot_or_del(new /obj/item/explosive/plastic, WEAR_IN_BACK)
new_human.equip_to_slot_or_del(new /obj/item/weapon/baton, WEAR_IN_BACK)
new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar, WEAR_IN_BACK)
- new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88, WEAR_WAIST)
+ new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70, WEAR_WAIST)
new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full, WEAR_R_STORE)
switch(choice)
@@ -229,7 +229,7 @@ list("POUCHES (CHOOSE 2)", 0, null, null, null),
new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack, WEAR_BACK)
new_human.equip_to_slot_or_del(new /obj/item/weapon/baton, WEAR_IN_BACK)
new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar, WEAR_IN_BACK)
- new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88, WEAR_WAIST)
+ new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70, WEAR_WAIST)
new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/holster, WEAR_ACCESSORY)
new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/energy/taser, WEAR_IN_ACCESSORY)
new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full, WEAR_R_STORE)
@@ -1368,7 +1368,7 @@ list("POUCHES (CHOOSE 2)", 0, null, null, null),
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/m39/ap, WEAR_IN_BACK)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/m39/ap, WEAR_IN_BACK)
- new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88, WEAR_WAIST)
+ new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70, WEAR_WAIST)
new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/magazine/large/pmc_m39, WEAR_L_STORE)
new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full, WEAR_R_STORE)
diff --git a/code/modules/gear_presets/survivors/misc.dm b/code/modules/gear_presets/survivors/misc.dm
index b79df671af..f55ea6f30d 100644
--- a/code/modules/gear_presets/survivors/misc.dm
+++ b/code/modules/gear_presets/survivors/misc.dm
@@ -199,7 +199,7 @@ everything bellow isn't used or out of place.
new_human.equip_to_slot_or_del(new /obj/item/stack/sheet/metal/large_stack(new_human), WEAR_IN_BACK)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle(new_human), WEAR_IN_BACK)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle(new_human), WEAR_IN_BACK)
- new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88_near_empty, WEAR_WAIST)
+ new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70_near_empty, WEAR_WAIST)
new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full, WEAR_R_STORE)
new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m41a/corporate/no_lock, WEAR_J_STORE)
diff --git a/code/modules/gear_presets/upp.dm b/code/modules/gear_presets/upp.dm
index 5488403e72..ada9398189 100644
--- a/code/modules/gear_presets/upp.dm
+++ b/code/modules/gear_presets/upp.dm
@@ -127,7 +127,10 @@
new_human.equip_to_slot_or_del(new /obj/item/storage/box/m94, WEAR_IN_BACK) //4.25
//waist
new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/type47/np92, WEAR_WAIST)
- load_upp_shotgun(new_human)
+ new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/type23, WEAR_J_STORE)
+ new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/shotgun/heavybuck, WEAR_L_STORE)
+ new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/shotgun/heavybuck, WEAR_R_STORE)
+
/datum/equipment_preset/upp/soldier/proc/load_upp_double(mob/living/carbon/human/new_human, obj/item/clothing/under/marine/veteran/UPP/UPP)
@@ -135,7 +138,7 @@
var/rifle = prob(50) ? /obj/item/weapon/gun/rifle/type71/dual : /obj/item/weapon/gun/rifle/type71/carbine/dual
new_human.equip_to_slot_or_del(new rifle, WEAR_BACK)
//body
- new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/type23/dual, WEAR_J_STORE)
+ new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/type23, WEAR_J_STORE)
//waist
new_human.equip_to_slot_or_del(new /obj/item/storage/belt/marine/upp/full, WEAR_WAIST)
//pockets
@@ -567,7 +570,7 @@
UPP.attach_accessory(new_human, W)
for(var/i in 1 to W.hold.storage_slots)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/handful/shotgun/heavy/dragonsbreath, WEAR_IN_ACCESSORY)
- new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/type23/dragon, WEAR_J_STORE)
+ new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/type23, WEAR_J_STORE)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/handful/shotgun/heavy/dragonsbreath, WEAR_IN_JACKET)
//waist
var/uppvetsidearm = prob(50) ? /obj/item/storage/belt/gun/type47/t73 : /obj/item/storage/belt/gun/type47/np92
@@ -2572,7 +2575,7 @@
new_human.equip_to_slot_or_del(UPP, WEAR_BODY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP, WEAR_JACKET)
new_human.equip_to_slot_or_del(new /obj/item/device/binoculars, WEAR_IN_JACKET)
- new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/type23/dual, WEAR_J_STORE)
+ new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/type23, WEAR_J_STORE)
//waist
new_human.equip_to_slot_or_del(new /obj/item/storage/belt/shotgun/upp/heavybuck(new_human), WEAR_WAIST)
//limb
diff --git a/code/modules/gear_presets/uscm.dm b/code/modules/gear_presets/uscm.dm
index 3d9f8376ae..6f60809d0f 100644
--- a/code/modules/gear_presets/uscm.dm
+++ b/code/modules/gear_presets/uscm.dm
@@ -26,7 +26,7 @@
var/ert_squad = FALSE
/datum/equipment_preset/uscm/load_status(mob/living/carbon/human/new_human)
- new_human.nutrition = rand(NUTRITION_VERYLOW, NUTRITION_LOW)
+ new_human.nutrition = NUTRITION_VERYLOW
/datum/equipment_preset/uscm/load_preset(mob/living/carbon/human/new_human, randomise, count_participant)
. = ..()
@@ -108,13 +108,6 @@
minimap_icon = "private"
-/datum/equipment_preset/uscm/pfc/load_gear(mob/living/carbon/human/new_human)
- var/back_item = /obj/item/storage/backpack/marine/satchel
- if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1))
- back_item = /obj/item/storage/backpack/marine
-
- new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK)
-
/datum/equipment_preset/uscm/pfc/lesser_rank
paygrade = "ME1"
@@ -126,13 +119,6 @@
faction_group = list(FACTION_UPP)
faction = FACTION_UPP
-/datum/equipment_preset/uscm/pfc/upp/load_gear(mob/living/carbon/human/new_human)
- var/back_item = /obj/item/storage/backpack/lightpack/upp
- if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1))
- back_item = /obj/item/storage/backpack/marine
-
- new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK)
-
/datum/equipment_preset/uscm/pfc/upp/lesser_rank
paygrade = "UE1"
@@ -141,14 +127,6 @@
paygrade = "ME3"
skills = /datum/skills/pfc/recon
-/datum/equipment_preset/uscm/pfc/forecon/load_gear(mob/living/carbon/human/new_human)
- var/back_item = /obj/item/storage/backpack/marine/satchel/standard
- if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1))
- back_item = /obj/item/storage/backpack/marine/standard
-
- new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK)
-
-
/datum/equipment_preset/uscm/pfc/forecon/lesser_rank
paygrade = "ME2"
@@ -167,14 +145,6 @@
minimap_icon = "smartgunner"
-/datum/equipment_preset/uscm/sg/load_gear(mob/living/carbon/human/new_human)
- var/back_item = /obj/item/storage/backpack/marine/satchel
- if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1))
- back_item = /obj/item/storage/backpack/marine
-
- new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK)
-
-
/datum/equipment_preset/uscm/sg/lesser_rank
paygrade = "ME3"
@@ -188,13 +158,6 @@
faction_group = list(FACTION_UPP)
faction = FACTION_UPP
-/datum/equipment_preset/uscm/sg/upp/load_gear(mob/living/carbon/human/new_human)
- var/back_item = /obj/item/storage/backpack/lightpack/upp
- if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1))
- back_item = /obj/item/storage/backpack/marine
-
- new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK)
-
/datum/equipment_preset/uscm/sg/upp/lesser_rank
paygrade = "UE3"
@@ -203,35 +166,11 @@
paygrade = "ME5"
skills = /datum/skills/smartgunner/recon
-/datum/equipment_preset/uscm/sg/forecon/load_gear(mob/living/carbon/human/new_human)
- var/back_item = /obj/item/storage/backpack/marine/satchel/standard
- if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1))
- back_item = /obj/item/storage/backpack/marine/standard
-
- new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK)
-
/datum/equipment_preset/uscm/sg/forecon/lesser_rank
paygrade = "ME4"
//*****************************************************************************************************/
-/datum/equipment_preset/uscm/sg/full
- name = "USCM Squad Smartgunner"
- flags = EQUIPMENT_PRESET_EXTRA|EQUIPMENT_PRESET_MARINE
-
-/datum/equipment_preset/uscm/sg/full/load_gear(mob/living/carbon/human/new_human)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine(new_human), WEAR_BODY)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/smartgunner(new_human), WEAR_JACKET)
- new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/smartgun(new_human), WEAR_J_STORE)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/specrag(new_human), WEAR_HEAD)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/night/m56_goggles/no_nightvision(new_human), WEAR_EYES)
- new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/smartgunner/full(new_human), WEAR_WAIST)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine(new_human), WEAR_HANDS)
-
-/datum/equipment_preset/uscm/sg/full/load_status(mob/living/carbon/human/new_human)
- return //No cryo munchies
-
/datum/equipment_preset/uscm/rto
name = "USCM Radio Telephone Operator"
flags = EQUIPMENT_PRESET_START_OF_ROUND|EQUIPMENT_PRESET_MARINE
@@ -245,13 +184,6 @@
minimap_icon = "rto"
-/datum/equipment_preset/uscm/rto/load_gear(mob/living/carbon/human/new_human)
- var/back_item = /obj/item/storage/backpack/marine/satchel
- if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1))
- back_item = /obj/item/storage/backpack/marine
-
- new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK)
-
/datum/equipment_preset/uscm/rto/lesser_rank
paygrade = "ME3"
@@ -305,7 +237,7 @@
new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/officer/tanker(new_human), WEAR_BODY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET)
new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/yellow(new_human), WEAR_HANDS)
- new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88(new_human), WEAR_WAIST)
+ new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70(new_human), WEAR_WAIST)
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/tanker(new_human), WEAR_JACKET)
new_human.equip_to_slot_or_del(new /obj/item/tool/weldpack(new_human), WEAR_BACK)
new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/tools/tank(new_human), WEAR_R_STORE)
@@ -377,14 +309,6 @@
minimap_icon = "spec"
-/datum/equipment_preset/uscm/spec/load_gear(mob/living/carbon/human/new_human)
- var/back_item = /obj/item/storage/backpack/marine/satchel
- if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1))
- back_item = /obj/item/storage/backpack/marine
-
- new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/specrag(new_human), WEAR_HEAD)
-
/datum/equipment_preset/uscm/spec/cryo
name = "USCM Cryo Squad Weapons Specialist"
auto_squad_name = SQUAD_MARINE_CRYO
@@ -435,13 +359,6 @@
utility_under = list(/obj/item/clothing/under/marine/medic)
-/datum/equipment_preset/uscm/medic/load_gear(mob/living/carbon/human/new_human)
- var/back_item = /obj/item/storage/backpack/marine/satchel/medic
- if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1))
- back_item = /obj/item/storage/backpack/marine/medic
-
- new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK)
-
/datum/equipment_preset/uscm/medic/lesser_rank
paygrade = "ME3"
@@ -454,13 +371,6 @@
faction_group = list(FACTION_UPP)
faction = FACTION_UPP
-/datum/equipment_preset/uscm/medic/upp/load_gear(mob/living/carbon/human/new_human)
- var/back_item = /obj/item/storage/backpack/lightpack/upp
- if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1))
- back_item = /obj/item/storage/backpack/marine/medic/upp
-
- new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK)
-
/datum/equipment_preset/uscm/medic/upp/lesser_rank
paygrade = "UE3"
@@ -470,13 +380,6 @@
paygrade = "ME5"
skills = /datum/skills/combat_medic/recon
-/datum/equipment_preset/uscm/medic/forecon/load_gear(mob/living/carbon/human/new_human)
- var/back_item = /obj/item/storage/backpack/marine/satchel/medic/standard
- if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1))
- back_item = /obj/item/storage/backpack/marine/medic/standard
-
- new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK)
-
/datum/equipment_preset/uscm/medic/forecon/lesser_rank
paygrade = "ME4"
@@ -494,13 +397,6 @@
skills = /datum/skills/tl
minimap_icon = "tl"
-/datum/equipment_preset/uscm/tl/load_gear(mob/living/carbon/human/new_human)
- var/back_item = /obj/item/storage/backpack/marine/satchel
- if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1))
- back_item = /obj/item/storage/backpack/marine
-
- new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK)
-
/datum/equipment_preset/uscm/tl/upp
name = "UPP Squad Sergeant"
paygrade = "UE5"
@@ -509,13 +405,6 @@
faction_group = list(FACTION_UPP)
faction = FACTION_UPP
-/datum/equipment_preset/uscm/tl/upp/load_gear(mob/living/carbon/human/new_human)
- var/back_item = /obj/item/storage/backpack/lightpack/upp
- if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1))
- back_item = /obj/item/storage/backpack/marine
-
- new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK)
-
/datum/equipment_preset/uscm/tl/forecon
name = "FORECON Assistant Squad Leader"
assignment = "Assistant Squad Leader"
@@ -523,13 +412,6 @@
role_comm_title = "aSL"
skills = /datum/skills/tl/recon
-/datum/equipment_preset/uscm/tl/forecon/load_gear(mob/living/carbon/human/new_human)
- var/back_item = /obj/item/storage/backpack/marine/satchel/standard
- if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1))
- back_item = /obj/item/storage/backpack/marine/standard
-
- new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK)
-
/*****************************************************************************************************/
/datum/equipment_preset/uscm/engineer
@@ -577,13 +459,6 @@
minimap_icon = "leader"
-/datum/equipment_preset/uscm/leader/load_gear(mob/living/carbon/human/new_human)
- var/back_item = /obj/item/storage/backpack/marine/satchel
- if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1))
- back_item = /obj/item/storage/backpack/marine
-
- new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK)
-
/datum/equipment_preset/uscm/leader/lesser_rank
paygrade = "ME6"
@@ -595,13 +470,6 @@
faction_group = list(FACTION_UPP)
faction = FACTION_UPP
-/datum/equipment_preset/uscm/leader/upp/load_gear(mob/living/carbon/human/new_human)
- var/back_item = /obj/item/storage/backpack/lightpack/upp
- if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1))
- back_item = /obj/item/storage/backpack/marine
-
- new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK)
-
/datum/equipment_preset/uscm/leader/upp/lesser_rank
paygrade = "UE6"
@@ -611,13 +479,6 @@
paygrade = "ME8"
role_comm_title = "SL"
-/datum/equipment_preset/uscm/leader/forecon/load_gear(mob/living/carbon/human/new_human)
- var/back_item = /obj/item/storage/backpack/marine/satchel/standard
- if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1))
- back_item = /obj/item/storage/backpack/marine/standard
-
- new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK)
-
/datum/equipment_preset/uscm/leader/forecon/lesser_rank
paygrade = "ME7"
@@ -794,20 +655,16 @@
new_human.equip_to_slot_or_del(new new_mask, WEAR_FACE)
/datum/equipment_preset/uscm/smartgunner_equipped/random/spawn_marine_sidearm(mob/living/carbon/human/new_human)
- var/sidearm = pick("m4a3", "mod88", "vp78", "m44")
+ var/sidearm = pick("m4a3", "vp70", "m44")
switch(sidearm)
if("m4a3")
new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/m4a3(new_human), WEAR_IN_ACCESSORY)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol(new_human), WEAR_IN_ACCESSORY)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol(new_human), WEAR_IN_ACCESSORY)
- if("mod88")
- new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/mod88(new_human), WEAR_IN_ACCESSORY)
- new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/mod88(new_human), WEAR_IN_ACCESSORY)
- new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/mod88(new_human), WEAR_IN_ACCESSORY)
- if("vp78")
- new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/vp78(new_human), WEAR_IN_ACCESSORY)
- new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/vp78(new_human), WEAR_IN_ACCESSORY)
- new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/vp78(new_human), WEAR_IN_ACCESSORY)
+ if("vp70")
+ new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/vp70(new_human), WEAR_IN_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/vp70(new_human), WEAR_IN_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/vp70(new_human), WEAR_IN_ACCESSORY)
if("m44")
new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/revolver/m44(new_human), WEAR_IN_ACCESSORY)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver(new_human), WEAR_IN_ACCESSORY)
diff --git a/code/modules/gear_presets/uscm_event.dm b/code/modules/gear_presets/uscm_event.dm
index 5f7c40c016..690400ee48 100644
--- a/code/modules/gear_presets/uscm_event.dm
+++ b/code/modules/gear_presets/uscm_event.dm
@@ -293,7 +293,7 @@
new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/mp/provost/senior(new_human), WEAR_BODY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET)
new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/black(new_human), WEAR_HANDS)
- new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88(new_human), WEAR_WAIST)
+ new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70(new_human), WEAR_WAIST)
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/jacket/marine/provost(new_human), WEAR_JACKET)
if(new_human.disabilities & NEARSIGHTED)
new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud/prescription(new_human), WEAR_EYES)
diff --git a/code/modules/gear_presets/uscm_police.dm b/code/modules/gear_presets/uscm_police.dm
index 108aca26d9..619b88a1b6 100644
--- a/code/modules/gear_presets/uscm_police.dm
+++ b/code/modules/gear_presets/uscm_police.dm
@@ -48,9 +48,9 @@
new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine(new_human), WEAR_BODY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/armband/mpsec(new_human), WEAR_ACCESSORY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/holster(new_human), WEAR_ACCESSORY)
- new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/mod88(new_human), WEAR_IN_ACCESSORY)
- new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/mod88/normalpoint(new_human), WEAR_IN_ACCESSORY)
- new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/mod88/normalpoint(new_human), WEAR_IN_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/vp70(new_human), WEAR_IN_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/vp70(new_human), WEAR_IN_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/vp70(new_human), WEAR_IN_ACCESSORY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET)
new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine(new_human), WEAR_HANDS)
new_human.equip_to_slot_or_del(new /obj/item/storage/belt/security/MP/full(new_human), WEAR_WAIST)
@@ -110,9 +110,9 @@
new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine(new_human), WEAR_BODY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/armband/mpsec(new_human), WEAR_ACCESSORY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/holster(new_human), WEAR_ACCESSORY)
- new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/mod88(new_human), WEAR_IN_ACCESSORY)
- new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/mod88/normalpoint(new_human), WEAR_IN_ACCESSORY)
- new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/mod88/normalpoint(new_human), WEAR_IN_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/vp70(new_human), WEAR_IN_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/vp70(new_human), WEAR_IN_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/vp70(new_human), WEAR_IN_ACCESSORY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET)
new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine(new_human), WEAR_HANDS)
new_human.equip_to_slot_or_del(new /obj/item/storage/belt/security/MP/full(new_human), WEAR_WAIST)
@@ -172,9 +172,9 @@
new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine(new_human), WEAR_BODY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/armband/mpsec(new_human), WEAR_ACCESSORY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/holster(new_human), WEAR_ACCESSORY)
- new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/mod88(new_human), WEAR_IN_ACCESSORY)
- new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/mod88/normalpoint(new_human), WEAR_IN_ACCESSORY)
- new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/mod88/normalpoint(new_human), WEAR_IN_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/vp70(new_human), WEAR_IN_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/vp70(new_human), WEAR_IN_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/vp70(new_human), WEAR_IN_ACCESSORY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET)
new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine(new_human), WEAR_HANDS)
new_human.equip_to_slot_or_del(new /obj/item/storage/belt/security/MP/full(new_human), WEAR_WAIST)
diff --git a/code/modules/gear_presets/uscm_ship.dm b/code/modules/gear_presets/uscm_ship.dm
index 905fa8265b..630669ad32 100644
--- a/code/modules/gear_presets/uscm_ship.dm
+++ b/code/modules/gear_presets/uscm_ship.dm
@@ -564,7 +564,7 @@
name = "USCM Platoon Commander (PltCo)"
flags = EQUIPMENT_PRESET_START_OF_ROUND|EQUIPMENT_PRESET_MARINE
- idtype = /obj/item/card/id/silver
+ idtype = /obj/item/card/id/dogtag
assignment = JOB_SO
rank = JOB_SO
paygrade = "MO2"
@@ -579,32 +579,39 @@
. = ..()
access = get_access(access_list)
-/datum/equipment_preset/uscm_ship/so/load_gear(mob/living/carbon/human/new_human)
+/datum/equipment_preset/uscm_ship/so/load_status(mob/living/carbon/human/new_human, client/mob_client)
+ . = ..()
+ new_human.nutrition = NUTRITION_VERYLOW
+ if(!new_human.client)
+ return
+
+ add_verb(new_human.client, /client/proc/commander_rename_platoon)
+
+/datum/equipment_preset/uscm_ship/so/lesser_rank
+ paygrade = "MO1"
+
+/datum/equipment_preset/uscm_ship/so/equipped
+ name = "USCM Platoon Commander (Equipped)"
+ flags = EQUIPMENT_PRESET_EXTRA|EQUIPMENT_PRESET_MARINE
+
+/datum/equipment_preset/uscm_ship/so/equipped/load_status(mob/living/carbon/human/new_human)
+ new_human.nutrition = NUTRITION_NORMAL
+
+/datum/equipment_preset/uscm_ship/so/equipped/load_gear(mob/living/carbon/human/new_human)
var/back_item = /obj/item/storage/backpack/satchel
if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1))
back_item = /obj/item/storage/backpack/marine
new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/mcom(new_human), WEAR_L_EAR)
new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/officer/bridge(new_human), WEAR_BODY)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/dress(new_human), WEAR_FEET)
- new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88(new_human), WEAR_WAIST)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET)
+ new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70(new_human), WEAR_WAIST)
new_human.equip_to_slot_or_del(new /obj/item/clothing/head/cmcap/bridge(new_human), WEAR_HEAD)
new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK)
new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/medium(new_human), WEAR_L_STORE)
new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/medium(new_human), WEAR_R_STORE)
new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range(new_human), WEAR_L_HAND)
-/datum/equipment_preset/uscm_ship/so/load_status(mob/living/carbon/human/new_human, client/mob_client)
- . = ..()
-
- if(!new_human.client)
- return
-
- add_verb(new_human.client, /client/proc/commander_rename_platoon)
-
-/datum/equipment_preset/uscm_ship/so/lesser_rank
- paygrade = "MO1"
-
/datum/equipment_preset/uscm_ship/so/upp
name = "UPP Platoon Commander (PltCo)"
languages = list(LANGUAGE_RUSSIAN, LANGUAGE_ENGLISH)
@@ -613,10 +620,20 @@
faction = FACTION_UPP
access_list = ACCESS_LIST_UPP_PLATOON
-/datum/equipment_preset/uscm_ship/so/upp/load_gear(mob/living/carbon/human/new_human)
+/datum/equipment_preset/uscm_ship/so/upp/lesser_rank
+ paygrade = "UO1"
+
+/datum/equipment_preset/uscm_ship/so/upp/equipped
+ name = "UPP Platoon Commander (Equipped)"
+ flags = EQUIPMENT_PRESET_EXTRA|EQUIPMENT_PRESET_MARINE
+
+/datum/equipment_preset/uscm_ship/so/upp/equipped/load_status(mob/living/carbon/human/new_human)
+ new_human.nutrition = NUTRITION_NORMAL
+
+/datum/equipment_preset/uscm_ship/so/upp/equipped/load_gear(mob/living/carbon/human/new_human)
new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/UPP/command(new_human), WEAR_L_EAR)
new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/UPP/officer(new_human), WEAR_BODY)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/dress(new_human), WEAR_FEET)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp(new_human), WEAR_FEET)
new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/type47/np92(new_human), WEAR_WAIST)
new_human.equip_to_slot_or_del(new /obj/item/clothing/head/uppcap/peaked(new_human), WEAR_HEAD)
new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack/upp(new_human), WEAR_BACK)
@@ -624,9 +641,6 @@
new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large(new_human), WEAR_R_STORE)
new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range(new_human), WEAR_L_HAND)
-/datum/equipment_preset/uscm_ship/so/upp/lesser_rank
- paygrade = "UO1"
-
//*****************************************************************************************************/
/datum/equipment_preset/uscm_ship/sea
@@ -773,7 +787,7 @@
new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/officer/pilot(new_human), WEAR_BODY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET)
new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/yellow(new_human), WEAR_HANDS)
- new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88(new_human), WEAR_WAIST)
+ new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70(new_human), WEAR_WAIST)
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/vest/pilot(new_human), WEAR_JACKET)
new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK)
new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large(new_human), WEAR_R_STORE)
@@ -866,7 +880,7 @@
new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/officer/pilot/dcc(new_human), WEAR_BODY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET)
new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/yellow(new_human), WEAR_HANDS)
- new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88(new_human), WEAR_WAIST)
+ new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70(new_human), WEAR_WAIST)
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/light/vest/dcc(new_human), WEAR_JACKET)
new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK)
new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large(new_human), WEAR_R_STORE)
diff --git a/code/modules/gear_presets/wo.dm b/code/modules/gear_presets/wo.dm
index 81ea9b8f6a..29b2be28ce 100644
--- a/code/modules/gear_presets/wo.dm
+++ b/code/modules/gear_presets/wo.dm
@@ -309,7 +309,7 @@
new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/engineer, WEAR_BODY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife, WEAR_FEET)
new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/black, WEAR_HANDS)
- new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88, WEAR_WAIST)
+ new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70, WEAR_WAIST)
new_human.equip_to_slot_or_del(new back_item, WEAR_BACK)
new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large, WEAR_R_STORE)
new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range, WEAR_IN_R_STORE)
diff --git a/code/modules/gear_presets/wy_goons.dm b/code/modules/gear_presets/wy_goons.dm
index 5160f0bf31..53bdaa4041 100644
--- a/code/modules/gear_presets/wy_goons.dm
+++ b/code/modules/gear_presets/wy_goons.dm
@@ -79,7 +79,7 @@
new_human.equip_to_slot_or_del(new /obj/item/handcuffs/zip, WEAR_IN_BACK)
new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar, WEAR_IN_BACK)
- new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88, WEAR_WAIST)
+ new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70, WEAR_WAIST)
new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full, WEAR_R_STORE)
new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m41a/corporate, WEAR_J_STORE)
@@ -116,7 +116,7 @@
new_human.equip_to_slot_or_del(new /obj/item/handcuffs/zip, WEAR_IN_BACK)
new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar, WEAR_IN_BACK)
- new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88, WEAR_WAIST)
+ new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70, WEAR_WAIST)
new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full, WEAR_R_STORE)
new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/nsg23, WEAR_J_STORE)
@@ -150,7 +150,7 @@
new_human.equip_to_slot_or_del(new /obj/item/storage/belt/medical/lifesaver/full, WEAR_WAIST)
- new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88, WEAR_J_STORE)
+ new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70, WEAR_J_STORE)
new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/medical, WEAR_R_STORE)
new_human.equip_to_slot_or_del(new /obj/item/tool/surgery/surgical_line, WEAR_IN_R_STORE)
new_human.equip_to_slot_or_del(new /obj/item/tool/surgery/synthgraft, WEAR_IN_R_STORE)
diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm
index c394431c72..1496ce2595 100644
--- a/code/modules/mob/living/carbon/human/human.dm
+++ b/code/modules/mob/living/carbon/human/human.dm
@@ -862,6 +862,7 @@
nutrition -= 40
apply_damage(-3, TOX)
addtimer(VARSET_CALLBACK(src, lastpuke, FALSE), 35 SECONDS)
+ reagents.remove_any(rand(15, 30))
/mob/living/carbon/human/proc/get_visible_gender()
if(wear_suit && wear_suit.flags_inv_hide & HIDEJUMPSUIT && ((head && head.flags_inv_hide & HIDEMASK) || wear_mask))
diff --git a/code/modules/mob/living/carbon/human/human_attackhand.dm b/code/modules/mob/living/carbon/human/human_attackhand.dm
index fa35cb1fe9..a1c3b5a4d0 100644
--- a/code/modules/mob/living/carbon/human/human_attackhand.dm
+++ b/code/modules/mob/living/carbon/human/human_attackhand.dm
@@ -22,7 +22,7 @@
return 1
// If unconcious with oxygen damage, do CPR. If dead, we do CPR
- if(!(stat == UNCONSCIOUS && getOxyLoss() > 0) && !(stat == DEAD))
+ if(!((stat == UNCONSCIOUS || (locate(/datum/effects/crit) in effects_list)) && getOxyLoss() > 0) && !(stat == DEAD))
help_shake_act(attacking_mob)
return 1
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 b84c8e9d24..32dd9ddef8 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
@@ -7,7 +7,7 @@
if(stat != DEAD) //the dead get zero fullscreens
- if(stat == UNCONSCIOUS)
+ if(stat == UNCONSCIOUS || (locate(/datum/effects/crit) in effects_list))
var/severity = 0
switch(health)
if(-20 to -10) severity = 1
diff --git a/code/modules/mob/living/carbon/human/life/handle_regular_status_updates.dm b/code/modules/mob/living/carbon/human/life/handle_regular_status_updates.dm
index 5b37238d28..65f98d928e 100644
--- a/code/modules/mob/living/carbon/human/life/handle_regular_status_updates.dm
+++ b/code/modules/mob/living/carbon/human/life/handle_regular_status_updates.dm
@@ -42,7 +42,8 @@
//UNCONSCIOUS. NO-ONE IS HOME
if(regular_update && ((getOxyLoss() > 50)))
- apply_effect(3, PARALYZE)
+ KnockDown(3)
+ Stun(3)
if((src.species.flags & HAS_HARDCRIT) && HEALTH_THRESHOLD_CRIT > health)
var/already_in_crit = FALSE
diff --git a/code/modules/mob/living/carbon/xenomorph/XenoProcs.dm b/code/modules/mob/living/carbon/xenomorph/XenoProcs.dm
index d00b08f183..247d4e654d 100644
--- a/code/modules/mob/living/carbon/xenomorph/XenoProcs.dm
+++ b/code/modules/mob/living/carbon/xenomorph/XenoProcs.dm
@@ -684,8 +684,10 @@
return "Moderate"
if(3 to 3.9)
return "Strong"
- if(4 to INFINITY)
+ if(4 to 4.9)
return "Very Strong"
+ if(4.9 to INFINITY)
+ return "Overwhelming"
/mob/living/carbon/xenomorph/proc/start_tracking_resin_mark(obj/effect/alien/resin/marker/target)
if(!target)
diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/king/king_abilities.dm b/code/modules/mob/living/carbon/xenomorph/abilities/king/king_abilities.dm
new file mode 100644
index 0000000000..68d9c21e00
--- /dev/null
+++ b/code/modules/mob/living/carbon/xenomorph/abilities/king/king_abilities.dm
@@ -0,0 +1,153 @@
+/// 3 x 3 damage centred on the xenomorph
+/datum/action/xeno_action/onclick/rend
+ name = "Rend"
+ action_icon_state = "rav_eviscerate"
+ ability_name = "rend"
+ macro_path = /datum/action_xeno_action/verb/verb_rend
+ xeno_cooldown = 2.5 SECONDS
+ plasma_cost = 25
+ ability_primacy = XENO_PRIMARY_ACTION_1
+
+ var/damage = 25
+ var/list/humans_near = list()
+
+ default_ai_action = TRUE
+ ai_prob_chance = 100
+
+ var/slash_sounds = list('sound/weapons/alien_claw_flesh1.ogg', 'sound/weapons/alien_claw_flesh2.ogg', 'sound/weapons/alien_claw_flesh3.ogg', 'sound/weapons/alien_claw_flesh4.ogg', 'sound/weapons/alien_claw_flesh5.ogg', 'sound/weapons/alien_claw_flesh6.ogg')
+
+/datum/action/xeno_action/onclick/rend/process_ai(mob/living/carbon/xenomorph/X, delta_time)
+ for(var/mob/living/carbon/human/inrange in view(X))
+ var/distance_check = get_dist(X, inrange)
+
+ if(distance_check < 3)
+ humans_near |= inrange
+ continue
+
+ if(!DT_PROB(ai_prob_chance, delta_time) || length(humans_near) < 2 || get_dist(X, X.current_target) < 3 || X.action_busy)
+ humans_near.RemoveAll()
+ return
+
+ use_ability_async()
+ humans_near.RemoveAll()
+
+
+/// Screech which puts out lights in a 7 tile radius, slows and dazes.
+/datum/action/xeno_action/onclick/doom
+ name = "Doom"
+ action_icon_state = "screech"
+ ability_name = "doom"
+ macro_path = /datum/action_xeno_action/verb/verb_doom
+ xeno_cooldown = 45 SECONDS
+ plasma_cost = 50
+ ability_primacy = XENO_PRIMARY_ACTION_2
+
+ var/daze_length_seconds = 1
+ var/slow_length_seconds = 4
+ var/list/humans_near = list()
+
+ default_ai_action = TRUE
+ ai_prob_chance = 80
+
+/datum/action/xeno_action/onclick/doom/process_ai(mob/living/carbon/xenomorph/X, delta_time)
+ for(var/mob/living/carbon/human/inrange in view(X))
+ var/distance_check = get_dist(X, inrange)
+
+ if(distance_check < 5)
+ humans_near |= inrange
+ continue
+
+ if(!DT_PROB(ai_prob_chance, delta_time) || length(humans_near) < 3 || get_dist(X, X.current_target) > 3 || X.action_busy)
+ humans_near.RemoveAll()
+ return
+
+ use_ability_async()
+ humans_near.RemoveAll()
+
+/// Leap ability, crashing down dealing major damage to mobs and structures in the area.
+/datum/action/xeno_action/onclick/destroy
+ name = "Destroy"
+ action_icon_state = "charge"
+ ability_name = "destroy"
+ macro_path = /datum/action/xeno_action/verb/verb_destroy
+ action_type = XENO_ACTION_ACTIVATE
+ xeno_cooldown = 15 SECONDS
+ plasma_cost = 0
+ ability_primacy = XENO_PRIMARY_ACTION_3
+
+ var/range = 7
+ var/leaping = FALSE
+
+ default_ai_action = TRUE
+ ai_prob_chance = 60
+
+/datum/action/xeno_action/onclick/destroy/process_ai(mob/living/carbon/xenomorph/X, delta_time)
+ var/distance_check = get_dist(X, X.current_target)
+
+ if(distance_check > 7)
+ return
+
+ if(!DT_PROB(ai_prob_chance, delta_time) || get_dist(X, X.current_target) < 2 || X.action_busy)
+ return
+
+ use_ability_async()
+
+/// Shield ability, limits the amount of damage from a single instance of damage to 10% of the xenomorph's max health.
+/datum/action/xeno_action/onclick/king_shield
+ name = "Bulwark of the Hive"
+ action_icon_state = "soak"
+ ability_name = "legion_shield"
+ macro_path = /datum/action_xeno_action/verb/king_shield
+ action_type = XENO_ACTION_ACTIVATE
+ xeno_cooldown = 60 SECONDS
+ plasma_cost = 0
+ ability_primacy = XENO_PRIMARY_ACTION_4
+
+ default_ai_action = TRUE
+ ai_prob_chance = 80
+
+ var/shield_duration = 10 SECONDS
+ var/area_of_effect = 6
+ var/shield_amount = 100
+ var/list/xenos_near = list()
+
+/datum/action/xeno_action/onclick/king_shield/process_ai(mob/living/carbon/xenomorph/X, delta_time)
+ for(var/mob/living/carbon/xenomorph/inrange in view(X))
+ var/distance_check = get_dist(X, inrange)
+
+ if(distance_check < 5)
+ xenos_near |= inrange
+ continue
+
+ if(!DT_PROB(ai_prob_chance, delta_time) || length(xenos_near) < 4 || X.action_busy)
+ xenos_near.RemoveAll()
+ return
+
+ use_ability_async()
+ xenos_near.RemoveAll()
+
+/datum/action/xeno_action/onclick/king_frenzy
+ name = "King_frenzy"
+ action_icon_state = "charge_spit"
+ ability_name = "King Frenzy"
+ macro_path = /datum/action/xeno_action/verb/verb_charge_spit
+ ability_primacy = XENO_PRIMARY_ACTION_5
+ action_type = XENO_ACTION_ACTIVATE
+ plasma_cost = 50
+ xeno_cooldown = 6 SECONDS
+
+ // Config
+ var/duration = 40
+ var/speed_buff_amount = 1.2 // Go from shit slow to kindafast
+
+ var/buffs_active = FALSE
+
+ default_ai_action = TRUE
+ ai_prob_chance = 80
+
+/datum/action/xeno_action/onclick/king_frenzy/process_ai(mob/living/carbon/xenomorph/X, delta_time)
+
+ if(!DT_PROB(ai_prob_chance, delta_time) || get_dist(X, X.current_target) < 2 || X.action_busy)
+ return
+
+ use_ability_async()
diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/king/king_macros.dm b/code/modules/mob/living/carbon/xenomorph/abilities/king/king_macros.dm
new file mode 100644
index 0000000000..2df965861e
--- /dev/null
+++ b/code/modules/mob/living/carbon/xenomorph/abilities/king/king_macros.dm
@@ -0,0 +1,27 @@
+/datum/action_xeno_action/verb/verb_rend()
+ set category = "Alien"
+ set name = "Rend"
+ set hidden = TRUE
+ var/action_name = "Rend"
+ handle_xeno_macro(src, action_name)
+
+/datum/action/xeno_action/verb/verb_destroy()
+ set category = "Alien"
+ set name = "Destroy"
+ set hidden = TRUE
+ var/action_name = "Destroy"
+ handle_xeno_macro(src, action_name)
+
+/datum/action_xeno_action/verb/verb_doom()
+ set category = "Alien"
+ set name = "Doom"
+ set hidden = TRUE
+ var/action_name = "Doom"
+ handle_xeno_macro(src, action_name)
+
+/datum/action_xeno_action/verb/king_shield()
+ set category = "Alien"
+ set name = "Bulwark"
+ set hidden = TRUE
+ var/action_name = "Bulwark"
+ handle_xeno_macro(src, action_name)
diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/king/king_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/king/king_powers.dm
new file mode 100644
index 0000000000..738d49aba4
--- /dev/null
+++ b/code/modules/mob/living/carbon/xenomorph/abilities/king/king_powers.dm
@@ -0,0 +1,383 @@
+/*
+ REND ABILITY
+ 3x3 aoe damage centred on the King. Basic ability, spammable, low damage.
+*/
+
+/datum/action/xeno_action/onclick/rend/use_ability()
+ var/mob/living/carbon/xenomorph/xeno = owner
+ XENO_ACTION_CHECK_USE_PLASMA(xeno)
+
+ xeno.spin_circle()
+ xeno.emote("hiss")
+ for(var/mob/living/carbon/carbon in orange(2, xeno) - xeno)
+
+ if(carbon.stat == DEAD)
+ continue
+ if(xeno.can_not_harm(carbon))
+ continue
+ carbon.apply_armoured_damage(damage)
+ carbon.last_damage_data = create_cause_data(initial(xeno.name), xeno)
+ xeno.flick_attack_overlay(carbon, "tail")
+ to_chat(carbon, SPAN_DANGER("[xeno] cuts you with its razor sharp tail."))
+ log_attack("[key_name(xeno)] hit [key_name(carbon)] with [name]")
+ playsound(carbon, pick(slash_sounds), 30, TRUE)
+
+ xeno.visible_message(SPAN_DANGER("[xeno] slices around itself!"), SPAN_NOTICE("We slice around ourself!"))
+ apply_cooldown()
+ ..()
+
+
+
+/*
+ DOOM ABILITY
+ King channels for a while shrieks which turns off all lights in the vicinity and applies a mild daze
+ Medium cooldown soft CC
+*/
+
+/datum/action/xeno_action/onclick/doom/use_ability(atom/target)
+ var/mob/living/carbon/xenomorph/xeno = owner
+ XENO_ACTION_CHECK_USE_PLASMA(xeno)
+
+ playsound(xeno, 'sound/voice/deep_alien_screech2.ogg', 75, 0, status = 0)
+ xeno.visible_message(SPAN_XENOHIGHDANGER("[xeno] emits an raspy guttural roar!"))
+ xeno.create_shriekwave()
+
+ var/datum/effect_system/smoke_spread/king_doom/smoke_gas = new /datum/effect_system/smoke_spread/king_doom
+ smoke_gas.set_up(7, 0, get_turf(xeno), null, 6)
+ smoke_gas.start()
+
+ for(var/atom/current_atom as anything in view(owner))
+ if(istype(current_atom, /obj/item/device))
+ var/obj/item/device/potential_lightsource = current_atom
+
+ var/time_to_extinguish = get_dist(owner, potential_lightsource) DECISECONDS
+
+ //Flares
+ if(istype(potential_lightsource, /obj/item/device/flashlight/flare))
+ var/obj/item/device/flashlight/flare/flare = potential_lightsource
+ addtimer(CALLBACK(flare, TYPE_PROC_REF(/obj/item/device/flashlight/flare/, burn_out)), time_to_extinguish)
+
+ //Flashlights
+ if(istype(potential_lightsource, /obj/item/device/flashlight))
+ var/obj/item/device/flashlight/flashlight = potential_lightsource
+ addtimer(CALLBACK(flashlight, TYPE_PROC_REF(/obj/item/device/flashlight, turn_off_light)), time_to_extinguish)
+
+ else if(ishuman(current_atom))
+ // "Confuse" and slow humans in the area and turn off their armour lights.
+ var/mob/living/carbon/human/human = current_atom
+
+ human.EyeBlur(daze_length_seconds)
+ human.Daze(daze_length_seconds)
+ human.Superslow(slow_length_seconds)
+ human.add_client_color_matrix("doom", 99, color_matrix_multiply(color_matrix_saturation(0), color_matrix_from_string("#eeeeee")))
+ human.overlay_fullscreen("doom", /atom/movable/screen/fullscreen/flash/noise/nvg)
+ addtimer(CALLBACK(human, TYPE_PROC_REF(/mob, remove_client_color_matrix), "doom", 1 SECONDS), 5 SECONDS)
+ addtimer(CALLBACK(human, TYPE_PROC_REF(/mob, clear_fullscreen), "doom", 0.5 SECONDS), 5 SECONDS)
+
+ to_chat(human, SPAN_HIGHDANGER("[xeno]'s roar overwhelms your entire being!"))
+ shake_camera(human, 6, 1)
+
+ var/time_to_extinguish = get_dist(owner, human) SECONDS
+ var/obj/item/clothing/suit/suit = human.get_item_by_slot(WEAR_JACKET)
+ if(istype(suit, /obj/item/clothing/suit/storage/marine))
+ var/obj/item/clothing/suit/storage/marine/armour = suit
+ addtimer(CALLBACK(armour, TYPE_PROC_REF(/atom, turn_light), null, FALSE), time_to_extinguish)
+
+ if(!istype(current_atom, /mob/dead))
+ var/power = current_atom.light_power
+ var/range = current_atom.light_range
+ if(power > 0 && range > 0)
+ if(current_atom.light_system != MOVABLE_LIGHT)
+ current_atom.set_light(l_range=0)
+ addtimer(CALLBACK(current_atom, TYPE_PROC_REF(/atom, set_light), range, power), 10 SECONDS)
+ else
+ current_atom.set_light_range(0)
+ addtimer(CALLBACK(current_atom, TYPE_PROC_REF(/atom, set_light_range), range), 10 SECONDS)
+
+
+ apply_cooldown()
+ ..()
+
+/*
+ BULWARK ABILITY - AoE shield
+ Long cooldown defensive ability, provides a shield which caps damage taken to 10% of the xeno's max health per individual source of damage.
+*/
+
+/datum/action/xeno_action/onclick/king_shield/use_ability()
+ var/mob/living/carbon/xenomorph/xeno = owner
+
+ XENO_ACTION_CHECK_USE_PLASMA(xeno)
+
+
+ playsound(xeno.loc, 'sound/voice/deep_alien_screech.ogg', 50, 0, status = 0)
+ // Add our shield
+ start_shield(xeno)
+
+ // Add other xeno's shields in AoE range
+ for(var/mob/living/carbon/xenomorph/xeno_in_aoe in range(area_of_effect, xeno))
+ if(xeno_in_aoe == xeno)
+ continue
+ if(xeno_in_aoe.stat == DEAD)
+ continue
+ if(xeno_in_aoe.hivenumber != xeno.hivenumber)
+ continue
+ start_shield(xeno_in_aoe)
+ xeno.beam(xeno_in_aoe, "purple_lightning", time = 4 SECONDS)
+
+ apply_cooldown()
+ return ..()
+
+/datum/action/xeno_action/onclick/king_shield/proc/start_shield(mob/living/carbon/xenomorph/xeno)
+ var/datum/xeno_shield/shield = xeno.add_xeno_shield(shield_amount, XENO_SHIELD_SOURCE_KING_BULWARKSPELL, /datum/xeno_shield/king_shield)
+ if(shield)
+ xeno.create_shield(shield_duration, "purple_animated_shield_full")
+
+
+/*
+ DESTROY ABILITY
+ King leaps into the air and crashes down damaging cades and mobs in a 3x3 area centred on him.
+ Long cooldown high damage ability, massive damage against cades, highly telegraphed.
+*/
+
+#define LEAP_HEIGHT 210 //how high up leaps go, in pixels
+#define LEAP_DIRECTION_CHANGE_RANGE 5 //the range our x has to be within to not change the direction we slam from
+
+/datum/action/xeno_action/onclick/destroy/use_ability(mob/living/target)
+ var/mob/living/carbon/xenomorph/xeno = owner
+ target = xeno.current_target
+ XENO_ACTION_CHECK(xeno)
+
+ if(get_dist(owner, target) > range)
+ to_chat(xeno, SPAN_XENONOTICE("Sorry bud, you can't use this ability!"))
+ return
+
+ var/turf/target_turf = get_turf(target)
+
+ if(!target_turf || target_turf.density)
+ return
+
+ if(istype(target_turf, /turf/open/space))
+ return
+
+ if(istype(target, /obj/vehicle/multitile))
+ return
+
+ var/list/leap_line = get_line(xeno, target)
+ for(var/turf/jump_turf in leap_line)
+ if(jump_turf.density)
+ return
+
+ for(var/obj/structure/possible_blocker in jump_turf)
+ if(possible_blocker.density && !possible_blocker.throwpass)
+ return
+
+ if(!check_and_use_plasma_owner())
+ to_chat(xeno, SPAN_XENONOTICE("We don't have enough plasma to use [name]."))
+ return
+
+ var/turf/template_turf = get_step(target_turf, SOUTHWEST)
+
+ to_chat(xeno, SPAN_XENONOTICE("Our muscles tense as we prepare ourself for a giant leap."))
+ ADD_TRAIT(owner, TRAIT_IMMOBILIZED, "WaitBeforeMove") // idk, that probably works
+ xeno.make_jittery(1 SECONDS)
+ if(!do_after(xeno, 1 SECONDS, INTERRUPT_ALL, BUSY_ICON_HOSTILE))
+ to_chat(xeno, SPAN_XENONOTICE("We relax our muslces and end our leap."))
+ return
+ if(leaping || !target)
+ return
+ // stop target movement
+ leaping = TRUE
+ ADD_TRAIT(owner, TRAIT_UNDENSE, "Destroy")
+ ADD_TRAIT(owner, TRAIT_IMMOBILIZED, "Destroy")
+ owner.visible_message(SPAN_WARNING("[owner] takes a giant leap into the air!"))
+
+ var/negative
+ var/initial_x = owner.x
+ if(target.x < initial_x) //if the target's x is lower than ours, go to the left
+ negative = TRUE
+ else if(target.x > initial_x)
+ negative = FALSE
+ else if(target.x == initial_x) //if their x is the same, pick a direction
+ negative = prob(50)
+
+ owner.face_atom(target)
+ owner.emote("roar")
+
+ //Initial visual
+ var/obj/effect/temp_visual/king_leap/leap_visual = new(owner.loc, negative, owner.dir)
+ new /obj/effect/xenomorph/xeno_telegraph/king_attack_template(template_turf, 20)
+
+ negative = !negative //invert it for the descent later
+
+ var/oldtransform = owner.transform
+ owner.alpha = 255
+ animate(owner, alpha = 0, transform = matrix()*0.9, time = 3, easing = BOUNCE_EASING)
+ for(var/i in 1 to 3)
+ sleep(1 DECISECONDS)
+ if(QDELETED(owner) || owner.stat == DEAD) //we got hit and died, rip us
+
+ //Initial effect
+ qdel(leap_visual)
+
+ if(owner.stat == DEAD)
+ leaping = FALSE
+ animate(owner, alpha = 255, transform = oldtransform, time = 0, flags = ANIMATION_END_NOW) //reset immediately
+ return
+
+ owner.mouse_opacity = MOUSE_OPACITY_TRANSPARENT
+ SLEEP_CHECK_DEATH(7, owner)
+
+ while(target_turf && owner.loc != target_turf)
+ owner.forceMove(get_step(owner, get_dir(owner, target_turf)))
+ SLEEP_CHECK_DEATH(0.5, owner)
+
+ animate(owner, alpha = 100, transform = matrix()*0.7, time = 7)
+ var/descentTime = 3
+
+ if(negative)
+ if(ISINRANGE(owner.x, initial_x + 1, initial_x + LEAP_DIRECTION_CHANGE_RANGE))
+ negative = FALSE
+ else
+ if(ISINRANGE(owner.x, initial_x - LEAP_DIRECTION_CHANGE_RANGE, initial_x - 1))
+ negative = TRUE
+
+ new /obj/effect/temp_visual/king_leap/end(owner.loc, negative, owner.dir)
+
+ SLEEP_CHECK_DEATH(descentTime, owner)
+ animate(owner, alpha = 255, transform = oldtransform, descentTime)
+ owner.mouse_opacity = initial(owner.mouse_opacity)
+ playsound(owner.loc, 'sound/effects/meteorimpact.ogg', 200, TRUE)
+
+ /// Effects for landing
+ new /obj/effect/temp_visual/heavy_impact(owner.loc)
+ for(var/step in CARDINAL_ALL_DIRS)
+ new /obj/effect/temp_visual/heavy_impact(get_step(owner.loc, step))
+
+ // Actual Damaging Effects - Add stuff for cades - NEED TELEGRAPHS NEED EFFECTS
+
+ // Mobs first high damage and knockback away from centre
+ for(var/mob/living/carbon/carbon in orange(2, owner) - owner)
+ if(xeno.can_not_harm(carbon))
+ continue
+ carbon.adjustBruteLoss(75)
+ if(!QDELETED(carbon)) // Some mobs are deleted on death
+ log_attack("[key_name(xeno)] hit [key_name(carbon)] with [name]")
+ carbon.last_damage_data = create_cause_data(initial(xeno.name), xeno)
+ var/throw_dir = get_dir(owner, carbon)
+ if(carbon.loc == owner.loc)
+ throw_dir = pick(GLOB.alldirs)
+ var/throwtarget = get_edge_target_turf(owner, throw_dir)
+ carbon.throw_atom(throwtarget, 2, SPEED_REALLY_FAST, owner, TRUE)
+ carbon.KnockDown(0.5)
+ xeno.visible_message(SPAN_WARNING("[carbon] is thrown clear of [owner]!"))
+
+ // Any items get thrown away
+ for(var/obj/item/item in orange(2, owner))
+ if(!QDELETED(item))
+ var/throw_dir = get_dir(owner, item)
+ if(item.loc == owner.loc)
+ throw_dir = pick(GLOB.alldirs)
+ var/throwtarget = get_edge_target_turf(owner, throw_dir)
+ item.throw_atom(throwtarget, 2, SPEED_REALLY_FAST, owner, TRUE)
+
+ for(var/obj/structure/structure in orange(2, owner))
+ structure.ex_act(300, get_dir(owner, structure))
+
+ for(var/mob/living in range(7, owner))
+ shake_camera(living, 15, 1)
+
+ REMOVE_TRAIT(owner, TRAIT_UNDENSE, "Destroy")
+ REMOVE_TRAIT(owner, TRAIT_IMMOBILIZED, "Destroy")
+ REMOVE_TRAIT(owner, TRAIT_IMMOBILIZED, "WaitBeforeMove")
+
+ SLEEP_CHECK_DEATH(1, owner)
+ leaping = FALSE
+ apply_cooldown()
+ ..()
+
+/datum/action/xeno_action/onclick/destroy/proc/second_template(turf/template_turf)
+ new /obj/effect/xenomorph/xeno_telegraph/king_attack_template(template_turf, 10)
+
+/obj/effect/temp_visual/king_leap
+ icon = 'icons/mob/xenos/king.dmi'
+ icon_state = "Normal King Charging"
+ layer = 4.7
+ plane = -4
+ pixel_x = -32
+ duration = 2
+ randomdir = FALSE
+
+/obj/effect/temp_visual/king_leap/Initialize(mapload, negative, dir)
+ . = ..()
+ setDir(dir)
+ INVOKE_ASYNC(src, PROC_REF(flight), negative)
+
+/obj/effect/temp_visual/king_leap/proc/flight(negative)
+ if(negative)
+ animate(src, pixel_x = -LEAP_HEIGHT*0.1, pixel_z = LEAP_HEIGHT*0.15, time = 3, easing = BOUNCE_EASING)
+ else
+ animate(src, pixel_x = LEAP_HEIGHT*0.1, pixel_z = LEAP_HEIGHT*0.15, time = 3, easing = BOUNCE_EASING)
+ sleep(0.3 SECONDS)
+ icon_state = "Normal King Charging"
+ if(negative)
+ animate(src, pixel_x = -LEAP_HEIGHT, pixel_z = LEAP_HEIGHT, time = 7)
+ else
+ animate(src, pixel_x = LEAP_HEIGHT, pixel_z = LEAP_HEIGHT, time = 7)
+
+/obj/effect/temp_visual/king_leap/end
+ pixel_x = LEAP_HEIGHT
+ pixel_z = LEAP_HEIGHT
+ duration = 2
+
+/obj/effect/temp_visual/king_leap/end/flight(negative)
+ if(negative)
+ pixel_x = -LEAP_HEIGHT
+ animate(src, pixel_x = -16, pixel_z = 0, time = 5)
+ else
+ animate(src, pixel_x = -16, pixel_z = 0, time = 5)
+
+/obj/effect/xenomorph/xeno_telegraph/king_attack_template
+ icon = 'icons/effects/96x96.dmi'
+ icon_state = "xenolanding"
+ layer = BELOW_MOB_LAYER
+
+/obj/effect/xenomorph/xeno_telegraph/king_attack_template/yellow
+ icon_state = "xenolandingyellow"
+
+/datum/action/xeno_action/onclick/king_frenzy/use_ability(atom/A)
+ var/mob/living/carbon/xenomorph/king = owner
+
+ if (!action_cooldown_check())
+ return
+
+ if (!istype(king) || !king.check_state())
+ return
+
+ if (buffs_active)
+ return
+
+ if (!check_and_use_plasma_owner())
+ return
+
+ king.create_custom_empower(icolor = "#ec7878", ialpha = 200, small_xeno = FALSE)
+ buffs_active = TRUE
+ owner.add_filter("Enrage", 1, list("type" = "outline", "color" = "#7c3e3e", "size" = 1))
+ king.speed_modifier -= speed_buff_amount
+ king.recalculate_speed()
+ owner.visible_message(SPAN_WARNING("[owner] enrages!"))
+
+ addtimer(CALLBACK(src, PROC_REF(remove_effects)), duration)
+
+ apply_cooldown()
+ return ..()
+
+/datum/action/xeno_action/onclick/king_frenzy/proc/remove_effects()
+ var/mob/living/carbon/xenomorph/king = owner
+
+ if (!istype(king))
+ return
+
+ owner.remove_filter("Enrage")
+ king.speed_modifier += speed_buff_amount
+ king.recalculate_speed()
+ buffs_active = FALSE
diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/ravager/ravager_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/ravager/ravager_powers.dm
index e876d97c4d..11054e86ce 100644
--- a/code/modules/mob/living/carbon/xenomorph/abilities/ravager/ravager_powers.dm
+++ b/code/modules/mob/living/carbon/xenomorph/abilities/ravager/ravager_powers.dm
@@ -462,7 +462,7 @@
shield.shrapnel_amount = shield_shrapnel_amount
xeno.overlay_shields()
- xeno.create_shield(shield_duration)
+ xeno.create_shield(shield_duration, "shield2")
shield_active = TRUE
button.icon_state = "template_active"
addtimer(CALLBACK(src, PROC_REF(remove_shield)), shield_duration)
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 59c9bf9d9e..d54b964b14 100644
--- a/code/modules/mob/living/carbon/xenomorph/abilities/xeno_action.dm
+++ b/code/modules/mob/living/carbon/xenomorph/abilities/xeno_action.dm
@@ -486,3 +486,6 @@
track_xeno_ability_stats()
if(action_start_message)
to_chat(owner, SPAN_NOTICE(action_start_message))
+
+#define XENO_ACTION_CHECK(X) if(!X.check_state() || !action_cooldown_check() || !check_plasma_owner(src.plasma_cost)) return
+#define XENO_ACTION_CHECK_USE_PLASMA(X) if(!X.check_state() || !action_cooldown_check() || !check_and_use_plasma_owner(src.plasma_cost)) return
diff --git a/code/modules/mob/living/carbon/xenomorph/ai/xeno_ai.dm b/code/modules/mob/living/carbon/xenomorph/ai/xeno_ai.dm
index 6e5ca5f2c1..7ccd4cde55 100644
--- a/code/modules/mob/living/carbon/xenomorph/ai/xeno_ai.dm
+++ b/code/modules/mob/living/carbon/xenomorph/ai/xeno_ai.dm
@@ -235,16 +235,12 @@
var/atom/movable/closest_target
var/smallest_distance = INFINITY
- for(var/mob/living/carbon/potential_target as anything in GLOB.alive_mob_list)
- if(!istype(potential_target))
- continue
+ var/list/valid_targets = SSxeno_ai.get_valid_targets(src)
+ for(var/atom/movable/potential_target as anything in valid_targets)
if(z != potential_target.z)
continue
- if(!potential_target.ai_can_target(src))
- continue
-
var/distance = get_dist(src, potential_target)
if(distance > ai_range)
@@ -258,59 +254,6 @@
closest_target = potential_target
smallest_distance = distance
- for(var/obj/vehicle/multitile/potential_vehicle_target as anything in GLOB.all_multi_vehicles)
- if(z != potential_vehicle_target.z)
- continue
-
- var/distance = get_dist(src, potential_vehicle_target)
-
- if(distance > ai_range)
- continue
-
- if(potential_vehicle_target.health <= 0)
- continue
-
- var/multitile_faction = potential_vehicle_target.vehicle_faction
- if(hive.faction_is_ally(multitile_faction))
- continue
-
- var/skip_vehicle
- var/list/interior_living_mobs = potential_vehicle_target.interior.get_passengers()
- for(var/mob/living/carbon/human/human_mob in interior_living_mobs)
- if(!human_mob.ai_can_target(src))
- continue
-
- skip_vehicle = FALSE
- break
-
- if(skip_vehicle)
- continue
-
- viable_targets += potential_vehicle_target
-
- if(smallest_distance <= distance)
- continue
-
- closest_target = potential_vehicle_target
- smallest_distance = distance
-
- for(var/obj/structure/machinery/defenses/potential_defense_target as anything in GLOB.all_active_defenses)
- if(z != potential_defense_target.z)
- continue
-
- var/distance = get_dist(src, potential_defense_target)
-
- if(distance > ai_range)
- continue
-
- viable_targets += potential_defense_target
-
- if(smallest_distance <= distance)
- continue
-
- closest_target = potential_defense_target
- smallest_distance = distance
-
var/extra_check_distance = round(smallest_distance * EXTRA_CHECK_DISTANCE_MULTIPLIER)
if(extra_check_distance < 1)
diff --git a/code/modules/mob/living/carbon/xenomorph/castes/king.dm b/code/modules/mob/living/carbon/xenomorph/castes/king.dm
new file mode 100644
index 0000000000..56f4001720
--- /dev/null
+++ b/code/modules/mob/living/carbon/xenomorph/castes/king.dm
@@ -0,0 +1,113 @@
+/datum/caste_datum/king
+ caste_type = XENO_CASTE_KING
+ caste_desc = "The end of the line."
+ tier = 4
+
+ melee_damage_lower = XENO_DAMAGE_TIER_6
+ melee_damage_upper = XENO_DAMAGE_TIER_8
+ melee_vehicle_damage = XENO_DAMAGE_TIER_5
+ max_health = XENO_HEALTH_KING * 4 // PVE X4 boss edition
+ plasma_gain = XENO_PLASMA_GAIN_TIER_3
+ plasma_max = XENO_PLASMA_TIER_10 * 3 // PVE X3 boss edition
+ xeno_explosion_resistance = XENO_EXPLOSIVE_ARMOR_TIER_7
+ armor_deflection = XENO_ARMOR_FACTOR_TIER_5
+ speed = XENO_SPEED_TIER_1
+
+ evolves_to = null
+ deevolves_to = null
+ evolution_allowed = FALSE
+ can_vent_crawl = FALSE
+
+ behavior_delegate_type = /datum/behavior_delegate/king_base
+
+ tackle_min = 6
+ tackle_max = 10
+
+ minimap_icon = "xenoqueen"
+
+ fire_immunity = FIRE_IMMUNITY_NO_DAMAGE
+
+/mob/living/carbon/xenomorph/king
+ caste_type = XENO_CASTE_KING
+ name = XENO_CASTE_KING
+ desc = "A massive alien covered in spines and armoured plates."
+ icon = 'icons/mob/xenos/king.dmi'
+ icon_size = 64
+ icon_state = "King Walking"
+ plasma_types = list(PLASMA_CHITIN)
+ pixel_x = -16
+ old_x = -16
+ mob_size = MOB_SIZE_IMMOBILE
+ tier = 4
+ small_explosives_stun = FALSE
+ counts_for_slots = FALSE
+
+ claw_type = CLAW_TYPE_VERY_SHARP
+ age = -1
+ aura_strength = 6
+
+ base_actions = list(
+ /datum/action/xeno_action/onclick/xeno_resting,
+ /datum/action/xeno_action/onclick/regurgitate,
+ /datum/action/xeno_action/watch_xeno,
+ /datum/action/xeno_action/activable/tail_stab,
+ /datum/action/xeno_action/onclick/rend,
+ /datum/action/xeno_action/onclick/doom,
+ /datum/action/xeno_action/onclick/destroy,
+ /datum/action/xeno_action/onclick/king_shield,
+ /datum/action/xeno_action/onclick/king_frenzy,
+ /datum/action/xeno_action/onclick/emit_pheromones,
+ )
+
+ icon_xeno = 'icons/mob/xenos/king.dmi'
+
+ bubble_icon = "alienroyal"
+
+/mob/living/carbon/xenomorph/king/Destroy()
+ UnregisterSignal(src, COMSIG_MOVABLE_PRE_MOVE)
+
+ return ..()
+
+/mob/living/carbon/xenomorph/king/Initialize()
+ . = ..()
+ AddComponent(/datum/component/footstep, 2 , 35, 11, 4, "alien_footstep_large")
+ RegisterSignal(src, COMSIG_MOVABLE_PRE_MOVE, PROC_REF(check_block))
+
+ playsound(src, 'sound/voice/alien_death_unused.ogg', 100, TRUE, 30, falloff = 5)
+ playsound(src, 'sound/voice/king_background.ogg', 100, TRUE, 30, falloff = 5)
+ for(var/mob/current_mob as anything in get_mobs_in_z_level_range(get_turf(src), 30) - src)
+ var/relative_dir = get_dir(current_mob, src)
+ var/final_dir = dir2text(relative_dir)
+ to_chat(current_mob, SPAN_HIGHDANGER("You hear a terrible roar from [final_dir ? "the [final_dir]" : "nearby"] as the VIOLENTLY ground shakes!"))
+
+/mob/living/carbon/xenomorph/king/proc/check_block(mob/king, turf/new_loc)
+ SIGNAL_HANDLER
+ for(var/mob/living/carbon/carbon in new_loc.contents)
+ if(isxeno(carbon))
+ var/mob/living/carbon/xenomorph/xeno = carbon
+ if(xeno.hivenumber == src.hivenumber)
+ xeno.KnockDown((5 DECISECONDS) / GLOBAL_STATUS_MULTIPLIER)
+ else
+ xeno.KnockDown((1 SECONDS) / GLOBAL_STATUS_MULTIPLIER)
+ else
+ if(carbon.stat != DEAD)
+ carbon.apply_armoured_damage(20)
+ carbon.KnockDown((1 SECONDS) / GLOBAL_STATUS_MULTIPLIER)
+
+ playsound(src, 'sound/weapons/alien_knockdown.ogg', 25, 1)
+
+/datum/behavior_delegate/king_base
+ name = "Base King Behavior Delegate"
+
+/mob/living/carbon/xenomorph/king/rogue
+ icon_xeno = 'icons/mob/xenos/rogueking.dmi'
+ icon = 'icons/mob/xenos/rogueking.dmi'
+
+/atom/movable/vis_obj/xeno_wounds/rogue
+ icon = 'icons/mob/xenos/roguedamage.dmi'
+
+/mob/living/carbon/xenomorph/king/rogue/Initialize(mapload, mob/living/carbon/xenomorph/old_xeno, hivenumber)
+ . = ..()
+ vis_contents -= wound_icon_holder
+ wound_icon_holder = new /atom/movable/vis_obj/xeno_wounds/rogue(null, src)
+ vis_contents += wound_icon_holder
diff --git a/code/modules/mob/living/carbon/xenomorph/update_icons.dm b/code/modules/mob/living/carbon/xenomorph/update_icons.dm
index 504cfa6685..0369bf2136 100644
--- a/code/modules/mob/living/carbon/xenomorph/update_icons.dm
+++ b/code/modules/mob/living/carbon/xenomorph/update_icons.dm
@@ -272,10 +272,10 @@
apply_overlay(X_SUIT_LAYER)
addtimer(CALLBACK(src, PROC_REF(remove_overlay), X_SUIT_LAYER), 2 SECONDS)
-/mob/living/carbon/xenomorph/proc/create_shield(duration = 10)
+/mob/living/carbon/xenomorph/proc/create_shield(duration = 10, icon_state)
remove_suit_layer()
- overlays_standing[X_SUIT_LAYER] = image("icon"='icons/mob/xenos/overlay_effects64x64.dmi', "icon_state" = "shield2")
+ overlays_standing[X_SUIT_LAYER] = image("icon"='icons/mob/xenos/overlay_effects64x64.dmi', "icon_state" = icon_state)
apply_overlay(X_SUIT_LAYER)
addtimer(CALLBACK(src, PROC_REF(remove_overlay), X_SUIT_LAYER), duration)
diff --git a/code/modules/mob/living/carbon/xenomorph/xeno_ai_interaction.dm b/code/modules/mob/living/carbon/xenomorph/xeno_ai_interaction.dm
index 40e20fc06f..9627ac60c0 100644
--- a/code/modules/mob/living/carbon/xenomorph/xeno_ai_interaction.dm
+++ b/code/modules/mob/living/carbon/xenomorph/xeno_ai_interaction.dm
@@ -138,7 +138,7 @@ At bare minimum, make sure the relevant checks from parent types gets copied in
// MOBS //
/////////////////////////////
/mob/living/ai_check_stat(mob/living/carbon/xenomorph/X)
- return stat == CONSCIOUS
+ return stat == CONSCIOUS && !(locate(/datum/effects/crit) in effects_list)
/////////////////////////////
diff --git a/code/modules/mob/new_player/preferences_setup.dm b/code/modules/mob/new_player/preferences_setup.dm
index b76f980480..bbc70fdf1f 100644
--- a/code/modules/mob/new_player/preferences_setup.dm
+++ b/code/modules/mob/new_player/preferences_setup.dm
@@ -16,8 +16,10 @@
randomize_hair_color("facial")
randomize_eyes_color()
randomize_skin_color()
- underwear = gender == MALE ? pick(GLOB.underwear_m) : pick(GLOB.underwear_f)
- undershirt = gender == MALE ? pick(GLOB.undershirt_m) : pick(GLOB.undershirt_f)
+ var/list/undershirt_options = gender == MALE ? GLOB.undershirt_m : GLOB.undershirt_f
+ undershirt = pick(undershirt_options-GLOB.undershirt_restricted)
+ var/list/underwear_options = gender == MALE ? GLOB.underwear_m : GLOB.underwear_f
+ underwear = pick(underwear_options-GLOB.underwear_restricted)
backbag = 2
age = rand(AGE_MIN,AGE_MAX)
if(H)
@@ -249,7 +251,7 @@
return J.gear_preset_whitelist["[JOB_CO][J.get_whitelist_status(RoleAuthority.roles_whitelist, owner)]"]
return /datum/equipment_preset/uscm_ship/commander
if(JOB_SO)
- return /datum/equipment_preset/uscm_ship/so
+ return /datum/equipment_preset/uscm_ship/so/equipped
if(JOB_XO)
return /datum/equipment_preset/uscm_ship/xo
if(JOB_AUXILIARY_OFFICER)
diff --git a/code/modules/mob/new_player/sprite_accessories/undershirt.dm b/code/modules/mob/new_player/sprite_accessories/undershirt.dm
index 5919b75636..5fb59cf261 100644
--- a/code/modules/mob/new_player/sprite_accessories/undershirt.dm
+++ b/code/modules/mob/new_player/sprite_accessories/undershirt.dm
@@ -1,12 +1,15 @@
GLOBAL_LIST_INIT_TYPED(undershirt_m, /datum/sprite_accessory/undershirt, setup_undershirt(MALE))
GLOBAL_LIST_INIT_TYPED(undershirt_f, /datum/sprite_accessory/undershirt, setup_undershirt(FEMALE))
+GLOBAL_LIST_INIT_TYPED(undershirt_restricted, /datum/sprite_accessory/undershirt, setup_undershirt(null, TRUE))
-/proc/setup_undershirt(restricted_gender)
+/proc/setup_undershirt(restricted_gender, restricted)
var/list/undershirt_list = list()
for(var/undershirt_type in subtypesof(/datum/sprite_accessory/undershirt))
var/datum/sprite_accessory/undershirt/undershirt_datum = new undershirt_type
if(restricted_gender && undershirt_datum.gender != restricted_gender && (undershirt_datum.gender == MALE || undershirt_datum.gender == FEMALE))
continue
+ if(restricted && !undershirt_datum.restricted)
+ continue
if(undershirt_datum.camo_conforming)
undershirt_list["[undershirt_datum.name] (Camo Conforming)"] = undershirt_datum
var/datum/sprite_accessory/undershirt/classic_datum = new undershirt_type
@@ -28,6 +31,7 @@ GLOBAL_LIST_INIT_TYPED(undershirt_f, /datum/sprite_accessory/undershirt, setup_u
/datum/sprite_accessory/undershirt
icon = 'icons/mob/humans/undershirt.dmi'
var/camo_conforming = FALSE
+ var/restricted = FALSE
/datum/sprite_accessory/undershirt/proc/get_image(mob_gender)
var/selected_icon_state = icon_state
@@ -117,3 +121,10 @@ GLOBAL_LIST_INIT_TYPED(undershirt_f, /datum/sprite_accessory/undershirt, setup_u
icon_state = "strapless"
gender = FEMALE
camo_conforming = TRUE
+
+// Restricted
+/datum/sprite_accessory/undershirt/telnyashka
+ name = "Telnyashka"
+ icon_state = "telnyashka"
+ gender = NEUTER
+ restricted = TRUE
diff --git a/code/modules/mob/new_player/sprite_accessories/underwear.dm b/code/modules/mob/new_player/sprite_accessories/underwear.dm
index 869179619e..9c98abccb2 100644
--- a/code/modules/mob/new_player/sprite_accessories/underwear.dm
+++ b/code/modules/mob/new_player/sprite_accessories/underwear.dm
@@ -1,12 +1,15 @@
GLOBAL_LIST_INIT_TYPED(underwear_m, /datum/sprite_accessory/underwear, setup_underwear(MALE))
GLOBAL_LIST_INIT_TYPED(underwear_f, /datum/sprite_accessory/underwear, setup_underwear(FEMALE))
+GLOBAL_LIST_INIT_TYPED(underwear_restricted, /datum/sprite_accessory/underwear, setup_underwear(null, TRUE))
-/proc/setup_underwear(restricted_gender)
+/proc/setup_underwear(restricted_gender, restricted)
var/list/underwear_list = list()
for(var/underwear_type in subtypesof(/datum/sprite_accessory/underwear))
var/datum/sprite_accessory/underwear/underwear_datum = new underwear_type
if(restricted_gender && underwear_datum.gender != restricted_gender && (underwear_datum.gender == MALE || underwear_datum.gender == FEMALE))
continue
+ if(restricted && !underwear_datum.restricted)
+ continue
if(underwear_datum.camo_conforming)
underwear_list["[underwear_datum.name] (Camo Conforming)"] = underwear_datum
var/datum/sprite_accessory/underwear/classic_datum = new underwear_type
@@ -28,6 +31,7 @@ GLOBAL_LIST_INIT_TYPED(underwear_f, /datum/sprite_accessory/underwear, setup_und
/datum/sprite_accessory/underwear
icon = 'icons/mob/humans/underwear.dmi'
var/camo_conforming = FALSE
+ var/restricted = FALSE
/datum/sprite_accessory/underwear/proc/get_image(mob_gender)
var/selected_icon_state = icon_state
diff --git a/code/modules/projectiles/ammo_boxes/magazine_boxes.dm b/code/modules/projectiles/ammo_boxes/magazine_boxes.dm
index 4f09acbf11..fa0112641c 100644
--- a/code/modules/projectiles/ammo_boxes/magazine_boxes.dm
+++ b/code/modules/projectiles/ammo_boxes/magazine_boxes.dm
@@ -351,19 +351,19 @@
/obj/item/ammo_box/magazine/su6/empty
empty = TRUE
-//-----------------------88M4 Pistol Mag Box-----------------------
+//-----------------------VP70 Pistol Mag Box-----------------------
-/obj/item/ammo_box/magazine/mod88
- name = "\improper magazine box (88 Mod 4 x 16)"
+/obj/item/ammo_box/magazine/vp70
+ name = "\improper magazine box (VP70 x 16)"
icon_state = "base_mod88"
flags_equip_slot = SLOT_BACK
overlay_ammo_type = "_reg"
overlay_gun_type = "_mod88"
overlay_content = "_reg"
num_of_magazines = 16
- magazine_type = /obj/item/ammo_magazine/pistol/mod88
+ magazine_type = /obj/item/ammo_magazine/pistol/vp70
-/obj/item/ammo_box/magazine/mod88/empty
+/obj/item/ammo_box/magazine/vp70/empty
empty = TRUE
//-----------------------VP78 Pistol Mag Box-----------------------
diff --git a/code/modules/projectiles/gun.dm b/code/modules/projectiles/gun.dm
index 7dc0a56943..32a0850443 100644
--- a/code/modules/projectiles/gun.dm
+++ b/code/modules/projectiles/gun.dm
@@ -1443,7 +1443,7 @@ and you're good to go.
if(projectile_to_fire.ammo.bonus_projectiles_amount)
var/obj/projectile/BP
for(var/i in 1 to projectile_to_fire.ammo.bonus_projectiles_amount)
- BP = new /obj/projectile(attacked_mob.loc, create_cause_data(initial(name), user))
+ BP = new /obj/projectile(null, create_cause_data(initial(name), user))
BP.generate_bullet(GLOB.ammo_list[projectile_to_fire.ammo.bonus_projectiles_type], 0, NO_FLAGS)
BP.accuracy = round(BP.accuracy * projectile_to_fire.accuracy/initial(projectile_to_fire.accuracy)) //Modifies accuracy of pellets per fire_bonus_projectiles.
BP.damage *= damage_buff
diff --git a/code/modules/projectiles/gun_attachables.dm b/code/modules/projectiles/gun_attachables.dm
index 6f972bdeb8..4941606a4b 100644
--- a/code/modules/projectiles/gun_attachables.dm
+++ b/code/modules/projectiles/gun_attachables.dm
@@ -1727,8 +1727,8 @@ Defined in conflicts.dm of the #defines folder.
icon = 'icons/obj/items/weapons/guns/attachments/stock.dmi'
/obj/item/attachable/stock/shotgun
- name = "\improper M37 wooden stock"
- desc = "A non-standard heavy wooden stock for the M37 Shotgun. More cumbersome than the standard issue stakeout, but reduces recoil and improves accuracy. Allegedly makes a pretty good club in a fight too."
+ name = "\improper Ithaca 37 wooden stock"
+ desc = "A standard wooden stock for the Ithaca pump-action shotgun. More cumbersome than the standard issue stakeout, but reduces recoil and improves accuracy. Allegedly makes a pretty good club in a fight too."
slot = "stock"
icon_state = "stock"
wield_delay_mod = WIELD_DELAY_FAST
@@ -1824,8 +1824,8 @@ Defined in conflicts.dm of the #defines folder.
// Doesn't give any stat additions due to the gun already having really good ones, and this is unremovable from the gun itself
/obj/item/attachable/stock/tactical
- name = "\improper MK221 tactical stock"
- desc = "A metal stock made for the MK221 tactical shotgun."
+ name = "\improper M120 tactical stock"
+ desc = "A metal stock made for the M120 tactical shotgun."
icon_state = "tactical_stock"
hud_offset_mod = 6
@@ -1859,6 +1859,33 @@ Defined in conflicts.dm of the #defines folder.
recoil_unwielded_mod = -RECOIL_AMOUNT_TIER_5
scatter_unwielded_mod = -SCATTER_AMOUNT_TIER_10
+/obj/item/attachable/stock/type23/wood
+ name = "\improper KS-29 wooden stock"
+ desc = "A standard heavy wooden stock for the KS-29 riot shotgun. Allegedly makes a pretty good club in a fight too."
+ slot = "stock"
+ icon_state = "type23_wood"
+ wield_delay_mod = WIELD_DELAY_FAST
+ pixel_shift_x = 32
+ pixel_shift_y = 15
+ hud_offset_mod = 6 //*Very* long sprite.
+ flags_attach_features = NO_FLAGS
+
+/obj/item/attachable/stock/type23/wood/New()
+ ..()
+ //it makes stuff much better when two-handed
+ accuracy_mod = HIT_ACCURACY_MULT_TIER_4
+ recoil_mod = -RECOIL_AMOUNT_TIER_4
+ scatter_mod = -SCATTER_AMOUNT_TIER_8
+ movement_onehanded_acc_penalty_mod = -MOVEMENT_ACCURACY_PENALTY_MULT_TIER_5
+ //it makes stuff much worse when one handed
+ accuracy_unwielded_mod = -HIT_ACCURACY_MULT_TIER_3
+ recoil_unwielded_mod = RECOIL_AMOUNT_TIER_4
+ scatter_unwielded_mod = SCATTER_AMOUNT_TIER_8
+ //but at the same time you are slow when 2 handed
+ aim_speed_mod = CONFIG_GET(number/slowdown_med)
+
+ matter = list("wood" = 2000)
+
/obj/item/attachable/stock/slavic
name = "wooden stock"
desc = "A non-standard heavy wooden stock for Slavic firearms."
@@ -2107,9 +2134,9 @@ Defined in conflicts.dm of the #defines folder.
flags_attach_features = NO_FLAGS
hud_offset_mod = 2
-/obj/item/attachable/stock/mod88
- name = "\improper Mod 88 burst stock"
- desc = "Increases the fire rate and burst amount on the Mod 88. Some versions act as a holster for the weapon when un-attached. This is a test item and should not be used in normal gameplay (yet)."
+/obj/item/attachable/stock/vp70
+ name = "\improper VP70 burst stock"
+ desc = "Increases the fire rate and burst amount on the VP70. Some versions act as a holster for the weapon when un-attached. This is a test item and should not be used in normal gameplay (yet)."
icon_state = "mod88_stock"
attach_icon = "mod88_stock_a"
wield_delay_mod = WIELD_DELAY_FAST
@@ -2118,7 +2145,7 @@ Defined in conflicts.dm of the #defines folder.
size_mod = 2
melee_mod = 5
-/obj/item/attachable/stock/mod88/New()
+/obj/item/attachable/stock/vp70/New()
..()
//2h
accuracy_mod = HIT_ACCURACY_MULT_TIER_3
@@ -2665,7 +2692,7 @@ Defined in conflicts.dm of the #defines folder.
name = "U1 grenade launcher"
desc = "A weapon-mounted, reloadable grenade launcher."
icon_state = "grenade"
- attach_icon = "grenade_a"
+ attach_icon = "grenade"
w_class = SIZE_MEDIUM
current_rounds = 0
max_rounds = 3
@@ -2834,12 +2861,22 @@ Defined in conflicts.dm of the #defines folder.
current_rounds = 0
max_rounds = 5
max_range = 10
- attachment_firing_delay = 30
+ attachment_firing_delay = 15
/obj/item/attachable/attached_gun/grenade/mk1/recon
icon_state = "green_grenade-mk1"
attach_icon = "green_grenade-mk1_a"
+/obj/item/attachable/attached_gun/grenade/m120
+ name = "\improper PN/c 30mm underslung grenade launcher"
+ desc = "Compact variant of the PN pump action underslung grenade launcher. Fits the M120 shotgun, three round tube, chambers one."
+ icon_state = "grenade-mk1"
+ attach_icon = "grenade-mk1_a"
+ current_rounds = 0
+ max_rounds = 3
+ max_range = 10
+ attachment_firing_delay = 15
+
/obj/item/attachable/attached_gun/grenade/m203 //M16 GL, only DD have it.
name = "\improper M203 Grenade Launcher"
desc = "An antique underbarrel grenade launcher. Adopted in 1969 for the M16, it was made obsolete centuries ago; how its ended up here is a mystery to you. Holds only one propriatary 40mm grenade, does not have modern IFF systems, it won't pass through your friends."
diff --git a/code/modules/projectiles/guns/flamer/flamer.dm b/code/modules/projectiles/guns/flamer/flamer.dm
index 756a590704..634807805a 100644
--- a/code/modules/projectiles/guns/flamer/flamer.dm
+++ b/code/modules/projectiles/guns/flamer/flamer.dm
@@ -253,6 +253,9 @@
current_mag = /obj/item/ammo_magazine/flamer_tank/EX
flags_gun_features = GUN_WY_RESTRICTED|GUN_WIELDED_FIRING_ONLY
+/obj/item/weapon/gun/flamer/unloaded
+ current_mag = null
+
/obj/item/weapon/gun/flamer/deathsquad/nolock
flags_gun_features = GUN_WIELDED_FIRING_ONLY
diff --git a/code/modules/projectiles/guns/pistols.dm b/code/modules/projectiles/guns/pistols.dm
index 9eed4553f1..d3fff0e05d 100644
--- a/code/modules/projectiles/guns/pistols.dm
+++ b/code/modules/projectiles/guns/pistols.dm
@@ -6,6 +6,7 @@
icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi'
reload_sound = 'sound/weapons/flipblade.ogg'
cocked_sound = 'sound/weapons/gun_pistol_cocked.ogg'
+ empty_sound = 'sound/weapons/gun_empty.ogg'
matter = list("metal" = 2000)
flags_equip_slot = SLOT_WAIST
@@ -48,12 +49,13 @@
/obj/item/weapon/gun/pistol/m4a3
name = "\improper M4A3 service pistol"
- desc = "An M4A3 Service Pistol, once the standard issue sidearm of the Colonial Marines but has recently been replaced with the Weyland Yutani 88 Mod 4 combat pistol. Fires 9mm pistol rounds."
+ desc = "The recently replaced semi-automatic 9mm service pistol of the USCM. It remains popular among marines due to its light trigger and familiarity."
icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi'
icon_state = "m4a3"
item_state = "m4a3"
+ fire_sound = "vp70"
current_mag = /obj/item/ammo_magazine/pistol
- flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED|GUN_AMMO_COUNTER
+ flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED
attachable_allowed = list(
/obj/item/attachable/suppressor,
/obj/item/attachable/reddot,
@@ -87,7 +89,7 @@
/obj/item/weapon/gun/pistol/m4a3/custom
name = "\improper M4A3 custom pistol"
- desc = "This M4A3 sports a nickel finish and faux ivory grips. This one is a slightly customized variant produced by a well known gunsmith on Gateway Station. These are commonly purchased by low level enlisted men and junior officers who have nothing better to spend their salary on. Chambered in 9mm."
+ desc = "Sporting a nickel finish and possibly faux ivory grips, this 9mm pistol has been customized by a well known gunsmith on Gateway Station. It offers no tactical advantages."
icon_state = "m4a3c"
item_state = "m4a3c"
@@ -102,37 +104,89 @@
damage_mult = BASE_BULLET_DAMAGE_MULT
+//VP70 - Counterpart to M1911, offers burst and capacity ine exchange of low accuracy and damage.
+
+/obj/item/weapon/gun/pistol/vp70
+ name = "\improper VP70 M5 service pistol"
+ desc = "Standard issue semi-automatic USCM service pistol. Recently replacing the M4A3, it retains its predecessor's 9mm chambering but offers both a higher magazine capacity and a 3-round burst selector."
+ icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi'
+ icon_state = "vp70"
+ item_state = "vp70"
+ fire_sound = "vp70"
+ firesound_volume = 20
+ reload_sound = 'sound/weapons/gun_vp70_reload.ogg'
+ unload_sound = 'sound/weapons/gun_vp70_unload.ogg'
+ current_mag = /obj/item/ammo_magazine/pistol/vp70
+ force = 8
+ flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED
+ attachable_allowed = list(
+ /obj/item/attachable/suppressor,
+ /obj/item/attachable/extended_barrel,
+ /obj/item/attachable/heavy_barrel,
+ /obj/item/attachable/compensator,
+ /obj/item/attachable/flashlight,
+ /obj/item/attachable/reflex,
+ /obj/item/attachable/reddot,
+ /obj/item/attachable/burstfire_assembly,
+ /obj/item/attachable/lasersight,
+ /obj/item/attachable/flashlight/grip,
+ /obj/item/attachable/magnetic_harness,
+ /obj/item/attachable/stock/vp70,
+ )
+
+/obj/item/weapon/gun/pistol/vp70/set_gun_attachment_offsets()
+ attachable_offset = list("muzzle_x" = 27, "muzzle_y" = 21,"rail_x" = 8, "rail_y" = 22, "under_x" = 21, "under_y" = 18, "stock_x" = 18, "stock_y" = 15)
+
+
+/obj/item/weapon/gun/pistol/vp70/set_gun_config_values()
+ ..()
+ set_fire_delay(FIRE_DELAY_TIER_11)
+ set_burst_amount(BURST_AMOUNT_TIER_3)
+ set_burst_delay(FIRE_DELAY_TIER_11)
+ accuracy_mult = BASE_ACCURACY_MULT
+ accuracy_mult_unwielded = BASE_ACCURACY_MULT
+ scatter = SCATTER_AMOUNT_TIER_7
+ burst_scatter_mult = SCATTER_AMOUNT_TIER_7
+ scatter_unwielded = SCATTER_AMOUNT_TIER_7
+ damage_mult = BASE_BULLET_DAMAGE_MULT
+
+
+/obj/item/weapon/gun/pistol/vp70/training
+ current_mag = /obj/item/ammo_magazine/pistol/vp70/rubber
+
+
+/obj/item/weapon/gun/pistol/vp70/flashlight/handle_starting_attachment()
+ ..()
+ var/obj/item/attachable/flashlight/flashlight = new(src)
+ flashlight.Attach(src)
+ update_attachable(flashlight.slot)
+
//-------------------------------------------------------
-//M4A3 45 //Inspired by the 1911
-//deprecated
/obj/item/weapon/gun/pistol/m1911
- name = "\improper M1911 service pistol"
- desc = "A timeless classic since the first World War. Once standard issue for the USCM, now back order only. Chambered in .45 ACP. Unfortunately, due to the progression of IFF technology, M1911 .45 ACP is NOT compatible with the SU-6."
+ name = "\improper M1911 pistol"
+ desc = "Despite never being an official service pistol of the USCM, its .45 ACP chambering and cultural connection to the Corps's predecessor keeps it a popular pistol, enough so that a large quantity are kept on backorder."
icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi'
icon_state = "m4a345"
item_state = "m4a3"
-
+ fire_sound = 'sound/weapons/gun_vp78_v2.ogg'
current_mag = /obj/item/ammo_magazine/pistol/m1911
-
/obj/item/weapon/gun/pistol/m1911/set_gun_attachment_offsets()
attachable_offset = list("muzzle_x" = 28, "muzzle_y" = 20,"rail_x" = 10, "rail_y" = 22, "under_x" = 21, "under_y" = 17, "stock_x" = 21, "stock_y" = 17)
-
/obj/item/weapon/gun/pistol/m1911/set_gun_config_values()
..()
set_fire_delay(FIRE_DELAY_TIER_9)
accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_4
accuracy_mult_unwielded = BASE_ACCURACY_MULT
scatter = SCATTER_AMOUNT_TIER_6
- burst_scatter_mult = SCATTER_AMOUNT_TIER_6
- scatter_unwielded = SCATTER_AMOUNT_TIER_6
+ scatter_unwielded = SCATTER_AMOUNT_TIER_4
damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_5
-
+ recoil_unwielded = RECOIL_AMOUNT_TIER_4
/obj/item/weapon/gun/pistol/m1911/socom
- name = "\improper M48A4 service pistol"
+ name = "\improper M48A4 pistol"
desc = "A timeless classic since the first World War, the M1911A1 has limited use with the USCM, and is often used as a sidearm by non-governmental bodies due to its reliability. This is a modernized version with an ammo counter and a polymer grip, designated M48A4. Chambered in .45 ACP."
icon_state = "m4a345_s"
item_state = "m4a3"
@@ -146,116 +200,83 @@
scatter = SCATTER_AMOUNT_TIER_8
burst_scatter_mult = SCATTER_AMOUNT_TIER_6
scatter_unwielded = SCATTER_AMOUNT_TIER_6
- damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_2
+ damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_5
/obj/item/weapon/gun/pistol/m1911/socom/equipped
starting_attachment_types = list(/obj/item/attachable/suppressor, /obj/item/attachable/lasersight, /obj/item/attachable/reflex)
-//-------------------------------------------------------
-//Beretta 92FS, the gun McClane carries around in Die Hard. Very similar to the service pistol, all around.
-
-/obj/item/weapon/gun/pistol/b92fs
- name = "\improper Beretta 92FS pistol"
- desc = "A popular police firearm in the 20th century, often employed by hardboiled cops while confronting terrorists. A classic of its time, chambered in 9mm."
- icon = 'icons/obj/items/weapons/guns/guns_by_faction/colony.dmi'
- icon_state = "b92fs"
- item_state = "b92fs"
- current_mag = /obj/item/ammo_magazine/pistol/b92fs
-
-/obj/item/weapon/gun/pistol/b92fs/Initialize(mapload, spawn_empty)
- . = ..()
- if(prob(10))
- name = "\improper Beretta 93FR burst pistol"
- desc += " This specific pistol is a burst-fire, limited availability, police-issue 93FR type Beretta. Not too accurate, aftermarket modififcations are recommended."
- var/obj/item/attachable/burstfire_assembly/BFA = new(src)
- BFA.flags_attach_features &= ~ATTACH_REMOVABLE
- BFA.Attach(src)
- update_attachable(BFA.slot)
- add_firemode(GUN_FIREMODE_BURSTFIRE)
-
-/obj/item/weapon/gun/pistol/b92fs/set_gun_attachment_offsets()
- attachable_offset = list("muzzle_x" = 28, "muzzle_y" = 20,"rail_x" = 10, "rail_y" = 22, "under_x" = 21, "under_y" = 17, "stock_x" = 21, "stock_y" = 17)
-
-/obj/item/weapon/gun/pistol/b92fs/set_gun_config_values()
- ..()
- set_fire_delay(FIRE_DELAY_TIER_12)
- accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_5
- accuracy_mult_unwielded = BASE_ACCURACY_MULT
- scatter = SCATTER_AMOUNT_TIER_7
- burst_scatter_mult = SCATTER_AMOUNT_TIER_5
- scatter_unwielded = SCATTER_AMOUNT_TIER_7
- damage_mult = BASE_BULLET_DAMAGE_MULT - BULLET_DAMAGE_MULT_TIER_2
-
-
-//-------------------------------------------------------
-//DEAGLE //This one is obvious.
+//.45 MARSHALS PISTOL //Inspired by the Browning Hipower
+// rebalanced - singlefire, very strong bullets but slow to fire and heavy recoil
+// redesigned - now rejected USCM sidearm model, utilized by Colonial Marshals and other stray groups.
-/obj/item/weapon/gun/pistol/heavy
- name = "vintage Desert Eagle"
- desc = "A bulky 50 caliber pistol with a serious kick, probably taken from some museum somewhere. This one is engraved, 'Peace through superior firepower.'"
+/obj/item/weapon/gun/pistol/highpower
+ name = "\improper HG 45 'Aguila' pistol"
+ desc = "A semi-automatic Henjin-Garcia design chambered in .45 ACP that is slowly replacing the Office of the Colonial Marshals's Spearhead revolver."
icon = 'icons/obj/items/weapons/guns/guns_by_faction/colony.dmi'
- icon_state = "deagle"
- item_state = "deagle"
- fire_sound = 'sound/weapons/gun_DE50.ogg'
- firesound_volume = 40
- current_mag = /obj/item/ammo_magazine/pistol/heavy
- force = 13
-
+ icon_state = "highpower"
+ item_state = "highpower"
+ fire_sound = 'sound/weapons/gun_vp78_v2.ogg'
+ current_mag = /obj/item/ammo_magazine/pistol/highpower
+ force = 15
attachable_allowed = list(
- /obj/item/attachable/reddot,
- /obj/item/attachable/reflex,
- /obj/item/attachable/flashlight,
+ /obj/item/attachable/suppressor, // Barrel
+ /obj/item/attachable/bayonet,
+ /obj/item/attachable/bayonet/upp_replica,
+ /obj/item/attachable/bayonet/upp,
/obj/item/attachable/extended_barrel,
/obj/item/attachable/heavy_barrel,
- /obj/item/attachable/lasersight,
/obj/item/attachable/compensator,
+ /obj/item/attachable/reddot, // Rail
+ /obj/item/attachable/reflex,
+ /obj/item/attachable/flashlight,
+ /obj/item/attachable/magnetic_harness,
+ /obj/item/attachable/scope,
+ /obj/item/attachable/scope/mini,
+ /obj/item/attachable/gyro, // Under
+ /obj/item/attachable/lasersight,
+ /obj/item/attachable/burstfire_assembly,
)
+/obj/item/weapon/gun/pistol/highpower/set_gun_attachment_offsets()
+ attachable_offset = list("muzzle_x" = 29, "muzzle_y" = 20,"rail_x" = 6, "rail_y" = 22, "under_x" = 20, "under_y" = 15, "stock_x" = 0, "stock_y" = 0)
-/obj/item/weapon/gun/pistol/heavy/set_gun_attachment_offsets()
- attachable_offset = list("muzzle_x" = 30, "muzzle_y" = 20,"rail_x" = 17, "rail_y" = 21, "under_x" = 20, "under_y" = 17, "stock_x" = 20, "stock_y" = 17)
-
-
-/obj/item/weapon/gun/pistol/heavy/set_gun_config_values()
+/obj/item/weapon/gun/pistol/highpower/set_gun_config_values()
..()
- set_fire_delay(FIRE_DELAY_TIER_5)
- set_burst_amount(BURST_AMOUNT_TIER_2)
- set_burst_delay(FIRE_DELAY_TIER_8)
- accuracy_mult = BASE_ACCURACY_MULT
- accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_5
+ set_fire_delay(FIRE_DELAY_TIER_7)
+ accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_4
+ accuracy_mult_unwielded = BASE_ACCURACY_MULT
scatter = SCATTER_AMOUNT_TIER_6
- burst_scatter_mult = SCATTER_AMOUNT_TIER_6
- scatter_unwielded = SCATTER_AMOUNT_TIER_6
- damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_1
- recoil = RECOIL_AMOUNT_TIER_5
- recoil_unwielded = RECOIL_AMOUNT_TIER_3
+ scatter_unwielded = SCATTER_AMOUNT_TIER_4
+ damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_5
+ recoil_unwielded = RECOIL_AMOUNT_TIER_4
-/obj/item/weapon/gun/pistol/heavy/co
- name = "polished vintage Desert Eagle"
- desc = "The handcannon that needs no introduction, the .50-caliber Desert Eagle is expensive, unwieldy, and extremely heavy for a pistol. However, it makes up for it with its powerful shots capable of stopping a bear dead in its tracks. Iconic, glamorous, and above all, extremely deadly."
- icon = 'icons/obj/items/weapons/guns/guns_by_faction/colony.dmi'
- icon_state = "c_deagle"
- item_state = "c_deagle"
- current_mag = /obj/item/ammo_magazine/pistol/heavy/super/highimpact
- black_market_value = 100
+/obj/item/weapon/gun/pistol/highpower/black
+ name = "\improper HG 45 'Marina' pistol"
+ current_mag = /obj/item/ammo_magazine/pistol/highpower/black
+ icon_state = "highpower_b"
+ item_state = "highpower_b"
+ desc = "A semi-automatic Henjin-Garcia design chambered in .45 ACP that is slowly replacing the Office of the Colonial Marshals's Spearhead revolver. Unlike its more common siblings, this variant was marketed and successfully sold in small quantities to the USCM."
-/obj/item/weapon/gun/pistol/heavy/co/set_gun_config_values()
+/obj/item/weapon/gun/pistol/highpower/automag
+ name = "\improper HG 44 'Automag' pistol"
+ desc = "A semi-automatic Henjin-Garcia design chambered in .44 Magnum that was largely discontinued in favour of the HG 45 configuration chambered in .45 ACP."
+ current_mag = /obj/item/ammo_magazine/pistol/highpower/automag
+ icon_state = "highpower_tac"
+ item_state = "highpower_tac"
+ fire_sound = 'sound/weapons/gun_kt42.ogg'
+ flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED
+
+/obj/item/weapon/gun/pistol/highpower/automag/set_gun_config_values()
..()
- set_fire_delay(FIRE_DELAY_TIER_5)
- accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_4
- accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_7
- scatter = SCATTER_AMOUNT_TIER_6
- burst_scatter_mult = SCATTER_AMOUNT_TIER_4
- scatter_unwielded = SCATTER_AMOUNT_TIER_3
- damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_8
- recoil = RECOIL_AMOUNT_TIER_3
- recoil_unwielded = RECOIL_AMOUNT_TIER_2
+ set_fire_delay(FIRE_DELAY_TIER_6)
+ recoil = RECOIL_AMOUNT_TIER_5
+ recoil_unwielded = RECOIL_AMOUNT_TIER_3
-/obj/item/weapon/gun/pistol/heavy/co/gold
- name = "golden vintage Desert Eagle"
- desc = "A Desert Eagle anodized in gold and adorned with rosewood grips. The living definition of ostentatious, it's flashy, unwieldy, tremendously heavy, and kicks like a mule. But as a symbol of power, there's nothing like it."
- icon_state = "g_deagle"
- item_state = "g_deagle"
+/obj/item/weapon/gun/pistol/highpower/automag/tactical
+ name = "\improper HG 44 'Automag' pistol"
+ desc = "A semi-automatic Henjin-Garcia design chambered in .44 Magnum that was largely discontinued in favour of the HG 45 configuration chambered in .45 ACP."
+ starting_attachment_types = list(/obj/item/attachable/suppressor, /obj/item/attachable/lasersight, /obj/item/attachable/reflex)
+ flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED
//-------------------------------------------------------
//NP92 pistol
@@ -263,13 +284,13 @@
/obj/item/weapon/gun/pistol/np92
name = "\improper NP92 pistol"
- desc = "The standard issue sidearm of the UPP. The NP92 is a small but powerful sidearm, well-liked by most it is issued to, although some prefer the weapon it was meant to replace, the Type 73. Takes 12 round magazines."
+ desc = "The standard issue sidearm of the UPP. Chambered in 9x18mm Makarov, The NP92 is a small versatile pistol."
icon = 'icons/obj/items/weapons/guns/guns_by_faction/upp.dmi'
icon_state = "np92"
item_state = "np92"
- fire_sound = "88m4"
+ fire_sound = "vp70"
current_mag = /obj/item/ammo_magazine/pistol/np92
- flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED|GUN_AMMO_COUNTER
+ flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED
attachable_allowed = list(
/obj/item/attachable/suppressor,
/obj/item/attachable/reddot,
@@ -299,7 +320,7 @@
inherent_traits = list(TRAIT_GUN_SILENCED)
fire_sound = "gun_silenced"
current_mag = /obj/item/ammo_magazine/pistol/np92/suppressed
- flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED|GUN_AMMO_COUNTER
+ flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED
attachable_allowed = list(
/obj/item/attachable/reddot,
/obj/item/attachable/reflex,
@@ -315,13 +336,14 @@
/obj/item/weapon/gun/pistol/t73
name = "\improper Type 73 pistol"
- desc = "The Type 73 is the once-standard issue sidearm of the UPP. Replaced by the NP92 in UPP use, it remains popular with veteran UPP troops due to familiarity and extra power. Due to an extremely large amount being produced, they tend to end up in the hands of forces attempting to arm themselves on a budget. Users include the Union of Progressive Peoples, Colonial Liberation Front, and just about any mercenary or pirate group out there."
+ desc = "Once the standard issue sidearm of the UPP it has since been replaced by the smaller NP92. Chambered with 7.62x25mm Tokarev, it remains popular with veterans due to its extra firepower."
icon = 'icons/obj/items/weapons/guns/guns_by_faction/upp.dmi'
icon_state = "tt"
item_state = "tt"
- fire_sound = 'sound/weapons/gun_tt.ogg'
+ fire_sound = 'sound/weapons/gun_vp78_v2.ogg'
+// fire_sound = 'sound/weapons/gun_tt.ogg'
current_mag = /obj/item/ammo_magazine/pistol/t73
- flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED|GUN_AMMO_COUNTER
+ flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED
attachable_allowed = list(
/obj/item/attachable/reddot,
/obj/item/attachable/reflex,
@@ -351,7 +373,7 @@
icon_state = "ttb"
item_state = "ttb"
current_mag = /obj/item/ammo_magazine/pistol/t73_impact
- flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED|GUN_AMMO_COUNTER
+ flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED
accepted_ammo = list(
/obj/item/ammo_magazine/pistol/t73,
/obj/item/ammo_magazine/pistol/t73_impact,
@@ -410,7 +432,6 @@
//-------------------------------------------------------
-//PIZZACHIMP PROTECTION
/obj/item/weapon/gun/pistol/holdout
name = "holdout pistol"
@@ -454,20 +475,17 @@
//-------------------------------------------------------
//CLF HOLDOUT PISTOL
/obj/item/weapon/gun/pistol/clfpistol
- name = "D18 Hummingbird Pistol"
- desc = "The D18 Hummingbird Pistol was produced in the mid-2170s as a cheap and concealable firearm for CLF Sleeper Cell agents for assassinations and ambushes, and is able to be concealed in shoes and workboots."
+ name = "Hummingbird pistol"
+ desc = "Chambering .50 AE catridges this gun is as compact as it could possibly be. Rumored to be designed and produced by the UPP before being distributed into UA space for arming sleeper cells with throwaway weapons capable of penetrating standard M3 pattern armor."
icon = 'icons/obj/items/weapons/guns/guns_by_faction/colony.dmi'
icon_state = "m43"
item_state = "m43"
- flags_gun_features = GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED
+ flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED
fire_sound = 'sound/weapons/gun_m43.ogg'
current_mag = /obj/item/ammo_magazine/pistol/clfpistol
w_class = SIZE_TINY
force = 5
- attachable_allowed = list(
- /obj/item/attachable/suppressor,
- /obj/item/attachable/flashlight,
- )
+ attachable_allowed = null
/obj/item/weapon/gun/pistol/clfpistol/set_gun_attachment_offsets()
attachable_offset = list("muzzle_x" = 28, "muzzle_y" = 20,"rail_x" = 10, "rail_y" = 21, "under_x" = 21, "under_y" = 17, "stock_x" = 21, "stock_y" = 17)
@@ -481,163 +499,12 @@
burst_scatter_mult = SCATTER_AMOUNT_TIER_5
scatter_unwielded = SCATTER_AMOUNT_TIER_8
scatter = SCATTER_AMOUNT_TIER_9
- damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_4
+ damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_10
+ recoil = RECOIL_AMOUNT_TIER_2
+ recoil_unwielded = RECOIL_AMOUNT_TIER_1
//-------------------------------------------------------
-//.45 MARSHALS PISTOL //Inspired by the Browning Hipower
-// rebalanced - singlefire, very strong bullets but slow to fire and heavy recoil
-// redesigned - now rejected USCM sidearm model, utilized by Colonial Marshals and other stray groups.
-
-/obj/item/weapon/gun/pistol/highpower
- name = "\improper MK-45 'High-Power' Automagnum"
- desc = "Originally designed as a replacement for the USCM's M44 combat revolver, it was rejected at the last minute by a committee, citing its need to be cocked after every loaded magazine to be too cumbersone and antiquated. The design has recently been purchased by the Henjin-Garcia company, refitted for .45 ACP, and sold to the Colonial Marshals and other various unscrupulous armed groups."
- icon = 'icons/obj/items/weapons/guns/guns_by_faction/colony.dmi'
- icon_state = "highpower"
- item_state = "highpower"
- fire_sound = 'sound/weapons/gun_kt42.ogg'
- current_mag = /obj/item/ammo_magazine/pistol/highpower
- force = 15
- attachable_allowed = list(
- /obj/item/attachable/suppressor, // Barrel
- /obj/item/attachable/bayonet,
- /obj/item/attachable/bayonet/upp_replica,
- /obj/item/attachable/bayonet/upp,
- /obj/item/attachable/extended_barrel,
- /obj/item/attachable/heavy_barrel,
- /obj/item/attachable/compensator,
- /obj/item/attachable/reddot, // Rail
- /obj/item/attachable/reflex,
- /obj/item/attachable/flashlight,
- /obj/item/attachable/magnetic_harness,
- /obj/item/attachable/scope,
- /obj/item/attachable/scope/mini,
- /obj/item/attachable/gyro, // Under
- /obj/item/attachable/lasersight,
- /obj/item/attachable/burstfire_assembly,
- )
- /// This weapon needs to be manually racked every time a new magazine is loaded. I tried and failed to touch gun shitcode so this will do.
- var/manually_slided = FALSE
-
-/obj/item/weapon/gun/pistol/highpower/Initialize(mapload, spawn_empty)
- . = ..()
- manually_slided = TRUE
-
-/obj/item/weapon/gun/pistol/highpower/Fire(atom/target, mob/living/user, params, reflex = 0, dual_wield)
- if(!manually_slided)
- click_empty()
- to_chat(user, SPAN_DANGER("\The [src] makes a clicking noise! You need to manually rack the slide after loading in a new magazine!"))
- return NONE
- return ..()
-
-/obj/item/weapon/gun/pistol/highpower/unique_action(mob/user)
- if(!manually_slided)
- user.visible_message(SPAN_NOTICE("[user] racks \the [src]'s slide."), SPAN_NOTICE("You rack \the [src]'s slide, loading the next bullet in."))
- manually_slided = TRUE
- cock_gun(user, TRUE)
- return
- ..()
-
-/obj/item/weapon/gun/pistol/highpower/cock_gun(mob/user, manual = FALSE)
- if(manual)
- ..()
- else return
-
-/obj/item/weapon/gun/pistol/highpower/reload(mob/user, obj/item/ammo_magazine/magazine)
- //reset every time its reloaded
- manually_slided = FALSE
- ..()
-
-/obj/item/weapon/gun/pistol/highpower/set_gun_attachment_offsets()
- attachable_offset = list("muzzle_x" = 29, "muzzle_y" = 20,"rail_x" = 6, "rail_y" = 22, "under_x" = 20, "under_y" = 15, "stock_x" = 0, "stock_y" = 0)
-
-/obj/item/weapon/gun/pistol/highpower/set_gun_config_values()
- ..()
- set_fire_delay(FIRE_DELAY_TIER_5)
- accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_4
- accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_3
- scatter = SCATTER_AMOUNT_TIER_6
- scatter_unwielded = SCATTER_AMOUNT_TIER_4
- damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_8
- recoil = RECOIL_AMOUNT_TIER_4
- recoil_unwielded = RECOIL_AMOUNT_TIER_4
-//also comes in.... BLAPCK
-//the parent has a blueish tint, making it look best for civilian usage (colonies, marshals). this one has a black tint on its metal, making it best for military groups like VAIPO, elite mercs, etc.
-// black tinted magazines also included
-/obj/item/weapon/gun/pistol/highpower/black
- current_mag = /obj/item/ammo_magazine/pistol/highpower/black
- icon_state = "highpower_b"
- item_state = "highpower_b"
-
-//unimplemented
-/obj/item/weapon/gun/pistol/highpower/tactical
- name = "\improper MK-44 SOCOM Automagnum"
- desc = "Originally designed as a replacement for the USCM's M44 combat revolver, it was rejected at the last minute by a committee, citing its need to be cocked after every loaded magazine to be too cumbersone and antiquated. The design has recently been purchased by the Henjin-Garcia company and sold to the Colonial Marshals and other various unscrupulous armed groups. This one has a sleek, dark design."
- current_mag = /obj/item/ammo_magazine/pistol/highpower/black
- icon_state = "highpower_tac"
- item_state = "highpower_tac"
- starting_attachment_types = list(/obj/item/attachable/suppressor, /obj/item/attachable/lasersight, /obj/item/attachable/reflex)
- flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED|GUN_AMMO_COUNTER
-
-//-------------------------------------------------------
-//mod88 based off VP70 - Counterpart to M1911, offers burst and capacity ine exchange of low accuracy and damage.
-
-/obj/item/weapon/gun/pistol/mod88
- name = "\improper 88 Mod 4 combat pistol"
- desc = "Standard issue USCM firearm. Also found in the hands of Weyland-Yutani PMC teams. Fires 9mm armor shredding rounds and is capable of 3-round burst."
- icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi'
- icon_state = "_88m4" // to comply with css standards
- item_state = "_88m4"
- fire_sound = "88m4"
- firesound_volume = 20
- reload_sound = 'sound/weapons/gun_88m4_reload.ogg'
- unload_sound = 'sound/weapons/gun_88m4_unload.ogg'
- current_mag = /obj/item/ammo_magazine/pistol/mod88/normalpoint
- force = 8
- flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED|GUN_AMMO_COUNTER
- attachable_allowed = list(
- /obj/item/attachable/suppressor,
- /obj/item/attachable/extended_barrel,
- /obj/item/attachable/heavy_barrel,
- /obj/item/attachable/compensator,
- /obj/item/attachable/flashlight,
- /obj/item/attachable/reflex,
- /obj/item/attachable/reddot,
- /obj/item/attachable/burstfire_assembly,
- /obj/item/attachable/lasersight,
- /obj/item/attachable/flashlight/grip,
- /obj/item/attachable/magnetic_harness,
- /obj/item/attachable/stock/mod88,
- )
-
-/obj/item/weapon/gun/pistol/mod88/set_gun_attachment_offsets()
- attachable_offset = list("muzzle_x" = 27, "muzzle_y" = 21,"rail_x" = 8, "rail_y" = 22, "under_x" = 21, "under_y" = 18, "stock_x" = 18, "stock_y" = 15)
-
-
-/obj/item/weapon/gun/pistol/mod88/set_gun_config_values()
- ..()
- set_fire_delay(FIRE_DELAY_TIER_11)
- set_burst_amount(BURST_AMOUNT_TIER_3)
- set_burst_delay(FIRE_DELAY_TIER_11)
- accuracy_mult = BASE_ACCURACY_MULT
- accuracy_mult_unwielded = BASE_ACCURACY_MULT
- scatter = SCATTER_AMOUNT_TIER_7
- burst_scatter_mult = SCATTER_AMOUNT_TIER_7
- scatter_unwielded = SCATTER_AMOUNT_TIER_7
- damage_mult = BASE_BULLET_DAMAGE_MULT
-
-
-/obj/item/weapon/gun/pistol/mod88/training
- current_mag = /obj/item/ammo_magazine/pistol/mod88/rubber
-
-
-/obj/item/weapon/gun/pistol/mod88/flashlight/handle_starting_attachment()
- ..()
- var/obj/item/attachable/flashlight/flashlight = new(src)
- flashlight.Attach(src)
- update_attachable(flashlight.slot)
-
-//-------------------------------------------------------
// ES-4 - Basically a CL-exclusive reskin of the 88 mod 4 that only uses less-lethal ammo.
/obj/item/weapon/gun/pistol/es4
@@ -648,8 +515,8 @@
item_state = "es4"
fire_sound = 'sound/weapons/gun_es4.ogg'
firesound_volume = 20
- reload_sound = 'sound/weapons/gun_88m4_reload.ogg'
- unload_sound = 'sound/weapons/gun_88m4_unload.ogg'
+ reload_sound = 'sound/weapons/gun_vp70_reload.ogg'
+ unload_sound = 'sound/weapons/gun_vp70_unload.ogg'
current_mag = /obj/item/ammo_magazine/pistol/es4
force = 8
muzzle_flash = "muzzle_flash_blue"
@@ -683,7 +550,6 @@
icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi'
icon_state = "vp78"
item_state = "vp78"
-
fire_sound = 'sound/weapons/gun_vp78_v2.ogg'
reload_sound = 'sound/weapons/gun_vp78_reload.ogg'
unload_sound = 'sound/weapons/gun_vp78_unload.ogg'
@@ -760,6 +626,113 @@ It is a modified Beretta 93R, and can fire three-round burst or single fire. Whe
recoil_unwielded = RECOIL_AMOUNT_TIER_3
+//-------------------------------------------------------
+//Beretta 92FS, the gun McClane carries around in Die Hard. Very similar to the service pistol, all around.
+
+/obj/item/weapon/gun/pistol/b92fs
+ name = "\improper Beretta 92FS pistol"
+ desc = "A popular police firearm in the 20th century, often employed by hardboiled cops while confronting terrorists. A classic of its time, chambered in 9mm."
+ icon = 'icons/obj/items/weapons/guns/guns_by_faction/colony.dmi'
+ icon_state = "b92fs"
+ item_state = "b92fs"
+ current_mag = /obj/item/ammo_magazine/pistol/b92fs
+
+/obj/item/weapon/gun/pistol/b92fs/Initialize(mapload, spawn_empty)
+ . = ..()
+ if(prob(10))
+ name = "\improper Beretta 93FR burst pistol"
+ desc += " This specific pistol is a burst-fire, limited availability, police-issue 93FR type Beretta. Not too accurate, aftermarket modififcations are recommended."
+ var/obj/item/attachable/burstfire_assembly/BFA = new(src)
+ BFA.flags_attach_features &= ~ATTACH_REMOVABLE
+ BFA.Attach(src)
+ update_attachable(BFA.slot)
+ add_firemode(GUN_FIREMODE_BURSTFIRE)
+
+/obj/item/weapon/gun/pistol/b92fs/set_gun_attachment_offsets()
+ attachable_offset = list("muzzle_x" = 28, "muzzle_y" = 20,"rail_x" = 10, "rail_y" = 22, "under_x" = 21, "under_y" = 17, "stock_x" = 21, "stock_y" = 17)
+
+/obj/item/weapon/gun/pistol/b92fs/set_gun_config_values()
+ ..()
+ set_fire_delay(FIRE_DELAY_TIER_12)
+ accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_5
+ accuracy_mult_unwielded = BASE_ACCURACY_MULT
+ scatter = SCATTER_AMOUNT_TIER_7
+ burst_scatter_mult = SCATTER_AMOUNT_TIER_5
+ scatter_unwielded = SCATTER_AMOUNT_TIER_7
+ damage_mult = BASE_BULLET_DAMAGE_MULT - BULLET_DAMAGE_MULT_TIER_2
+
+
+//-------------------------------------------------------
+//DEAGLE //This one is obvious.
+
+/obj/item/weapon/gun/pistol/heavy
+ name = "vintage Desert Eagle"
+ desc = "A bulky 50 caliber pistol with a serious kick, probably taken from some museum somewhere. This one is engraved, 'Peace through superior firepower.'"
+ icon = 'icons/obj/items/weapons/guns/guns_by_faction/colony.dmi'
+ icon_state = "deagle"
+ item_state = "deagle"
+ fire_sound = 'sound/weapons/gun_DE50.ogg'
+ firesound_volume = 40
+ current_mag = /obj/item/ammo_magazine/pistol/heavy
+ force = 13
+
+ attachable_allowed = list(
+ /obj/item/attachable/reddot,
+ /obj/item/attachable/reflex,
+ /obj/item/attachable/flashlight,
+ /obj/item/attachable/extended_barrel,
+ /obj/item/attachable/heavy_barrel,
+ /obj/item/attachable/lasersight,
+ /obj/item/attachable/compensator,
+ )
+
+
+/obj/item/weapon/gun/pistol/heavy/set_gun_attachment_offsets()
+ attachable_offset = list("muzzle_x" = 30, "muzzle_y" = 20,"rail_x" = 17, "rail_y" = 21, "under_x" = 20, "under_y" = 17, "stock_x" = 20, "stock_y" = 17)
+
+
+/obj/item/weapon/gun/pistol/heavy/set_gun_config_values()
+ ..()
+ set_fire_delay(FIRE_DELAY_TIER_5)
+ set_burst_amount(BURST_AMOUNT_TIER_2)
+ set_burst_delay(FIRE_DELAY_TIER_8)
+ accuracy_mult = BASE_ACCURACY_MULT
+ accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_5
+ scatter = SCATTER_AMOUNT_TIER_6
+ burst_scatter_mult = SCATTER_AMOUNT_TIER_6
+ scatter_unwielded = SCATTER_AMOUNT_TIER_6
+ damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_1
+ recoil = RECOIL_AMOUNT_TIER_5
+ recoil_unwielded = RECOIL_AMOUNT_TIER_3
+
+/obj/item/weapon/gun/pistol/heavy/co
+ name = "polished vintage Desert Eagle"
+ desc = "The handcannon that needs no introduction, the .50-caliber Desert Eagle is expensive, unwieldy, and extremely heavy for a pistol. However, it makes up for it with its powerful shots capable of stopping a bear dead in its tracks. Iconic, glamorous, and above all, extremely deadly."
+ icon = 'icons/obj/items/weapons/guns/guns_by_faction/colony.dmi'
+ icon_state = "c_deagle"
+ item_state = "c_deagle"
+ base_gun_icon = "c_deagle"
+ current_mag = /obj/item/ammo_magazine/pistol/heavy/super/highimpact
+ black_market_value = 100
+
+/obj/item/weapon/gun/pistol/heavy/co/set_gun_config_values()
+ ..()
+ set_fire_delay(FIRE_DELAY_TIER_5)
+ accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_4
+ accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_7
+ scatter = SCATTER_AMOUNT_TIER_6
+ burst_scatter_mult = SCATTER_AMOUNT_TIER_4
+ scatter_unwielded = SCATTER_AMOUNT_TIER_3
+ damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_8
+ recoil = RECOIL_AMOUNT_TIER_3
+ recoil_unwielded = RECOIL_AMOUNT_TIER_2
+
+/obj/item/weapon/gun/pistol/heavy/co/gold
+ name = "golden vintage Desert Eagle"
+ desc = "A Desert Eagle anodized in gold and adorned with rosewood grips. The living definition of ostentatious, it's flashy, unwieldy, tremendously heavy, and kicks like a mule. But as a symbol of power, there's nothing like it."
+ icon_state = "g_deagle"
+ item_state = "g_deagle"
+ base_gun_icon = "g_deagle"
//-------------------------------------------------------
//The first rule of monkey pistol is we don't talk about monkey pistol.
diff --git a/code/modules/projectiles/guns/revolvers.dm b/code/modules/projectiles/guns/revolvers.dm
index 76e3e07106..6fd17ef1a7 100644
--- a/code/modules/projectiles/guns/revolvers.dm
+++ b/code/modules/projectiles/guns/revolvers.dm
@@ -293,14 +293,14 @@
icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi'
icon_state = "m44r"
item_state = "m44r"
-
+ fire_sounds = list('sound/weapons/gun_cmb_1.ogg', 'sound/weapons/gun_cmb_2.ogg')
cocked_sound = 'sound/weapons/gun_revolver_spun.ogg'
unload_sound = 'sound/weapons/handling/pkd_open_chamber.ogg'
chamber_close_sound = 'sound/weapons/handling/pkd_close_chamber.ogg'
current_mag = /obj/item/ammo_magazine/internal/revolver/m44
force = 8
- flags_gun_features = GUN_INTERNAL_MAG|GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED|GUN_AMMO_COUNTER
+ flags_gun_features = GUN_INTERNAL_MAG|GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED
attachable_allowed = list(
/obj/item/attachable/bayonet,
/obj/item/attachable/bayonet/upp,
@@ -405,7 +405,7 @@
name = "\improper PKL 'Double' Blaster"
desc = "Sold to civilians and private corporations, the Pflager Katsumata Series-L Blaster is a premium double barrel sidearm that can fire two rounds at the same time. Usually found in the hands of combat synths and replicants, this hand cannon is worth more than the combined price of three Emanators. Originally commissioned by the Wallace Corporation, it has since been released onto public market as a luxury firearm."
icon_state = "pkd_double"
- item_state = "88m4" //placeholder
+ item_state = "vp70" //placeholder
attachable_allowed = list(
/obj/item/attachable/flashlight,
@@ -699,18 +699,20 @@
//-------------------------------------------------------
//MARSHALS REVOLVER //Spearhead exists in Alien cannon.
-/obj/item/weapon/gun/revolver/cmb
- name = "\improper CMB Spearhead autorevolver"
- desc = "An automatic revolver chambered in .357, often loaded with hollowpoint on spaceships to prevent hull damage. Commonly issued to Colonial Marshals."
+/obj/item/weapon/gun/revolver/spearhead
+ name = "\improper Spearhead Armoury revolver"
+ desc = "A sleek high-quality revolver designed by Spearhead Armoury chambered in .357 commonly issued to Colonial Marshals."
icon = 'icons/obj/items/weapons/guns/guns_by_faction/colony.dmi'
icon_state = "spearhead"
item_state = "spearhead"
fire_sound = null
fire_sounds = list('sound/weapons/gun_cmb_1.ogg', 'sound/weapons/gun_cmb_2.ogg')
fire_rattle = 'sound/weapons/gun_cmb_rattle.ogg'
- cylinder_click = list('sound/weapons/handling/gun_cmb_click1.ogg', 'sound/weapons/handling/gun_cmb_click2.ogg')
- current_mag = /obj/item/ammo_magazine/internal/revolver/cmb/hollowpoint
- force = 12
+ //cylinder_click = list('sound/weapons/handling/gun_cmb_click1.ogg', 'sound/weapons/handling/gun_cmb_click2.ogg')
+ unload_sound = 'sound/weapons/handling/pkd_open_chamber.ogg'
+ chamber_close_sound = 'sound/weapons/handling/pkd_close_chamber.ogg'
+ current_mag = /obj/item/ammo_magazine/internal/revolver/spearhead
+ force = 15
attachable_allowed = list(
/obj/item/attachable/suppressor, // Muzzle
/obj/item/attachable/extended_barrel,
@@ -724,21 +726,21 @@
/obj/item/attachable/lasersight,
)
-/obj/item/weapon/gun/revolver/cmb/click_empty(mob/user)
+/obj/item/weapon/gun/revolver/spearhead/click_empty(mob/user)
if(user)
to_chat(user, SPAN_WARNING("*click*"))
playsound(user, pick('sound/weapons/handling/gun_cmb_click1.ogg', 'sound/weapons/handling/gun_cmb_click2.ogg'), 25, 1, 5) //5 tile range
else
playsound(src, pick('sound/weapons/handling/gun_cmb_click1.ogg', 'sound/weapons/handling/gun_cmb_click2.ogg'), 25, 1, 5)
-/obj/item/weapon/gun/revolver/cmb/Fire(atom/target, mob/living/user, params, reflex = 0, dual_wield)
+/obj/item/weapon/gun/revolver/spearhead/Fire(atom/target, mob/living/user, params, reflex = 0, dual_wield)
playsound('sound/weapons/gun_cmb_bass.ogg') // badass shooting bass
return ..()
-/obj/item/weapon/gun/revolver/cmb/set_gun_attachment_offsets()
+/obj/item/weapon/gun/revolver/spearhead/set_gun_attachment_offsets()
attachable_offset = list("muzzle_x" = 29, "muzzle_y" = 22,"rail_x" = 11, "rail_y" = 25, "under_x" = 20, "under_y" = 18, "stock_x" = 20, "stock_y" = 18)
-/obj/item/weapon/gun/revolver/cmb/set_gun_config_values()
+/obj/item/weapon/gun/revolver/spearhead/set_gun_config_values()
..()
set_fire_delay(FIRE_DELAY_TIER_6)
accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_4
@@ -749,5 +751,12 @@
recoil = RECOIL_AMOUNT_TIER_5
recoil_unwielded = RECOIL_AMOUNT_TIER_3
-/obj/item/weapon/gun/revolver/cmb/normalpoint
- current_mag = /obj/item/ammo_magazine/internal/revolver/cmb
+/obj/item/weapon/gun/revolver/spearhead/hollowpoint
+ current_mag = /obj/item/ammo_magazine/internal/revolver/spearhead/hollowpoint
+
+/obj/item/weapon/gun/revolver/spearhead/black
+ name = "\improper Spearhead Armoury revolver"
+ desc = "A sleek high-quality revolver designed by Spearhead Armoury chambered in .357 commonly issued to Colonial Marshals, though this version has been customized with a black metal finish indicating it is unlikely to be a service weapon."
+ icon = 'icons/obj/items/weapons/guns/guns_by_faction/colony.dmi'
+ icon_state = "spearhead_black"
+ item_state = "spearhead_black"
diff --git a/code/modules/projectiles/guns/shotguns.dm b/code/modules/projectiles/guns/shotguns.dm
index a705861f98..6035aaf612 100644
--- a/code/modules/projectiles/guns/shotguns.dm
+++ b/code/modules/projectiles/guns/shotguns.dm
@@ -20,6 +20,7 @@ can cause issues with ammo types getting mixed up during the burst.
has_empty_icon = FALSE
has_open_icon = FALSE
fire_delay_group = list(FIRE_DELAY_GROUP_SHOTGUN)
+ map_specific_decoration = FALSE
var/gauge = "12g"
/obj/item/weapon/gun/shotgun/Initialize(mapload, spawn_empty)
@@ -153,7 +154,6 @@ can cause issues with ammo types getting mixed up during the burst.
current_mag.chamber_position--
return in_chamber
-
/obj/item/weapon/gun/shotgun/ready_in_chamber()
return ready_shotgun_tube()
@@ -229,7 +229,7 @@ can cause issues with ammo types getting mixed up during the burst.
scatter = SCATTER_AMOUNT_TIER_5
burst_scatter_mult = SCATTER_AMOUNT_TIER_3
scatter_unwielded = SCATTER_AMOUNT_TIER_1
- damage_mult = BASE_BULLET_DAMAGE_MULT - BULLET_DAMAGE_MULT_TIER_2
+ damage_mult = BASE_BULLET_DAMAGE_MULT
recoil = RECOIL_AMOUNT_TIER_3
recoil_unwielded = RECOIL_AMOUNT_TIER_1
@@ -237,15 +237,17 @@ can cause issues with ammo types getting mixed up during the burst.
//TACTICAL SHOTGUN
/obj/item/weapon/gun/shotgun/combat
- name = "\improper MK221 tactical shotgun"
- desc = "The Weyland-Yutani MK221 Shotgun, a semi-automatic shotgun with a quick fire rate."
+ name = "\improper M120 tactical shotgun"
+ desc = "A successor to the Benelli M4 Super 90, the M120 tactical shotgun is in service with the USCM due its easy maneuverability in close quarters, 12 gauge chambering, high firerate and integrated U1 underslung grenade launcher. While not part of the standard doctrine, they are common none the less. The internal tube magazine stores 6 shells and the U1 grenade launcher stores three grenades."
icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi'
icon_state = "mk221"
item_state = "mk221"
fire_sound = "gun_shotgun_tactical"
firesound_volume = 20
- current_mag = /obj/item/ammo_magazine/internal/shotgun
+
+ flags_equip_slot = SLOT_BACK
+ current_mag = /obj/item/ammo_magazine/internal/shotgun/combat
attachable_allowed = list(
/obj/item/attachable/bayonet,
/obj/item/attachable/bayonet/upp,
@@ -264,26 +266,12 @@ can cause issues with ammo types getting mixed up during the burst.
if(current_mag && current_mag.current_rounds > 0)
load_into_chamber()
-/obj/item/weapon/gun/shotgun/combat/handle_starting_attachment()
- ..()
- var/obj/item/attachable/attached_gun/grenade/ugl = new(src)
- var/obj/item/attachable/stock/tactical/stock = new(src)
- ugl.flags_attach_features &= ~ATTACH_REMOVABLE
- ugl.hidden = TRUE
- ugl.Attach(src)
- update_attachable(ugl.slot)
- stock.hidden = FALSE
- stock.Attach(src)
- update_attachable(stock.slot)
-
/obj/item/weapon/gun/shotgun/combat/set_gun_attachment_offsets()
- attachable_offset = list("muzzle_x" = 33, "muzzle_y" = 19,"rail_x" = 10, "rail_y" = 21, "under_x" = 14, "under_y" = 16, "stock_x" = 11, "stock_y" = 13.)
-
-
+ attachable_offset = list("muzzle_x" = 33, "muzzle_y" = 19,"rail_x" = 10, "rail_y" = 21, "under_x" = 22, "under_y" = 14, "stock_x" = 11, "stock_y" = 13.)
/obj/item/weapon/gun/shotgun/combat/set_gun_config_values()
..()
- set_fire_delay(FIRE_DELAY_TIER_5*2)
+ set_fire_delay(FIRE_DELAY_TIER_9)
accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_3
accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_10
scatter = SCATTER_AMOUNT_TIER_6
@@ -292,7 +280,7 @@ can cause issues with ammo types getting mixed up during the burst.
damage_mult = BASE_BULLET_DAMAGE_MULT
recoil = RECOIL_AMOUNT_TIER_4
recoil_unwielded = RECOIL_AMOUNT_TIER_2
-
+ starting_attachment_types = list(/obj/item/attachable/attached_gun/grenade/m120, /obj/item/attachable/stock/tactical)
/obj/item/weapon/gun/shotgun/combat/get_examine_text(mob/user)
. = ..()
@@ -300,32 +288,31 @@ can cause issues with ammo types getting mixed up during the burst.
/obj/item/weapon/gun/shotgun/combat/riot
- name = "\improper MK221 riot shotgun"
+ name = "\improper M120/R tactical shotgun"
icon_state = "mp220"
item_state = "mp220"
- desc = "The Weyland-Yutani MK221 Shotgun, a semi-automatic shotgun with a quick fire rate. Equipped with a steel blue finish to signify use in riot control. It has been modified to only fire 20G beanbags."
+ desc = "A successor to the Benelli M4 Super 90, the M120 tactical shotgun is in service with the USCM due its easy maneuverability in close quarters, 12 gauge chambering, high firerate and integrated U1 underslung grenade launcher. While not part of the standard doctrine, they are common none the less. This one comes with a blue steel finish to denote its function as a riot shotgun. The internal tube magazine stores 6 shells and the U1 grenade launcher stores three grenades."
current_mag = /obj/item/ammo_magazine/internal/shotgun/combat/riot
- gauge = "20g"
/obj/item/weapon/gun/shotgun/combat/guard
- desc = "The Weyland-Yutani MK221 Shotgun, a semi-automatic shotgun with a quick fire rate. Equipped with a red handle to signify its use with Military Police Honor Guards."
+ desc = "The Weyland-Yutani M120 Shotgun, a semi-automatic shotgun with a quick fire rate. Equipped with a red handle to signify its use with Military Police Honor Guards."
icon_state = "mp221"
item_state = "mp221"
starting_attachment_types = list(/obj/item/attachable/magnetic_harness, /obj/item/attachable/bayonet)
- current_mag = /obj/item/ammo_magazine/internal/shotgun/buckshot
+ current_mag = /obj/item/ammo_magazine/internal/shotgun/combat
/obj/item/weapon/gun/shotgun/combat/covert
starting_attachment_types = list(/obj/item/attachable/magnetic_harness, /obj/item/attachable/extended_barrel)
- current_mag = /obj/item/ammo_magazine/internal/shotgun/buckshot
+ current_mag = /obj/item/ammo_magazine/internal/shotgun/combat
//SOF MK210, an earlier developmental variant of the MK211 tactical used by USCM SOF.
/obj/item/weapon/gun/shotgun/combat/marsoc
name = "\improper XM38 tactical shotgun"
- desc = "Way back in 2168, Wey-Yu began testing the MK221. The USCM picked up an early prototype, and later adopted it with a limited military contract. But the USCM Special Operations Forces wasn't satisfied, and iterated on the early prototypes they had access to; eventually, their internal armorers and tinkerers produced the MK210, designated XM38, a lightweight folding shotgun that snaps to the belt. And to boot, it's fully automatic, made of stamped medal, and keeps the UGL. Truly an engineering marvel."
+ desc = "An ARMAT design adopted for testing by the Marine Raiders due to it's compact size, high firerate and integrated magnetic harness system. You might think the size would leave its magazine tube wanting, but through engineering magic, the XM38 is capable of holding six shells with its internal tube magazine."
icon_state = "mk210"
item_state = "mk210"
- current_mag = /obj/item/ammo_magazine/internal/shotgun/buckshot
+ current_mag = /obj/item/ammo_magazine/internal/shotgun/marsoc
flags_equip_slot = SLOT_WAIST|SLOT_BACK
flags_gun_features = GUN_CAN_POINTBLANK|GUN_INTERNAL_MAG
@@ -353,7 +340,7 @@ can cause issues with ammo types getting mixed up during the burst.
..()
set_fire_delay(FIRE_DELAY_TIER_6)
accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_3
- accuracy_mult_unwielded = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_3 - HIT_ACCURACY_MULT_TIER_5
+ accuracy_mult_unwielded = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_3
scatter = SCATTER_AMOUNT_TIER_6
burst_scatter_mult = SCATTER_AMOUNT_TIER_6
scatter_unwielded = SCATTER_AMOUNT_TIER_2
@@ -365,18 +352,19 @@ can cause issues with ammo types getting mixed up during the burst.
//TYPE 23. SEMI-AUTO UPP SHOTGUN, BASED ON KS-23
/obj/item/weapon/gun/shotgun/type23
- name = "\improper Type 23 riot shotgun"
- desc = "As UPP soldiers frequently reported being outmatched by enemy combatants, UPP High Command commissioned a large amount of Type 23 shotguns, originally used for quelling defector colony riots. This slow semi-automatic shotgun chambers 8 gauge, and packs a mean punch."
+ name = "\improper KS-29/4 combat shotgun"
+ desc = "A contemporary semi-automatic design based off of the KS-23, a Soviet-era pump-action riot shotgun chambered in 6 gauge shells. Updated for the UPP's Naval Infantry as a boarding gun, it was downgraded to 8 gauge chambering in order to make it more controllable without much loss to overall firepower and allow for easier storage of large quantities of shells on the individual user. Its internal tube magazine can store 4 shells."
icon = 'icons/obj/items/weapons/guns/guns_by_faction/upp.dmi'
- icon_state = "type23"
- item_state = "type23"
- fire_sound = 'sound/weapons/gun_type23.ogg' //not perfect, too small
+ icon_state = "type23_tactical"
+ item_state = "type23_tactical"
+ fire_sound = 'sound/weapons/gun_type23.ogg'
current_mag = /obj/item/ammo_magazine/internal/shotgun/type23
attachable_allowed = list(
/obj/item/attachable/reddot, // Rail
/obj/item/attachable/reddot/upp,
/obj/item/attachable/reflex,
/obj/item/attachable/reflex/upp,
+ /obj/item/attachable/scope/upp,
/obj/item/attachable/flashlight,
/obj/item/attachable/magnetic_harness,
/obj/item/attachable/bayonet, // Muzzle
@@ -392,9 +380,8 @@ can cause issues with ammo types getting mixed up during the burst.
/obj/item/attachable/burstfire_assembly,
/obj/item/attachable/stock/type23, // Stock
)
- flags_gun_features = GUN_CAN_POINTBLANK|GUN_AMMO_COUNTER|GUN_INTERNAL_MAG
+ flags_gun_features = GUN_CAN_POINTBLANK|GUN_INTERNAL_MAG
flags_equip_slot = SLOT_BACK
- map_specific_decoration = FALSE
gauge = "8g"
starting_attachment_types = list(/obj/item/attachable/stock/type23)
@@ -403,101 +390,26 @@ can cause issues with ammo types getting mixed up during the burst.
/obj/item/weapon/gun/shotgun/type23/set_gun_config_values()
..()
- set_fire_delay(2.5 SECONDS)
+ set_fire_delay(FIRE_DELAY_TIER_8)
accuracy_mult = BASE_ACCURACY_MULT
- accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_10
+ accuracy_mult_unwielded = BASE_ACCURACY_MULT
scatter = SCATTER_AMOUNT_TIER_4
scatter_unwielded = SCATTER_AMOUNT_TIER_1
damage_mult = BASE_BULLET_DAMAGE_MULT
recoil = RECOIL_AMOUNT_TIER_1
recoil_unwielded = RECOIL_AMOUNT_TIER_1
-/obj/item/weapon/gun/shotgun/type23/breacher
- random_spawn_chance = 100
- random_rail_chance = 100
- random_spawn_rail = list(
- /obj/item/attachable/magnetic_harness,
- /obj/item/attachable/flashlight,
- )
- random_muzzle_chance = 100
- random_spawn_muzzle = list(
- /obj/item/attachable/bayonet/upp,
- )
- random_under_chance = 40
- random_spawn_under = list(
- /obj/item/attachable/verticalgrip/upp,
- )
-
-/obj/item/weapon/gun/shotgun/type23/breacher/slug
- current_mag = /obj/item/ammo_magazine/internal/shotgun/type23/slug
-
-/obj/item/weapon/gun/shotgun/type23/breacher/flechette
- current_mag = /obj/item/ammo_magazine/internal/shotgun/type23/flechette
-
-/obj/item/weapon/gun/shotgun/type23/dual
- random_spawn_chance = 100
- random_rail_chance = 100
- random_spawn_rail = list(
- /obj/item/attachable/magnetic_harness,
- )
- random_muzzle_chance = 80
- random_spawn_muzzle = list(
- /obj/item/attachable/bayonet/upp,
- /obj/item/attachable/heavy_barrel,
- )
- random_under_chance = 100
- random_spawn_under = list(
- /obj/item/attachable/flashlight/grip,
- /obj/item/attachable/verticalgrip/upp,
- )
-
-/obj/item/weapon/gun/shotgun/type23/dragon
- current_mag = /obj/item/ammo_magazine/internal/shotgun/type23/dragonsbreath
- random_spawn_chance = 100
- random_rail_chance = 100
- random_spawn_rail = list(
- /obj/item/attachable/magnetic_harness,
- )
- random_muzzle_chance = 70
- random_spawn_muzzle = list(
- /obj/item/attachable/bayonet/upp,
- /obj/item/attachable/heavy_barrel,
- )
- random_under_chance = 100
- random_spawn_under = list(
- /obj/item/attachable/attached_gun/extinguisher,
- )
-
-/obj/item/weapon/gun/shotgun/type23/riot_control
- name = "\improper Type 23-R riot control shotgun"
- desc = "This slow semi-automatic shotgun chambers 8 gauge, and packs a mean punch. The -R version is designed for UPP colony security personnel and handling colony rioting, sporting an integrated vertical grip but lacking in attachment choices."
- current_mag = /obj/item/ammo_magazine/internal/shotgun/type23/beanbag
- attachable_allowed = list(
- /obj/item/attachable/reddot, //Rail
- /obj/item/attachable/reddot/upp,
- /obj/item/attachable/reflex,
- /obj/item/attachable/reflex/upp,
- /obj/item/attachable/flashlight,
- /obj/item/attachable/magnetic_harness,
- /obj/item/attachable/verticalgrip, //Underbarrel
- /obj/item/attachable/verticalgrip/upp,
- /obj/item/attachable/stock/type23, //Stock
- )
- flags_gun_features = GUN_CAN_POINTBLANK|GUN_AMMO_COUNTER|GUN_INTERNAL_MAG
- flags_equip_slot = SLOT_BACK
- map_specific_decoration = FALSE
- gauge = "8g"
- starting_attachment_types = list(/obj/item/attachable/stock/type23)
-/obj/item/weapon/gun/shotgun/type23/riot_control/handle_starting_attachment()
- . = ..()
- var/obj/item/attachable/verticalgrip/integrated_grip = new(src)
- integrated_grip.flags_attach_features &= ~ATTACH_REMOVABLE
- integrated_grip.Attach(src)
- update_attachable(integrated_grip.slot)
+/obj/item/weapon/gun/shotgun/type23/riot
+ name = "\improper KS-29 riot shotgun"
+ desc = "A contemporary semi-automatic design based off of the KS-23, a Soviet-era riot shotgun chambered in 6 gauge shells. Like its Naval Infantry sibling, it is downgraded to 8 gauge chambering in order to make it more controllable without much loss to overall firepower and allow for easier storage of large quantities of shells on the individual user. Its internal tube magazine can store 4 shells."
+ icon = 'icons/obj/items/weapons/guns/guns_by_faction/upp.dmi'
+ icon_state = "type23_wood"
+ item_state = "type23_wood"
+ starting_attachment_types = list(/obj/item/attachable/stock/type23/wood)
-/obj/item/weapon/gun/shotgun/type23/pve
- current_mag = /obj/item/ammo_magazine/internal/shotgun/type23/special
+/obj/item/weapon/gun/shotgun/type23/riot/set_gun_attachment_offsets()
+ attachable_offset = list("muzzle_x" = 33, "muzzle_y" = 19,"rail_x" = 13, "rail_y" = 21, "under_x" = 24, "under_y" = 15, "stock_x" = 16, "stock_y" = 15)
//-------------------------------------------------------
//DOUBLE SHOTTY
@@ -653,7 +565,7 @@ can cause issues with ammo types getting mixed up during the burst.
accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_10
scatter = SCATTER_AMOUNT_TIER_7
scatter_unwielded = SCATTER_AMOUNT_TIER_1
- damage_mult = BASE_BULLET_DAMAGE_MULT - BULLET_DAMAGE_MULT_TIER_7
+ damage_mult = BASE_BULLET_DAMAGE_MULT
recoil = RECOIL_AMOUNT_TIER_3
recoil_unwielded = RECOIL_AMOUNT_TIER_1
@@ -676,7 +588,7 @@ can cause issues with ammo types getting mixed up during the burst.
scatter = SCATTER_AMOUNT_TIER_6
burst_scatter_mult = SCATTER_AMOUNT_TIER_10
scatter_unwielded = SCATTER_AMOUNT_TIER_2
- damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_7
+ damage_mult = BASE_BULLET_DAMAGE_MULT
recoil = RECOIL_AMOUNT_TIER_3
recoil_unwielded = RECOIL_AMOUNT_TIER_1
@@ -720,7 +632,7 @@ can cause issues with ammo types getting mixed up during the burst.
set_fire_delay(FIRE_DELAY_TIER_7)
accuracy_mult_unwielded = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_10
scatter_unwielded = SCATTER_AMOUNT_TIER_7
- damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_5
+ damage_mult = BASE_BULLET_DAMAGE_MULT
recoil = RECOIL_AMOUNT_TIER_2
recoil_unwielded = RECOIL_AMOUNT_TIER_3
@@ -793,7 +705,6 @@ can cause issues with ammo types getting mixed up during the burst.
/obj/item/attachable/lasersight,
/obj/item/attachable/stock/mou53,
)
- map_specific_decoration = TRUE
civilian_usable_override = FALSE
/obj/item/weapon/gun/shotgun/double/mou53/set_gun_attachment_offsets()
@@ -1076,8 +987,8 @@ can cause issues with ammo types getting mixed up during the burst.
//Shotguns in this category will need to be pumped each shot.
/obj/item/weapon/gun/shotgun/pump
- name = "\improper M37A2 pump shotgun"
- desc = "An Armat Battlefield Systems classic design, the M37A2 combines close-range firepower with long term reliability. Requires a pump, which is a Unique Action."
+ name = "Ithaca 37 pump-action shotgun"
+ desc = "A customized Ithaca 37 hunting shotgun. Its wooden stock has been replaced with a bakelite pistol grip, and its barrel and magazine tube have been cut down to half their lengths for easier handling in close quarters at the cost of magazine size, only fitting four shells and one chambered."
icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi'
icon_state = "m37"
item_state = "m37"
@@ -1111,11 +1022,10 @@ can cause issues with ammo types getting mixed up during the burst.
/obj/item/attachable/attached_gun/flamer/advanced,
/obj/item/attachable/stock/shotgun,
)
- map_specific_decoration = TRUE
/obj/item/weapon/gun/shotgun/pump/Initialize(mapload, spawn_empty)
. = ..()
- pump_delay = FIRE_DELAY_TIER_5*2
+ pump_delay = FIRE_DELAY_TIER_8
additional_fire_group_delay += pump_delay
@@ -1126,7 +1036,7 @@ can cause issues with ammo types getting mixed up during the burst.
/obj/item/weapon/gun/shotgun/pump/set_gun_config_values()
..()
set_burst_amount(BURST_AMOUNT_TIER_1)
- set_fire_delay(FIRE_DELAY_TIER_7 * 4)
+ set_fire_delay(FIRE_DELAY_TIER_7)
accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_3
accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_10
scatter = SCATTER_AMOUNT_TIER_6
@@ -1135,7 +1045,7 @@ can cause issues with ammo types getting mixed up during the burst.
damage_mult = BASE_BULLET_DAMAGE_MULT
recoil = RECOIL_AMOUNT_TIER_4
recoil_unwielded = RECOIL_AMOUNT_TIER_2
- wield_delay = WIELD_DELAY_MIN
+ //wield_delay = WIELD_DELAY_MIN
/obj/item/weapon/gun/shotgun/pump/unique_action(mob/user)
pump_shotgun(user)
@@ -1199,9 +1109,6 @@ can cause issues with ammo types getting mixed up during the burst.
//-------------------------------------------------------
-/obj/item/weapon/gun/shotgun/pump/special
- current_mag = /obj/item/ammo_magazine/internal/shotgun/special
-
/obj/item/weapon/gun/shotgun/pump/dual_tube
name = "generic dual-tube pump shotgun"
desc = "A twenty-round pump action shotgun with dual internal tube magazines. You can switch the active internal magazine by toggling the shotgun tube."
@@ -1252,7 +1159,7 @@ can cause issues with ammo types getting mixed up during the burst.
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb
name = "\improper HG 37-12 pump shotgun"
- desc = "A eight-round pump action shotgun with four-round capacity dual internal tube magazines allowing for quick reloading and highly accurate fire. Used exclusively by Colonial Marshals. You can switch the active internal magazine by toggling the shotgun tube."
+ desc = "An eight-round pump action shotgun with four-round capacity dual internal tube magazines allowing for quick reloading and highly accurate fire. Standard issue shotgun of the Colonial Marshals Bureau. By toggling the shotgun tube, you can swap between the internal magazines."
icon = 'icons/obj/items/weapons/guns/guns_by_faction/colony.dmi'
icon_state = "hg3712"
item_state = "hg3712"
@@ -1270,7 +1177,6 @@ can cause issues with ammo types getting mixed up during the burst.
/obj/item/attachable/attached_gun/flamer/advanced,
)
starting_attachment_types = list(/obj/item/attachable/stock/hg3712)
- map_specific_decoration = FALSE
civilian_usable_override = TRUE // Come on. It's THE, er, other, survivor shotgun.
@@ -1280,7 +1186,7 @@ can cause issues with ammo types getting mixed up during the burst.
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb/set_gun_config_values()
..()
- set_fire_delay(1.6 SECONDS)
+ set_fire_delay(FIRE_DELAY_TIER_7)
accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_3
accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_10
scatter = SCATTER_AMOUNT_TIER_6
@@ -1299,8 +1205,4 @@ can cause issues with ammo types getting mixed up during the burst.
current_mag = /obj/item/ammo_magazine/internal/shotgun/cmb/m3717
starting_attachment_types = list(/obj/item/attachable/stock/hg3712/m3717)
-/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb/m3717/set_gun_config_values()
- ..()
- damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_3
-
//-------------------------------------------------------
diff --git a/code/modules/projectiles/guns/smartgun.dm b/code/modules/projectiles/guns/smartgun.dm
index dca1410900..b19195127e 100644
--- a/code/modules/projectiles/guns/smartgun.dm
+++ b/code/modules/projectiles/guns/smartgun.dm
@@ -3,7 +3,7 @@
//Come get some.
/obj/item/weapon/gun/smartgun
- name = "\improper M56B smartgun"
+ name = "\improper M56A2 smartgun"
desc = "The actual firearm in the 4-piece M56 Smartgun System. Essentially a heavy, mobile machinegun.\nYou may toggle firing restrictions by using a special action.\nAlt-click it to open the feed cover and allow for reloading."
icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi'
icon_state = "m56"
diff --git a/code/modules/projectiles/guns/specialist/launcher/grenade_launcher.dm b/code/modules/projectiles/guns/specialist/launcher/grenade_launcher.dm
index 0f767d679d..9148062d0c 100644
--- a/code/modules/projectiles/guns/specialist/launcher/grenade_launcher.dm
+++ b/code/modules/projectiles/guns/specialist/launcher/grenade_launcher.dm
@@ -330,7 +330,7 @@
icon_state = "m79"
item_state = "m79"
flags_equip_slot = SLOT_BACK
- preload = /obj/item/explosive/grenade/slug/baton
+ preload = null
is_lobbing = TRUE
actions_types = list(/datum/action/item_action/toggle_firing_level)
diff --git a/code/modules/projectiles/magazines/pistols.dm b/code/modules/projectiles/magazines/pistols.dm
index 3ae221fd42..ddcbefcb63 100644
--- a/code/modules/projectiles/magazines/pistols.dm
+++ b/code/modules/projectiles/magazines/pistols.dm
@@ -60,48 +60,52 @@
//-------------------------------------------------------
-//88M4 based off VP70
+//vp70 based off VP70
-/obj/item/ammo_magazine/pistol/mod88
- name = "\improper 88M4 AP magazine (9mm)"
- default_ammo = /datum/ammo/bullet/pistol/ap
- caliber = "9mm"
- icon_state = "88m4"
- max_rounds = 19
- gun_type = /obj/item/weapon/gun/pistol/mod88
- ammo_band_icon = "+88m4_band"
- ammo_band_icon_empty = "+88m4_band_e"
- ammo_band_color = AMMO_BAND_COLOR_AP
-/obj/item/ammo_magazine/pistol/mod88/normalpoint // Unused
- name = "\improper 88M4 magazine (9mm)"
+/obj/item/ammo_magazine/pistol/vp70
+ name = "\improper VP70 Magazine (9mm)"
default_ammo = /datum/ammo/bullet/pistol
caliber = "9mm"
+ icon_state = "vp70"
+ max_rounds = 19
+ gun_type = /obj/item/weapon/gun/pistol/vp70
+ ammo_band_icon = "+vp70_band"
+ ammo_band_icon_empty = "+vp70_band_e"
ammo_band_color = null
-/obj/item/ammo_magazine/pistol/mod88/normalpoint/extended // Unused
- name = "\improper 88M4 extended magazine (9mm)"
- icon_state = "88m4_mag_ex"
+/obj/item/ammo_magazine/pistol/vp70/ap
+ name = "\improper VP70 AP magazine (9mm)"
+ default_ammo = /datum/ammo/bullet/pistol/ap
+ caliber = "9mm"
+ icon_state = "vp70"
+ max_rounds = 19
+ gun_type = /obj/item/weapon/gun/pistol/vp70
+ ammo_band_color = AMMO_BAND_COLOR_AP
+
+/obj/item/ammo_magazine/pistol/vp70/extended // Unused
+ name = "\improper vp70 extended magazine (9mm)"
+ icon_state = "vp70_mag_ex"
default_ammo = /datum/ammo/bullet/pistol
caliber = "9mm"
-/obj/item/ammo_magazine/pistol/mod88/toxin
- name = "\improper 88M4 toxic magazine (9mm)"
+/obj/item/ammo_magazine/pistol/vp70/toxin
+ name = "\improper vp70 toxic magazine (9mm)"
default_ammo = /datum/ammo/bullet/pistol/ap/toxin
ammo_band_color = AMMO_BAND_COLOR_TOXIN
-/obj/item/ammo_magazine/pistol/mod88/penetrating
- name = "\improper 88M4 wall-penetrating magazine (9mm)"
+/obj/item/ammo_magazine/pistol/vp70/penetrating
+ name = "\improper vp70 wall-penetrating magazine (9mm)"
default_ammo = /datum/ammo/bullet/pistol/ap/penetrating
ammo_band_color = AMMO_BAND_COLOR_PENETRATING
-/obj/item/ammo_magazine/pistol/mod88/incendiary
- name = "\improper 88M4 incendiary magazine (9mm)"
+/obj/item/ammo_magazine/pistol/vp70/incendiary
+ name = "\improper vp70 incendiary magazine (9mm)"
default_ammo = /datum/ammo/bullet/pistol/incendiary
ammo_band_color = AMMO_BAND_COLOR_INCENDIARY
-/obj/item/ammo_magazine/pistol/mod88/rubber
- name = "\improper 88M4 rubber magazine (9mm)"
+/obj/item/ammo_magazine/pistol/vp70/rubber
+ name = "\improper vp70 rubber magazine (9mm)"
default_ammo = /datum/ammo/bullet/pistol/rubber
ammo_band_color = AMMO_BAND_COLOR_RUBBER
@@ -269,36 +273,41 @@
//-------------------------------------------------------
//CLF HOLDOUT PISTOL
/obj/item/ammo_magazine/pistol/clfpistol
- name = "D18 magazine (9mm)"
- desc = "A small D18 magazine storing 7 9mm bullets. How is it even this small?"
- default_ammo = /datum/ammo/bullet/pistol
- caliber = "9mm"
+ name = "Type 18 magazine (.50)"
+ default_ammo = /datum/ammo/bullet/pistol/heavy/super
+ caliber = ".50"
icon = 'icons/obj/items/weapons/guns/ammo_by_faction/uscm.dmi'
icon_state = "m4a3" // placeholder
- max_rounds = 7
+ max_rounds = 3
w_class = SIZE_TINY
gun_type = /obj/item/weapon/gun/pistol/clfpistol
-
//-------------------------------------------------------
//.45 MARSHALS PISTOL //Inspired by the Browning Hipower
// rebalanced - singlefire, very strong bullets but slow to fire and heavy recoil
// redesigned - now rejected USCM sidearm model, utilized by Colonial Marshals and other stray groups.
/obj/item/ammo_magazine/pistol/highpower
- name = "\improper MK-45 Automagnum magazine (.45)"
- default_ammo = /datum/ammo/bullet/pistol/highpower
+ name = "\improper HG-45 'Aguila' magazine (.45)"
+ default_ammo = /datum/ammo/bullet/pistol/heavy
caliber = ".45"
icon = 'icons/obj/items/weapons/guns/ammo_by_faction/colony.dmi'
icon_state = "highpower"
- max_rounds = 13
+ max_rounds = 11
gun_type = /obj/item/weapon/gun/pistol/highpower
//comes in black, for the black variant of the highpower, better for military usage
/obj/item/ammo_magazine/pistol/highpower/black
+ name = "\improper HG 45 'Marina' magazine (.45)"
icon_state = "highpower_b"
+/obj/item/ammo_magazine/pistol/highpower/automag
+ name = "\improper HG 44 'Automag' magazine (.44)"
+ icon_state = "highpower_b"
+ max_rounds = 13
+ default_ammo = /datum/ammo/bullet/revolver
+
//-------------------------------------------------------
/*
Auto 9 The gun RoboCop uses. A better version of the VP78, with more rounds per magazine. Probably the best pistol around, but takes no attachments.
@@ -310,7 +319,7 @@ It is a modified Beretta 93R, and can fire three-round burst or single fire. Whe
default_ammo = /datum/ammo/bullet/pistol/squash
caliber = "9mm"
icon = 'icons/obj/items/weapons/guns/ammo_by_faction/uscm.dmi'
- icon_state = "88m4" //PLACEHOLDER
+ icon_state = "vp70" //PLACEHOLDER
max_rounds = 50
gun_type = /obj/item/weapon/gun/pistol/auto9
diff --git a/code/modules/projectiles/magazines/revolvers.dm b/code/modules/projectiles/magazines/revolvers.dm
index 7d56612530..8b32587c7a 100644
--- a/code/modules/projectiles/magazines/revolvers.dm
+++ b/code/modules/projectiles/magazines/revolvers.dm
@@ -78,21 +78,21 @@
max_rounds = 6
gun_type = /obj/item/weapon/gun/revolver/small
-/obj/item/ammo_magazine/revolver/cmb
- name = "\improper Spearhead hollowpoint speed loader (.357)"
- desc = "A speedloader of 6 hollowpoint .357 bullets, issued to Colonial Marshals to both prevent overpenetration and improve performance against unarmored criminals or wildlife. Less effective against hard targets, but what're the chances of encountering those?"
- default_ammo = /datum/ammo/bullet/revolver/small/hollowpoint
+/obj/item/ammo_magazine/revolver/spearhead
+ name = "\improper Spearhead speed loader (.357)"
+ desc = "A speedloader of 6 FMJ .357 bullets, uncommonly issued to Colonial Marshals due to overpenetration risks."
+ default_ammo = /datum/ammo/bullet/revolver/small
caliber = ".357"
icon = 'icons/obj/items/weapons/guns/ammo_by_faction/colony.dmi'
- icon_state = "cmb_hp"
+ icon_state = "cmb"
max_rounds = 6
- gun_type = /obj/item/weapon/gun/revolver/cmb
+ gun_type = /obj/item/weapon/gun/revolver/spearhead
-/obj/item/ammo_magazine/revolver/cmb/normalpoint //put these in the marshal ert - ok sure :)
+/obj/item/ammo_magazine/revolver/spearhead/hollowpoint
name = "\improper Spearhead speed loader (.357)"
- desc = "A speedloader of 6 FMJ .357 bullets, uncommonly issued to Colonial Marshals due to overpenetration risks."
- default_ammo = /datum/ammo/bullet/revolver/small
- icon_state = "cmb"
+ desc = "A speedloader of 6 hollowpoint .357 bullets, commonly issued to Colonial Marshals to both prevent overpenetration and improve performance against unarmored criminals or wildlife."
+ default_ammo = /datum/ammo/bullet/revolver/small/hollowpoint
+ icon_state = "cmb_hp"
/**
* MATEBA REVOLVER
@@ -205,15 +205,15 @@
//-------------------------------------------------------
//MARSHALS REVOLVER //Spearhead exists in Alien cannon.
-/obj/item/ammo_magazine/internal/revolver/cmb
+/obj/item/ammo_magazine/internal/revolver/spearhead
default_ammo = /datum/ammo/bullet/revolver/small
caliber = ".357"
- gun_type = /obj/item/weapon/gun/revolver/cmb
+ gun_type = /obj/item/weapon/gun/revolver/spearhead
-/obj/item/ammo_magazine/internal/revolver/cmb/hollowpoint
+/obj/item/ammo_magazine/internal/revolver/spearhead/hollowpoint
default_ammo = /datum/ammo/bullet/revolver/small/hollowpoint
caliber = ".357"
- gun_type = /obj/item/weapon/gun/revolver/cmb
+ gun_type = /obj/item/weapon/gun/revolver/spearhead
//-------------------------------------------------------
//BIG GAME HUNTER'S REVOLVER
diff --git a/code/modules/projectiles/magazines/shotguns.dm b/code/modules/projectiles/magazines/shotguns.dm
index 3c26685a55..e378aed3c4 100644
--- a/code/modules/projectiles/magazines/shotguns.dm
+++ b/code/modules/projectiles/magazines/shotguns.dm
@@ -24,7 +24,7 @@ var/list/shotgun_boxes_12g = list(
caliber = "12g"
gun_type = /obj/item/weapon/gun/shotgun
max_rounds = 25 // Real shotgun boxes are usually 5 or 25 rounds. This works with the new system, five handfuls.
- w_class = SIZE_LARGE // Can't throw it in your pocket, friend.
+ w_class = SIZE_MEDIUM // Can't throw it in your pocket, friend.
flags_magazine = AMMUNITION_REFILLABLE|AMMUNITION_HANDFUL_BOX
handful_state = "slug_shell"
transfer_handful_amount = 5
@@ -70,15 +70,6 @@ var/list/shotgun_boxes_12g = list(
default_ammo = /datum/ammo/bullet/shotgun/beanbag
handful_state = "beanbag_slug"
-/obj/item/ammo_magazine/shotgun/beanbag/riot
- name = "box of RC beanbag slugs"
- desc = "A box filled with beanbag shotgun shells used for non-lethal crowd control. Riot Control use only."
- icon_state = "beanbag"
- item_state = "beanbag"
- default_ammo = /datum/ammo/bullet/shotgun/beanbag
- handful_state = "beanbag_slug"
- caliber = "20g"
-
/obj/item/ammo_magazine/shotgun/buckshot/special
name = "box of buckshot shells, USCM special type"
desc = "A box filled with buckshot spread shotgun shells, USCM special type. 12 Gauge."
@@ -91,12 +82,14 @@ Generic internal magazine. All shotguns will use this or a variation with differ
Since all shotguns share ammo types, the gun path is going to be the same for all of them. And it
also doesn't really matter. You can only reload them with handfuls.
*/
+
/obj/item/ammo_magazine/internal/shotgun
name = "shotgun tube"
desc = "An internal magazine. It is not supposed to be seen or removed."
default_ammo = /datum/ammo/bullet/shotgun/buckshot
caliber = "12g"
- max_rounds = 9
+ max_rounds = 4
+ current_rounds = 0
chamber_closed = 0
/obj/item/ammo_magazine/internal/shotgun/double //For a double barrel.
@@ -117,36 +110,26 @@ also doesn't really matter. You can only reload them with handfuls.
caliber = "2 bore"
default_ammo = /datum/ammo/bullet/shotgun/twobore
+/obj/item/ammo_magazine/internal/shotgun/combat
+ caliber = "12g"
+ max_rounds = 6
+
/obj/item/ammo_magazine/internal/shotgun/combat/riot
- caliber = "20g"
default_ammo = /datum/ammo/bullet/shotgun/beanbag
+ current_rounds = 6
+
+/obj/item/ammo_magazine/internal/shotgun/marsoc
+ caliber = "12g"
+ max_rounds = 7
+ current_rounds = 7
/obj/item/ammo_magazine/internal/shotgun/merc
max_rounds = 5
-/obj/item/ammo_magazine/internal/shotgun/buckshot
- default_ammo = /datum/ammo/bullet/shotgun/buckshot
-
/obj/item/ammo_magazine/internal/shotgun/type23
- default_ammo = /datum/ammo/bullet/shotgun/heavy/buckshot
caliber = "8g"
max_rounds = 4
-/obj/item/ammo_magazine/internal/shotgun/type23/slug
- default_ammo = /datum/ammo/bullet/shotgun/heavy/slug
-
-/obj/item/ammo_magazine/internal/shotgun/type23/flechette
- default_ammo = /datum/ammo/bullet/shotgun/heavy/flechette
-
-/obj/item/ammo_magazine/internal/shotgun/type23/dragonsbreath
- default_ammo = /datum/ammo/bullet/shotgun/heavy/buckshot/dragonsbreath
-
-/obj/item/ammo_magazine/internal/shotgun/type23/beanbag
- default_ammo = /datum/ammo/bullet/shotgun/heavy/beanbag
-
-/obj/item/ammo_magazine/internal/shotgun/type23/special
- default_ammo = /datum/ammo/bullet/shotgun/heavy/buckshot/special
-
/obj/item/ammo_magazine/internal/shotgun/cmb
default_ammo = /datum/ammo/bullet/shotgun/buckshot
max_rounds = 4
@@ -154,9 +137,6 @@ also doesn't really matter. You can only reload them with handfuls.
/obj/item/ammo_magazine/internal/shotgun/cmb/m3717
max_rounds = 5
-/obj/item/ammo_magazine/internal/shotgun/special
- default_ammo = /datum/ammo/bullet/shotgun/buckshot/special
-
//-------------------------------------------------------
/*
diff --git a/code/modules/reagents/chemistry_reagents/other.dm b/code/modules/reagents/chemistry_reagents/other.dm
index bbeeca2e3c..557e977929 100644
--- a/code/modules/reagents/chemistry_reagents/other.dm
+++ b/code/modules/reagents/chemistry_reagents/other.dm
@@ -109,10 +109,10 @@
description = "A ubiquitous chemical substance that is composed of hydrogen and oxygen. It is a vital component to all known forms of organic life, even though it provides no calories or organic nutrients. It is also an effective solvent and can be used for cleaning."
reagent_state = LIQUID
color = "#0064C8" // rgb: 0, 100, 200
- custom_metabolism = AMOUNT_PER_TIME(1, 200 SECONDS)
chemclass = CHEM_CLASS_BASIC
chemfiresupp = TRUE
intensitymod = -3
+ properties = list(PROPERTY_HEMOGENIC = 1)
/datum/reagent/water/reaction_turf(turf/T, volume)
if(!istype(T)) return
@@ -132,6 +132,12 @@
if(M.fire_stacks <= 0)
M.ExtinguishMob()
+/datum/reagent/water/on_mob_life(mob/living/M)
+ . = ..()
+ if(ishuman(M) && volume >= 100 && prob(25))
+ var/mob/living/carbon/human/human = M
+ human.vomit()
+
/datum/reagent/water/holywater
name = "Holy Water"
id = "holywater"
diff --git a/code/modules/shuttle/computers/dropship_computer.dm b/code/modules/shuttle/computers/dropship_computer.dm
index 0024958c8e..ccc7c891e5 100644
--- a/code/modules/shuttle/computers/dropship_computer.dm
+++ b/code/modules/shuttle/computers/dropship_computer.dm
@@ -259,8 +259,8 @@
hijack.fire()
GLOB.alt_ctrl_disabled = TRUE
- marine_announcement("Unscheduled dropship departure detected from operational area. Hijack likely. Shutting down autopilot.", "Dropship Alert", 'sound/AI/hijack.ogg', logging = ARES_LOG_SECURITY)
- log_ares_flight("Unknown", "Unscheduled dropship departure detected from operational area. Hijack likely. Shutting down autopilot.")
+ marine_announcement("Unknown fault in remote flight control. Resolving as possible hijack. Marking dropship as possibly hostile and disconnecting from sensor matrix.", "Dropship Alert", 'sound/misc/notice2.ogg', logging = ARES_LOG_SECURITY)
+ log_ares_flight("Unknown", "Unknown fault in remote flight control. Resolving as possible hijack. Marking dropship as possibly hostile and disconnecting from sensor matrix.")
var/mob/living/carbon/xenomorph/xeno = user
var/hivenumber = XENO_HIVE_NORMAL
@@ -306,7 +306,7 @@
.["target_destination"] = shuttle.in_flyby? "Flyby" : shuttle.destination.name
.["door_status"] = is_remote ? list() : shuttle.get_door_data()
- .["has_flyby_skill"] = skillcheck(user, SKILL_PILOT, SKILL_PILOT_EXPERT)
+ .["has_flyby_skill"] = skillcheck(user, SKILL_PILOT, SKILL_PILOT_TRAINED)
// Launch Alarm Variables
.["playing_launch_announcement_alarm"] = shuttle.playing_launch_announcement_alarm
@@ -363,7 +363,7 @@
var/dock_id = params["target"]
if(dock_id == DROPSHIP_FLYBY_ID)
- if(!skillcheck(user, SKILL_PILOT, SKILL_PILOT_EXPERT))
+ if(!skillcheck(user, SKILL_PILOT, SKILL_PILOT_TRAINED))
to_chat(user, SPAN_WARNING("You don't have the skill to perform a flyby."))
return FALSE
update_equipment(is_optimised, TRUE)
@@ -465,7 +465,7 @@
shuttle.setTimer(DROPSHIP_WARMUP_TIME)
if("play_launch_announcement_alarm")
if (shuttle.mode != SHUTTLE_IDLE && shuttle.mode != SHUTTLE_RECHARGING)
- to_chat(usr, SPAN_WARNING("The Launch Announcement Alarm is designed to tell people that you're going to take off soon."))
+ to_chat(usr, SPAN_WARNING("The launch warning alarm is only for alerting people to a takeoff."))
return
shuttle.alarm_sound_loop.start()
shuttle.playing_launch_announcement_alarm = TRUE
@@ -503,7 +503,7 @@
/obj/structure/machinery/computer/shuttle/dropship/flight/toc
name = "dropship control screen"
- desc = "A screen on the TOC computer for controlling the dropship linked to it."
+ desc = "A screen on the TOC computer for controlling the dropship linked to it. Has an abbreviated version of the flight controls and data."
icon = 'icons/obj/structures/machinery/computer.dmi'
icon_state = "toc_shuttle"
shuttleId = DROPSHIP_MIDWAY
diff --git a/code/modules/shuttle/dropship.dm b/code/modules/shuttle/dropship.dm
index bf38f9fa3b..c4d34fe7cf 100644
--- a/code/modules/shuttle/dropship.dm
+++ b/code/modules/shuttle/dropship.dm
@@ -222,6 +222,17 @@
opacity = TRUE
/obj/structure/shuttle/part/midway/transparent
+ desc = "The cockpit canopy transparency of a UD-4 gunship. Composed of a composite material that matches the hull's radar absorbency while providing protection against glare and sniping lasers."
+ opacity = FALSE
+
+/obj/structure/shuttle/part/midway/transparent/nosecone
+ desc = "Part of the nose assembly of the UD-4 Cheyenne. Contains the forward sensor complex."
+
+/obj/structure/shuttle/part/midway/gunpod_prop
+ name = "\improper Midway"
+ desc = "The nose of a UD-4 Cheyenne dropship. Contains the AESA radar system and the chin-mounted powered gunpod containing the GAU-113/B 25mm rotary autocannon with a 900 round drum."
+ icon = 'icons/turf/dropship4.dmi'
+ icon_state = "101a"
opacity = FALSE
/obj/structure/shuttle/part/cyclone
@@ -231,6 +242,17 @@
opacity = TRUE
/obj/structure/shuttle/part/cyclone/transparent
+ desc = "The cockpit canopy transparency of a UD-4 gunship. Composed of a composite material that matches the hull's radar absorbency while providing protection against glare and sniping lasers."
+ opacity = FALSE
+
+/obj/structure/shuttle/part/cyclone/transparent/nosecone
+ desc = "Part of the nose assembly of the UD-4 Cheyenne. Contains the forward sensor complex."
+
+/obj/structure/shuttle/part/cyclone/gunpod_prop
+ name = "\improper Cyclone"
+ desc = "The nose of a UD-4 Cheyenne dropship. Contains the AESA radar system and the chin-mounted powered gunpod containing the GAU-113/B 25mm rotary autocannon with a 900 round drum."
+ icon = 'icons/turf/dropship2.dmi'
+ icon_state = "101a"
opacity = FALSE
/obj/structure/shuttle/part/tornado
@@ -240,6 +262,17 @@
opacity = TRUE
/obj/structure/shuttle/part/tornado/transparent
+ desc = "The cockpit canopy transparency of a UD-4 gunship. Composed of a composite material that matches the hull's radar absorbency while providing protection against glare and sniping lasers."
+ opacity = FALSE
+
+/obj/structure/shuttle/part/tornado/transparent/nosecone
+ desc = "Part of the nose assembly of the UD-4 Cheyenne. Contains the forward sensor complex."
+
+/obj/structure/shuttle/part/tornado/gunpod_prop
+ name = "\improper Tornado"
+ desc = "The nose of a UD-4 Cheyenne dropship. Contains the AESA radar system and the chin-mounted powered gunpod containing the GAU-113/B 25mm rotary autocannon with a 900 round drum."
+ icon = 'icons/turf/dropship3.dmi'
+ icon_state = "101a"
opacity = FALSE
/obj/structure/shuttle/part/typhoon
@@ -249,6 +282,17 @@
opacity = TRUE
/obj/structure/shuttle/part/typhoon/transparent
+ desc = "The cockpit canopy transparency of a UD-4 gunship. Composed of a composite material that matches the hull's radar absorbency while providing protection against glare and sniping lasers."
+ opacity = FALSE
+
+/obj/structure/shuttle/part/typhoon/transparent/nosecone
+ desc = "Part of the nose assembly of the UD-4 Cheyenne. Contains the forward sensor complex."
+
+/obj/structure/shuttle/part/typhoon/gunpod_prop
+ name = "\improper Typhoon"
+ desc = "The nose of a UD-4 Cheyenne dropship. Contains the AESA radar system and the chin-mounted powered gunpod containing the GAU-113/B 25mm rotary autocannon with a 900 round drum."
+ icon = 'icons/turf/dropship3.dmi'
+ icon_state = "101a"
opacity = FALSE
/obj/structure/shuttle/part/tripoli
@@ -258,4 +302,15 @@
opacity = TRUE
/obj/structure/shuttle/part/tripoli/transparent
+ desc = "The cockpit canopy transparency of a UD-4 gunship. Composed of a composite material that matches the hull's radar absorbency while providing protection against glare and sniping lasers."
+ opacity = FALSE
+
+/obj/structure/shuttle/part/tripoli/transparent/nosecone
+ desc = "Part of the nose assembly of the UD-4 Cheyenne. Contains the forward sensor complex."
+
+/obj/structure/shuttle/part/tripoli/gunpod_prop
+ name = "\improper Tripoli"
+ desc = "The nose of a UD-4 Cheyenne dropship. Contains the AESA radar system and the chin-mounted powered gunpod containing the GAU-113/B 25mm rotary autocannon with a 900 round drum."
+ icon = 'icons/turf/dropship.dmi'
+ icon_state = "101a"
opacity = FALSE
diff --git a/code/modules/shuttle/shuttles/shipmap_elevator.dm b/code/modules/shuttle/shuttles/shipmap_elevator.dm
new file mode 100644
index 0000000000..c49fa4a5dd
--- /dev/null
+++ b/code/modules/shuttle/shuttles/shipmap_elevator.dm
@@ -0,0 +1,76 @@
+/obj/docking_port/mobile/trijent_elevator/shipmap_elevator
+ name = "Vehicle Elevator One"
+ height = 5
+ width = 7
+ preferred_direction = NORTH
+ port_direction = SOUTH
+
+ id = MOBILE_SHUTTLE_SHIPMAP_ELEVATOR_ONE
+
+ callTime = 5 SECONDS
+ ignitionTime = 1 SECONDS
+
+ ignition_sound = 'sound/machines/asrs_raising.ogg'
+ landing_sound = null
+ ambience_idle = null
+ ambience_flight = null
+ var/list/railings = list()
+ var/list/gears = list()
+ area_type = /area/golden_arrow/vehicle_shuttle
+
+/obj/docking_port/mobile/trijent_elevator/shipmap_elevator/get_transit_path_type()
+ return /turf/closed/wall/almayer/outer
+
+/obj/docking_port/mobile/trijent_elevator/shipmap_elevator/register()
+ . = ..()
+ for(var/obj/structure/machinery/gear/G in machines)
+ if(G.id == id)
+ gears += G
+ for(var/obj/structure/machinery/door/poddoor/railing/R in machines)
+ if(R.id == id)
+ railings += R
+
+/obj/docking_port/mobile/trijent_elevator/shipmap_elevator/on_ignition()
+ for(var/i in gears)
+ var/obj/structure/machinery/gear/G = i
+ G.start_moving()
+ var/obj/docking_port/stationary/dropzone = destination
+ playsound(dropzone.return_center_turf(), ignition_sound, 60, 0)
+ playsound(return_center_turf(), ignition_sound, 60, 0)
+
+/obj/docking_port/mobile/trijent_elevator/shipmap_elevator/on_prearrival()
+ ..()
+ for(var/i in gears)
+ var/obj/structure/machinery/gear/G = i
+ G.stop_moving()
+
+/obj/docking_port/mobile/trijent_elevator/shipmap_elevator/two
+ name = "Vehicle Elevator Two"
+ id = MOBILE_SHUTTLE_SHIPMAP_ELEVATOR_TWO
+ area_type = /area/golden_arrow/vehicle_shuttle/two
+
+/obj/docking_port/mobile/trijent_elevator/shipmap_elevator/cargo
+ name = "Cargo Elevator"
+ height = 6
+ width = 8
+ id = MOBILE_SHUTTLE_SHIPMAP_ELEVATOR_CARGO
+ area_type = /area/golden_arrow/cargo_shuttle/elevator
+
+/obj/docking_port/stationary/shipmap_elevator/visible_message()
+ return
+
+/obj/docking_port/stationary/shipmap_elevator
+ dir = NORTH
+ height = 5
+ width = 7
+
+/obj/docking_port/stationary/trijent_elevator/shipmap_elevator/one
+ name = "Vehicle Elevator One"
+
+/obj/docking_port/stationary/trijent_elevator/shipmap_elevator/two
+ name = "Vehicle Elevator Two"
+
+/obj/docking_port/stationary/trijent_elevator/shipmap_elevator/cargo
+ name = "Cargo Elevator"
+ height = 6
+ width = 8
diff --git a/code/modules/vehicles/interior/interactable/vendors.dm b/code/modules/vehicles/interior/interactable/vendors.dm
index aa2411f89f..fc77d4d0d5 100644
--- a/code/modules/vehicles/interior/interactable/vendors.dm
+++ b/code/modules/vehicles/interior/interactable/vendors.dm
@@ -185,7 +185,7 @@
list("M4RA Battle Rifle", round(scale * 2), /obj/item/weapon/gun/rifle/m4ra, VENDOR_ITEM_REGULAR),
list("SIDEARMS", -1, null, null),
- list("88 Mod 4 Combat Pistol", round(scale * 2), /obj/item/weapon/gun/pistol/mod88, VENDOR_ITEM_REGULAR),
+ list("VP70 Combat Pistol", round(scale * 2), /obj/item/weapon/gun/pistol/vp70, VENDOR_ITEM_REGULAR),
list("M44 Combat Revolver", round(scale * 1.5), /obj/item/weapon/gun/revolver/m44, VENDOR_ITEM_REGULAR),
list("M4A3 Service Pistol", round(scale * 2.5), /obj/item/weapon/gun/pistol/m4a3, VENDOR_ITEM_REGULAR),
@@ -215,7 +215,7 @@
list("M39 HV Magazine (10x20mm)", round(scale * 6), /obj/item/ammo_magazine/smg/m39, VENDOR_ITEM_REGULAR),
list("M44 Speed Loader (.44)", round(scale * 4), /obj/item/ammo_magazine/revolver, VENDOR_ITEM_REGULAR),
list("M4A3 Magazine (9mm)", round(scale * 10), /obj/item/ammo_magazine/pistol, VENDOR_ITEM_REGULAR),
- list("88 Mod 4 Magazine (9mm)", round(scale * 8), /obj/item/ammo_magazine/pistol/mod88/normalpoint, VENDOR_ITEM_REGULAR),
+ list("VP70 Magazine (9mm)", round(scale * 8), /obj/item/ammo_magazine/pistol/vp70, VENDOR_ITEM_REGULAR),
list("ARMOR-PIERCING AMMUNITION", -1, null, null),
list("M4RA AP Magazine (10x24mm)", 0, /obj/item/ammo_magazine/rifle/m4ra/ap, VENDOR_ITEM_REGULAR),
diff --git a/colonialmarines.dme b/colonialmarines.dme
index fa6152a276..e403f9aff4 100644
--- a/colonialmarines.dme
+++ b/colonialmarines.dme
@@ -677,6 +677,7 @@
#include "code\datums\weather\weather_map_holder.dm"
#include "code\datums\weather\weather_events\big_red.dm"
#include "code\datums\weather\weather_events\faction_clash.dm"
+#include "code\datums\weather\weather_events\long.dm"
#include "code\datums\weather\weather_events\lv522_chances_claim.dm"
#include "code\datums\weather\weather_events\lv624.dm"
#include "code\datums\weather\weather_events\new_varadero.dm"
@@ -691,6 +692,7 @@
#include "code\datums\xeno_shields\xeno_shield.dm"
#include "code\datums\xeno_shields\shield_types\crusher_shield.dm"
#include "code\datums\xeno_shields\shield_types\hedgehog_shield.dm"
+#include "code\datums\xeno_shields\shield_types\king_shield.dm"
#include "code\datums\xeno_shields\shield_types\vanguard_shield.dm"
#include "code\defines\procs\admin.dm"
#include "code\defines\procs\announcement.dm"
@@ -2014,6 +2016,9 @@
#include "code\modules\mob\living\carbon\xenomorph\abilities\facehugger\facehugger_powers.dm"
#include "code\modules\mob\living\carbon\xenomorph\abilities\hivelord\hivelord_abilities.dm"
#include "code\modules\mob\living\carbon\xenomorph\abilities\hivelord\hivelord_powers.dm"
+#include "code\modules\mob\living\carbon\xenomorph\abilities\king\king_abilities.dm"
+#include "code\modules\mob\living\carbon\xenomorph\abilities\king\king_macros.dm"
+#include "code\modules\mob\living\carbon\xenomorph\abilities\king\king_powers.dm"
#include "code\modules\mob\living\carbon\xenomorph\abilities\lesser_drone\lesser_drone_abilities.dm"
#include "code\modules\mob\living\carbon\xenomorph\abilities\lesser_drone\lesser_drone_macros.dm"
#include "code\modules\mob\living\carbon\xenomorph\abilities\lesser_drone\lesser_drone_powers.dm"
@@ -2059,6 +2064,7 @@
#include "code\modules\mob\living\carbon\xenomorph\castes\Facehugger.dm"
#include "code\modules\mob\living\carbon\xenomorph\castes\Hellhound.dm"
#include "code\modules\mob\living\carbon\xenomorph\castes\Hivelord.dm"
+#include "code\modules\mob\living\carbon\xenomorph\castes\king.dm"
#include "code\modules\mob\living\carbon\xenomorph\castes\Larva.dm"
#include "code\modules\mob\living\carbon\xenomorph\castes\lesser_drone.dm"
#include "code\modules\mob\living\carbon\xenomorph\castes\Lurker.dm"
@@ -2319,6 +2325,7 @@
#include "code\modules\shuttle\computers\trijent_elevator_control.dm"
#include "code\modules\shuttle\shuttles\dropship.dm"
#include "code\modules\shuttle\shuttles\ert.dm"
+#include "code\modules\shuttle\shuttles\shipmap_elevator.dm"
#include "code\modules\shuttle\shuttles\trijent_elevator.dm"
#include "code\modules\shuttle\shuttles\crashable\crashable.dm"
#include "code\modules\shuttle\shuttles\crashable\escape_shuttle.dm"
diff --git a/html/changelogs/archive/2024-08.yml b/html/changelogs/archive/2024-08.yml
index d574881cf2..65fe0ef0b8 100644
--- a/html/changelogs/archive/2024-08.yml
+++ b/html/changelogs/archive/2024-08.yml
@@ -104,3 +104,29 @@
- rscadd: Added something
private-tristan:
- rscadd: ports TG strip menu
+2024-08-26:
+ sunofang:
+ - admin: Added infinite weather options.
+2024-08-27:
+ Max-023:
+ - rscadd: Helmet cover item, added to the squad prep vendor
+ - imageadd: Helmet cover sprites
+ Meatstuff882:
+ - rscadd: 'The utility vendor now has knives in it.
+
+ :cl:'
+2024-08-29:
+ AndroBetel:
+ - rscadd: Water now helps you regen blood.
+ - rscadd: Vomiting now removes some reagents, helping negate OD effects.
+ - balance: Vulture no longer has minimum range requirements to hit bugs.
+ - rscadd: Adds restricted underwear.
+ Doubleumc:
+ - code_imp: changed slotting - new players and players that got skipped previous
+ rounds have a higher chance to get a slot
+ - code_imp: AI caches valid targets for better performance
+ Merrgear:
+ - qol: made crit less boring
+ - code_imp: 'changed the crit code to not knock you unconcious
+
+ :cl:'
diff --git a/html/changelogs/archive/2024-09.yml b/html/changelogs/archive/2024-09.yml
new file mode 100644
index 0000000000..5026bd2355
--- /dev/null
+++ b/html/changelogs/archive/2024-09.yml
@@ -0,0 +1,20 @@
+2024-09-04:
+ AndroBetel:
+ - rscadd: MD blips now show up for humans in 1 tile radius from MD user.
+ Max-023:
+ - rscadd: on Sorokyne, UPP 'Territorial Guard' vendor to replace USCM MP Vendors
+ - rscdel: on Sorokyne, removed USCM Galley Vendors
+ - bugfix: on Sorokyne, Replaces USCM/CMB guns, ammunition, and belts with UPP counterparts
+2024-09-05:
+ BonniePandora:
+ - qol: Toolbelts can now carry the high-capacity blowtorch
+2024-09-06:
+ Max-023:
+ - bugfix: SG Belt hold list modified to accept all revolvers
+2024-09-07:
+ Doubleumc:
+ - admin: removed King from GM panel spawner
+ - bugfix: fixed galley changes being reverted
+ Noname995:
+ - rscadd: Added king with changed abilities and AI to use abilities, new event boss
+ or end game tool for GMs.
diff --git a/icons/effects/96x96.dmi b/icons/effects/96x96.dmi
index 521aea66d4..011bacb760 100644
Binary files a/icons/effects/96x96.dmi and b/icons/effects/96x96.dmi differ
diff --git a/icons/effects/heavyimpact.dmi b/icons/effects/heavyimpact.dmi
new file mode 100644
index 0000000000..e7af5cf49b
Binary files /dev/null and b/icons/effects/heavyimpact.dmi differ
diff --git a/icons/effects/warning_stripes.dmi b/icons/effects/warning_stripes.dmi
index c962ef88bf..766e4eb778 100644
Binary files a/icons/effects/warning_stripes.dmi and b/icons/effects/warning_stripes.dmi differ
diff --git a/icons/mob/humans/onmob/back.dmi b/icons/mob/humans/onmob/back.dmi
index 24840d6348..d237128b24 100644
Binary files a/icons/mob/humans/onmob/back.dmi and b/icons/mob/humans/onmob/back.dmi differ
diff --git a/icons/mob/humans/onmob/belt.dmi b/icons/mob/humans/onmob/belt.dmi
index 9079bda5e7..5c3e8a6dc6 100644
Binary files a/icons/mob/humans/onmob/belt.dmi and b/icons/mob/humans/onmob/belt.dmi differ
diff --git a/icons/mob/humans/onmob/head_1.dmi b/icons/mob/humans/onmob/head_1.dmi
index 169aa524d2..f228b4fa72 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/helmet_garb.dmi b/icons/mob/humans/onmob/helmet_garb.dmi
index 31ce025b09..062400725a 100644
Binary files a/icons/mob/humans/onmob/helmet_garb.dmi and b/icons/mob/humans/onmob/helmet_garb.dmi differ
diff --git a/icons/mob/humans/onmob/items_lefthand_1.dmi b/icons/mob/humans/onmob/items_lefthand_1.dmi
index a872ddcc8a..46bc771b52 100644
Binary files a/icons/mob/humans/onmob/items_lefthand_1.dmi and b/icons/mob/humans/onmob/items_lefthand_1.dmi differ
diff --git a/icons/mob/humans/onmob/items_righthand_1.dmi b/icons/mob/humans/onmob/items_righthand_1.dmi
index c0b150a2d7..8a0fbd85c6 100644
Binary files a/icons/mob/humans/onmob/items_righthand_1.dmi and b/icons/mob/humans/onmob/items_righthand_1.dmi differ
diff --git a/icons/mob/humans/onmob/suit_1.dmi b/icons/mob/humans/onmob/suit_1.dmi
index a316ccf8c4..c9727790e0 100644
Binary files a/icons/mob/humans/onmob/suit_1.dmi and b/icons/mob/humans/onmob/suit_1.dmi differ
diff --git a/icons/mob/humans/onmob/suit_slot.dmi b/icons/mob/humans/onmob/suit_slot.dmi
index 555b5a0e7a..4790ee7af6 100644
Binary files a/icons/mob/humans/onmob/suit_slot.dmi and b/icons/mob/humans/onmob/suit_slot.dmi differ
diff --git a/icons/mob/humans/onmob/uniform_0.dmi b/icons/mob/humans/onmob/uniform_0.dmi
index 8656f89278..cfe9cd70bb 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/humans/undershirt.dmi b/icons/mob/humans/undershirt.dmi
index 468778851c..928dc332e6 100644
Binary files a/icons/mob/humans/undershirt.dmi and b/icons/mob/humans/undershirt.dmi differ
diff --git a/icons/mob/xenos/king.dmi b/icons/mob/xenos/king.dmi
new file mode 100644
index 0000000000..cee599ba7f
Binary files /dev/null and b/icons/mob/xenos/king.dmi differ
diff --git a/icons/mob/xenos/overlay_effects64x64.dmi b/icons/mob/xenos/overlay_effects64x64.dmi
index 360aa4c54f..0be09311a7 100644
Binary files a/icons/mob/xenos/overlay_effects64x64.dmi and b/icons/mob/xenos/overlay_effects64x64.dmi differ
diff --git a/icons/mob/xenos/roguedamage.dmi b/icons/mob/xenos/roguedamage.dmi
new file mode 100644
index 0000000000..92ca12ed9d
Binary files /dev/null and b/icons/mob/xenos/roguedamage.dmi differ
diff --git a/icons/mob/xenos/rogueking.dmi b/icons/mob/xenos/rogueking.dmi
new file mode 100644
index 0000000000..10ea568069
Binary files /dev/null and b/icons/mob/xenos/rogueking.dmi differ
diff --git a/icons/mob/xenos/structures64x64.dmi b/icons/mob/xenos/structures64x64.dmi
index 92ffdccf3b..410f1a6f49 100644
Binary files a/icons/mob/xenos/structures64x64.dmi and b/icons/mob/xenos/structures64x64.dmi differ
diff --git a/icons/obj/items/clothing/belts.dmi b/icons/obj/items/clothing/belts.dmi
index 4e9a85cc90..90aacb3563 100644
Binary files a/icons/obj/items/clothing/belts.dmi and b/icons/obj/items/clothing/belts.dmi differ
diff --git a/icons/obj/items/clothing/cm_hats.dmi b/icons/obj/items/clothing/cm_hats.dmi
index 1411de23fb..f6061c5dbd 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/cm_suits.dmi b/icons/obj/items/clothing/cm_suits.dmi
index 2b3b3a091c..e5c2820849 100644
Binary files a/icons/obj/items/clothing/cm_suits.dmi and b/icons/obj/items/clothing/cm_suits.dmi differ
diff --git a/icons/obj/items/clothing/uniforms.dmi b/icons/obj/items/clothing/uniforms.dmi
index 4442a8049d..1e852ba5d5 100644
Binary files a/icons/obj/items/clothing/uniforms.dmi and b/icons/obj/items/clothing/uniforms.dmi differ
diff --git a/icons/obj/items/helmet_garb.dmi b/icons/obj/items/helmet_garb.dmi
index 6886ec3556..5403ae28b7 100644
Binary files a/icons/obj/items/helmet_garb.dmi and b/icons/obj/items/helmet_garb.dmi differ
diff --git a/icons/obj/items/storage.dmi b/icons/obj/items/storage.dmi
index 52ff2c5baa..6784f4eb6e 100644
Binary files a/icons/obj/items/storage.dmi and b/icons/obj/items/storage.dmi differ
diff --git a/icons/obj/items/toy.dmi b/icons/obj/items/toy.dmi
index 4a40561475..9f78fb92ae 100644
Binary files a/icons/obj/items/toy.dmi and b/icons/obj/items/toy.dmi differ
diff --git a/icons/obj/items/weapons/guns/ammo_by_faction/uscm.dmi b/icons/obj/items/weapons/guns/ammo_by_faction/uscm.dmi
index 0d50208cc8..0ea04eeb2a 100644
Binary files a/icons/obj/items/weapons/guns/ammo_by_faction/uscm.dmi and b/icons/obj/items/weapons/guns/ammo_by_faction/uscm.dmi differ
diff --git a/icons/obj/items/weapons/guns/attachments.dmi b/icons/obj/items/weapons/guns/attachments.dmi
index 332217fe1c..96038c374a 100644
Binary files a/icons/obj/items/weapons/guns/attachments.dmi and b/icons/obj/items/weapons/guns/attachments.dmi differ
diff --git a/icons/obj/items/weapons/guns/attachments/stock.dmi b/icons/obj/items/weapons/guns/attachments/stock.dmi
index d3a95284a2..506148cedf 100644
Binary files a/icons/obj/items/weapons/guns/attachments/stock.dmi and b/icons/obj/items/weapons/guns/attachments/stock.dmi differ
diff --git a/icons/obj/items/weapons/guns/attachments/under.dmi b/icons/obj/items/weapons/guns/attachments/under.dmi
index 8947ecd174..b98e185f02 100644
Binary files a/icons/obj/items/weapons/guns/attachments/under.dmi and b/icons/obj/items/weapons/guns/attachments/under.dmi differ
diff --git a/icons/obj/items/weapons/guns/guns_by_faction/colony.dmi b/icons/obj/items/weapons/guns/guns_by_faction/colony.dmi
index 04c1fd5468..feca8443db 100644
Binary files a/icons/obj/items/weapons/guns/guns_by_faction/colony.dmi and b/icons/obj/items/weapons/guns/guns_by_faction/colony.dmi differ
diff --git a/icons/obj/items/weapons/guns/guns_by_faction/upp.dmi b/icons/obj/items/weapons/guns/guns_by_faction/upp.dmi
index 669efcfc59..16e37d5f4e 100644
Binary files a/icons/obj/items/weapons/guns/guns_by_faction/upp.dmi and b/icons/obj/items/weapons/guns/guns_by_faction/upp.dmi differ
diff --git a/icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi b/icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi
index e57c625158..b107511d67 100644
Binary files a/icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi and b/icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi differ
diff --git a/icons/obj/items/weapons/guns/lineart.dmi b/icons/obj/items/weapons/guns/lineart.dmi
index 6920290c7e..7e8537cca5 100644
Binary files a/icons/obj/items/weapons/guns/lineart.dmi and b/icons/obj/items/weapons/guns/lineart.dmi differ
diff --git a/icons/obj/structures/alien/xenoKingHatchery.dmi b/icons/obj/structures/alien/xenoKingHatchery.dmi
new file mode 100644
index 0000000000..e7911658b3
Binary files /dev/null and b/icons/obj/structures/alien/xenoKingHatchery.dmi differ
diff --git a/icons/obj/structures/doors/blastdoors_shutters.dmi b/icons/obj/structures/doors/blastdoors_shutters.dmi
index c5ec97be49..8c63d05809 100644
Binary files a/icons/obj/structures/doors/blastdoors_shutters.dmi and b/icons/obj/structures/doors/blastdoors_shutters.dmi differ
diff --git a/icons/obj/structures/gun_racks.dmi b/icons/obj/structures/gun_racks.dmi
index 5b2819a2bc..2b3b530204 100644
Binary files a/icons/obj/structures/gun_racks.dmi and b/icons/obj/structures/gun_racks.dmi differ
diff --git a/icons/obj/structures/props/almayer_props.dmi b/icons/obj/structures/props/almayer_props.dmi
index e928213f8f..44a4a989ae 100644
Binary files a/icons/obj/structures/props/almayer_props.dmi and b/icons/obj/structures/props/almayer_props.dmi differ
diff --git a/icons/obj/structures/props/almayer_props64.dmi b/icons/obj/structures/props/almayer_props64.dmi
index c45b37d6ef..0b14e7b8a6 100644
Binary files a/icons/obj/structures/props/almayer_props64.dmi and b/icons/obj/structures/props/almayer_props64.dmi differ
diff --git a/icons/obj/structures/props/banners.dmi b/icons/obj/structures/props/banners.dmi
index a83bc6ee74..b384587d93 100644
Binary files a/icons/obj/structures/props/banners.dmi and b/icons/obj/structures/props/banners.dmi differ
diff --git a/icons/obj/structures/tables.dmi b/icons/obj/structures/tables.dmi
index 2528751b60..5f6aca0fee 100644
Binary files a/icons/obj/structures/tables.dmi and b/icons/obj/structures/tables.dmi differ
diff --git a/icons/turf/almayer.dmi b/icons/turf/almayer.dmi
index 07f771ec78..2f30bb751f 100644
Binary files a/icons/turf/almayer.dmi and b/icons/turf/almayer.dmi differ
diff --git a/icons/turf/dropship.dmi b/icons/turf/dropship.dmi
index ba08ecf600..0b5cebe9e2 100644
Binary files a/icons/turf/dropship.dmi and b/icons/turf/dropship.dmi differ
diff --git a/icons/turf/dropship2.dmi b/icons/turf/dropship2.dmi
index 787d72e04f..f1ba788021 100644
Binary files a/icons/turf/dropship2.dmi and b/icons/turf/dropship2.dmi differ
diff --git a/icons/turf/dropship3.dmi b/icons/turf/dropship3.dmi
index bd13e33fbb..937b20a182 100644
Binary files a/icons/turf/dropship3.dmi and b/icons/turf/dropship3.dmi differ
diff --git a/icons/turf/dropship4.dmi b/icons/turf/dropship4.dmi
index db0f58dcee..4452412254 100644
Binary files a/icons/turf/dropship4.dmi and b/icons/turf/dropship4.dmi differ
diff --git a/icons/turf/floors/aicore.dmi b/icons/turf/floors/aicore.dmi
new file mode 100644
index 0000000000..0396b9bef2
Binary files /dev/null and b/icons/turf/floors/aicore.dmi differ
diff --git a/icons/turf/walls/almayer_aicore.dmi b/icons/turf/walls/almayer_aicore.dmi
new file mode 100644
index 0000000000..5ce7aaf202
Binary files /dev/null and b/icons/turf/walls/almayer_aicore.dmi differ
diff --git a/icons/turf/walls/almayer_aicore_white.dmi b/icons/turf/walls/almayer_aicore_white.dmi
new file mode 100644
index 0000000000..721cd7c63f
Binary files /dev/null and b/icons/turf/walls/almayer_aicore_white.dmi differ
diff --git a/icons/turf/walls/window_frames.dmi b/icons/turf/walls/window_frames.dmi
index e6dee0c291..5fbe51615e 100644
Binary files a/icons/turf/walls/window_frames.dmi and b/icons/turf/walls/window_frames.dmi differ
diff --git a/icons/turf/walls/windows.dmi b/icons/turf/walls/windows.dmi
index a3f2fd1d41..2904c8d5fa 100644
Binary files a/icons/turf/walls/windows.dmi and b/icons/turf/walls/windows.dmi differ
diff --git a/maps/Nightmare/maps/golden_arrow/mapgen_variations.json b/maps/Nightmare/maps/golden_arrow/mapgen_variations.json
new file mode 100644
index 0000000000..06eb879d91
--- /dev/null
+++ b/maps/Nightmare/maps/golden_arrow/mapgen_variations.json
@@ -0,0 +1,4 @@
+[
+ { "type": "map_variations", "landmark": "briefing", "path": "briefing/", "chance": 0 },
+ { "type": "map_variations", "landmark": "dorms", "path": "dorms/", "chance": 0 }
+]
diff --git a/maps/Nightmare/maps/golden_arrow/nightmare.json b/maps/Nightmare/maps/golden_arrow/nightmare.json
new file mode 100644
index 0000000000..0be5c5a203
--- /dev/null
+++ b/maps/Nightmare/maps/golden_arrow/nightmare.json
@@ -0,0 +1,6 @@
+[
+ {
+ "type": "include", "name": "Standalone variations",
+ "file": "mapgen_variations.json"
+ }
+]
diff --git a/maps/map_files/BigRed/BigRed.dmm b/maps/map_files/BigRed/BigRed.dmm
index f9a54d87bf..ecd24b607b 100644
--- a/maps/map_files/BigRed/BigRed.dmm
+++ b/maps/map_files/BigRed/BigRed.dmm
@@ -1662,7 +1662,7 @@
/area/bigredv2/outside/marshal_office)
"afo" = (
/obj/structure/surface/rack,
-/obj/item/weapon/gun/revolver/cmb,
+/obj/item/weapon/gun/revolver/spearhead,
/turf/open/floor{
dir = 8;
icon_state = "vault"
@@ -1670,7 +1670,7 @@
/area/bigredv2/outside/marshal_office)
"afp" = (
/obj/structure/surface/rack,
-/obj/item/ammo_magazine/revolver/cmb,
+/obj/item/ammo_magazine/revolver/spearhead,
/turf/open/floor{
dir = 8;
icon_state = "vault"
@@ -1681,7 +1681,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/obj/item/ammo_magazine/revolver/cmb,
+/obj/item/ammo_magazine/revolver/spearhead,
/turf/open/floor{
dir = 8;
icon_state = "vault"
@@ -24149,7 +24149,7 @@
},
/obj/structure/closet/cabinet,
/obj/item/disk/nuclear,
-/obj/item/weapon/gun/pistol/mod88,
+/obj/item/weapon/gun/pistol/vp70,
/obj/structure/pipes/vents/pump/on,
/turf/open/floor{
icon_state = "wood"
@@ -24760,8 +24760,8 @@
/area/bigredv2/caves_se)
"bMa" = (
/obj/structure/surface/rack,
-/obj/item/weapon/gun/pistol/mod88,
-/obj/item/weapon/gun/pistol/mod88,
+/obj/item/weapon/gun/pistol/vp70,
+/obj/item/weapon/gun/pistol/vp70,
/turf/open/floor{
dir = 8;
icon_state = "redcorner"
@@ -31566,7 +31566,7 @@
"miD" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/landmark/corpsespawner/security/marshal,
-/obj/item/weapon/gun/revolver/cmb,
+/obj/item/weapon/gun/revolver/spearhead,
/turf/open/mars_cave{
icon_state = "mars_cave_2"
},
@@ -38204,7 +38204,7 @@
},
/area/bigredv2/caves_north)
"vBy" = (
-/obj/item/ammo_magazine/shotgun/beanbag/riot,
+/obj/item/ammo_magazine/shotgun/beanbag,
/turf/open/mars_cave{
icon_state = "mars_cave_17"
},
diff --git a/maps/map_files/BigRed/sprinkles/10.prison_breakout.dmm b/maps/map_files/BigRed/sprinkles/10.prison_breakout.dmm
index e2e995af42..744ef04af7 100644
--- a/maps/map_files/BigRed/sprinkles/10.prison_breakout.dmm
+++ b/maps/map_files/BigRed/sprinkles/10.prison_breakout.dmm
@@ -223,7 +223,7 @@
/area/bigredv2/outside/marshal_office)
"aF" = (
/obj/structure/surface/rack,
-/obj/item/ammo_magazine/revolver/cmb,
+/obj/item/ammo_magazine/revolver/spearhead,
/turf/open/floor{
dir = 8;
icon_state = "vault"
@@ -231,7 +231,7 @@
/area/bigredv2/outside/marshal_office)
"aG" = (
/obj/structure/surface/rack,
-/obj/item/weapon/gun/revolver/cmb,
+/obj/item/weapon/gun/revolver/spearhead,
/turf/open/floor{
dir = 8;
icon_state = "vault"
@@ -242,7 +242,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/obj/item/ammo_magazine/revolver/cmb,
+/obj/item/ammo_magazine/revolver/spearhead,
/turf/open/floor{
dir = 8;
icon_state = "vault"
diff --git a/maps/map_files/BigRed/sprinkles/20.etatunnel_open.dmm b/maps/map_files/BigRed/sprinkles/20.etatunnel_open.dmm
index 633a79f6ac..9666ca41a4 100644
--- a/maps/map_files/BigRed/sprinkles/20.etatunnel_open.dmm
+++ b/maps/map_files/BigRed/sprinkles/20.etatunnel_open.dmm
@@ -374,7 +374,7 @@
/area/bigredv2/outside/lz2_south_cas)
"Jy" = (
/obj/structure/surface/table/reinforced/prison,
-/obj/item/weapon/gun/revolver/cmb,
+/obj/item/weapon/gun/revolver/spearhead,
/obj/item/device/flashlight/lamp/on{
pixel_x = -5;
pixel_y = 17
diff --git a/maps/map_files/CORSAT/Corsat.dmm b/maps/map_files/CORSAT/Corsat.dmm
index a87db5ef1e..a0a3bb64d9 100644
--- a/maps/map_files/CORSAT/Corsat.dmm
+++ b/maps/map_files/CORSAT/Corsat.dmm
@@ -371,12 +371,12 @@
/area/corsat/gamma/hangar)
"abn" = (
/obj/structure/surface/rack,
-/obj/item/weapon/gun/pistol/mod88,
-/obj/item/weapon/gun/pistol/mod88,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
+/obj/item/weapon/gun/pistol/vp70,
+/obj/item/weapon/gun/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
/turf/open/floor/corsat{
dir = 9;
icon_state = "red"
@@ -1005,12 +1005,12 @@
/area/corsat/gamma/hangar/checkpoint)
"adc" = (
/obj/structure/surface/rack,
-/obj/item/weapon/gun/pistol/mod88,
-/obj/item/weapon/gun/pistol/mod88,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
+/obj/item/weapon/gun/pistol/vp70,
+/obj/item/weapon/gun/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
/turf/open/floor/corsat{
dir = 1;
icon_state = "red"
@@ -9023,9 +9023,9 @@
/obj/structure/closet/secure_closet/security_empty,
/obj/item/storage/belt/security/MP/full,
/obj/item/clothing/accessory/storage/holster/armpit,
-/obj/item/weapon/gun/pistol/mod88,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
+/obj/item/weapon/gun/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
/obj/item/storage/pouch/general/medium,
/obj/item/storage/pouch/pistol,
/turf/open/floor/corsat{
@@ -11307,16 +11307,16 @@
/turf/open/floor/wood,
/area/corsat/gamma/residential/researcher)
"aGc" = (
-/obj/item/weapon/gun/pistol/mod88,
-/obj/item/weapon/gun/pistol/mod88,
-/obj/item/weapon/gun/pistol/mod88,
+/obj/item/weapon/gun/pistol/vp70,
+/obj/item/weapon/gun/pistol/vp70,
+/obj/item/weapon/gun/pistol/vp70,
/obj/structure/surface/rack,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
+/obj/item/ammo_magazine/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
/turf/open/floor/corsat{
dir = 9;
icon_state = "red"
@@ -13781,9 +13781,9 @@
/obj/structure/closet/secure_closet/security_empty,
/obj/item/storage/belt/security/MP/full,
/obj/item/clothing/accessory/storage/holster/armpit,
-/obj/item/weapon/gun/pistol/mod88,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
+/obj/item/weapon/gun/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
/obj/item/storage/pouch/general/medium,
/obj/item/storage/pouch/pistol,
/turf/open/floor/corsat{
@@ -19090,9 +19090,9 @@
/obj/structure/closet/secure_closet/security_empty,
/obj/item/storage/belt/security/MP/full,
/obj/item/clothing/accessory/storage/holster/armpit,
-/obj/item/weapon/gun/pistol/mod88,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
+/obj/item/weapon/gun/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
/obj/item/storage/pouch/general/medium,
/obj/item/storage/pouch/pistol,
/turf/open/floor/corsat{
@@ -19111,9 +19111,9 @@
/obj/structure/closet/secure_closet/security_empty,
/obj/item/storage/belt/security/MP/full,
/obj/item/clothing/accessory/storage/holster/armpit,
-/obj/item/weapon/gun/pistol/mod88,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
+/obj/item/weapon/gun/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
/obj/item/storage/pouch/general/medium,
/obj/item/storage/pouch/pistol,
/turf/open/floor/corsat{
@@ -28907,9 +28907,9 @@
"bDd" = (
/obj/item/storage/belt/security/MP/full,
/obj/item/clothing/accessory/storage/holster/armpit,
-/obj/item/weapon/gun/pistol/mod88,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
+/obj/item/weapon/gun/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
/obj/item/storage/pouch/general/medium,
/obj/item/storage/pouch/pistol,
/obj/structure/closet/secure_closet/security,
@@ -28944,9 +28944,9 @@
"bDk" = (
/obj/item/storage/belt/security/MP/full,
/obj/item/clothing/accessory/storage/holster/armpit,
-/obj/item/weapon/gun/pistol/mod88,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
+/obj/item/weapon/gun/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
/obj/item/storage/pouch/general/medium,
/obj/item/storage/pouch/pistol,
/obj/structure/closet/secure_closet/security,
@@ -41809,7 +41809,7 @@
/area/corsat/sigma/southeast/datalab)
"gys" = (
/obj/structure/surface/rack,
-/obj/item/weapon/gun/revolver/cmb,
+/obj/item/weapon/gun/revolver/spearhead,
/turf/open/floor/corsat{
icon_state = "red"
},
@@ -43618,9 +43618,9 @@
/obj/structure/closet/secure_closet/security_empty,
/obj/item/storage/belt/security/MP/full,
/obj/item/clothing/accessory/storage/holster/armpit,
-/obj/item/weapon/gun/pistol/mod88,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
+/obj/item/weapon/gun/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
/obj/item/storage/pouch/general/medium,
/obj/item/storage/pouch/pistol,
/turf/open/floor/corsat{
@@ -56944,10 +56944,10 @@
/area/corsat/sigma/hangar/security)
"rRh" = (
/obj/structure/surface/rack,
-/obj/item/ammo_magazine/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb,
+/obj/item/ammo_magazine/revolver/spearhead,
+/obj/item/ammo_magazine/revolver/spearhead,
+/obj/item/ammo_magazine/revolver/spearhead,
+/obj/item/ammo_magazine/revolver/spearhead,
/turf/open/floor/corsat{
dir = 6;
icon_state = "red"
@@ -58917,9 +58917,9 @@
/obj/structure/closet/secure_closet/security_empty,
/obj/item/storage/belt/security/MP/full,
/obj/item/clothing/accessory/storage/holster/armpit,
-/obj/item/weapon/gun/pistol/mod88,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
+/obj/item/weapon/gun/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
/obj/item/storage/pouch/general/medium,
/obj/item/storage/pouch/pistol,
/turf/open/floor/corsat{
@@ -59390,7 +59390,7 @@
/area/corsat/gamma/hallwaysouth)
"tFs" = (
/obj/structure/surface/table/almayer,
-/obj/item/weapon/gun/pistol/mod88,
+/obj/item/weapon/gun/pistol/vp70,
/turf/open/floor/corsat{
dir = 8;
icon_state = "red"
diff --git a/maps/map_files/DesertDam/Desert_Dam.dmm b/maps/map_files/DesertDam/Desert_Dam.dmm
index ad2b0bb770..713cf02d5f 100644
--- a/maps/map_files/DesertDam/Desert_Dam.dmm
+++ b/maps/map_files/DesertDam/Desert_Dam.dmm
@@ -4609,14 +4609,14 @@
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"anS" = (
/obj/structure/surface/table/reinforced,
-/obj/item/ammo_magazine/revolver/cmb,
+/obj/item/ammo_magazine/revolver/spearhead,
/turf/open/floor/prison{
icon_state = "darkredfull2"
},
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"anT" = (
/obj/structure/surface/rack,
-/obj/item/weapon/gun/revolver/cmb,
+/obj/item/weapon/gun/revolver/spearhead,
/turf/open/floor/prison{
icon_state = "darkredfull2"
},
@@ -19966,7 +19966,7 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_wilderness)
"bkG" = (
-/obj/item/ammo_magazine/revolver/cmb,
+/obj/item/ammo_magazine/revolver/spearhead,
/obj/structure/surface/table/woodentable/fancy,
/turf/open/floor/interior/wood/alt,
/area/desert_dam/building/security/marshals_office)
@@ -31817,13 +31817,13 @@
/area/desert_dam/building/security/armory)
"bYq" = (
/obj/structure/surface/rack,
-/obj/item/ammo_magazine/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb{
+/obj/item/ammo_magazine/revolver/spearhead,
+/obj/item/ammo_magazine/revolver/spearhead{
pixel_x = 6;
pixel_y = -4
},
-/obj/item/ammo_magazine/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb{
+/obj/item/ammo_magazine/revolver/spearhead,
+/obj/item/ammo_magazine/revolver/spearhead{
pixel_x = 6;
pixel_y = -4
},
@@ -43409,7 +43409,7 @@
/area/desert_dam/building/security/armory)
"cJv" = (
/obj/structure/surface/rack,
-/obj/item/weapon/gun/revolver/cmb,
+/obj/item/weapon/gun/revolver/spearhead,
/turf/open/floor/prison{
icon_state = "darkredfull2"
},
diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/15.wardenofficedecorated.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/15.wardenofficedecorated.dmm
index fa4a9b8b7b..eb34c85224 100644
--- a/maps/map_files/FOP_v3_Sciannex/sprinkles/15.wardenofficedecorated.dmm
+++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/15.wardenofficedecorated.dmm
@@ -112,7 +112,7 @@
pixel_y = 21
},
/obj/structure/surface/table/woodentable/fancy,
-/obj/item/weapon/gun/pistol/highpower/tactical,
+/obj/item/weapon/gun/pistol/highpower/automag/tactical,
/turf/open/floor/plating,
/area/template_noop)
"W" = (
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 63fb17b8f8..5ba86e60f7 100644
--- a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.poolparty.dmm
+++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.poolparty.dmm
@@ -1357,7 +1357,7 @@
pixel_y = -2
},
/obj/item/weapon/gun/pistol/heavy,
-/obj/item/weapon/gun/revolver/cmb,
+/obj/item/weapon/gun/revolver/spearhead,
/turf/open/floor/wood,
/area/template_noop)
"We" = (
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 740b5ed5b8..702289945e 100644
--- a/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm
+++ b/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm
@@ -10309,7 +10309,7 @@
},
/area/ice_colony/surface/command/control/office)
"aDb" = (
-/obj/item/weapon/gun/revolver/cmb,
+/obj/item/weapon/gun/revolver/spearhead,
/obj/structure/pipes/standard/simple/hidden/green,
/turf/open/floor{
icon_state = "dark2"
@@ -26765,8 +26765,8 @@
/area/ice_colony/underground/security/detective)
"bCc" = (
/obj/structure/surface/table/woodentable,
-/obj/item/weapon/gun/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb,
+/obj/item/weapon/gun/revolver/spearhead,
+/obj/item/ammo_magazine/revolver/spearhead,
/turf/open/floor/wood,
/area/ice_colony/underground/security/marshal)
"bCd" = (
@@ -32159,8 +32159,8 @@
/area/ice_colony/underground/maintenance/security)
"bRx" = (
/obj/structure/surface/rack,
-/obj/item/weapon/gun/revolver/cmb,
-/obj/item/weapon/gun/revolver/cmb{
+/obj/item/weapon/gun/revolver/spearhead,
+/obj/item/weapon/gun/revolver/spearhead{
pixel_x = 6;
pixel_y = -4
},
@@ -32365,13 +32365,13 @@
/obj/structure/machinery/light{
dir = 8
},
-/obj/item/ammo_magazine/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb{
+/obj/item/ammo_magazine/revolver/spearhead,
+/obj/item/ammo_magazine/revolver/spearhead{
pixel_x = 6;
pixel_y = -4
},
-/obj/item/ammo_magazine/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb{
+/obj/item/ammo_magazine/revolver/spearhead,
+/obj/item/ammo_magazine/revolver/spearhead{
pixel_x = 6;
pixel_y = -4
},
diff --git a/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm b/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm
index 0332274d42..3b48073ec6 100644
--- a/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm
+++ b/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm
@@ -1734,8 +1734,8 @@
/area/shiva/interior/colony/medseceng)
"ahP" = (
/obj/structure/surface/rack,
-/obj/item/weapon/gun/revolver/cmb,
-/obj/item/weapon/gun/revolver/cmb{
+/obj/item/weapon/gun/revolver/spearhead,
+/obj/item/weapon/gun/revolver/spearhead{
pixel_x = 6;
pixel_y = -4
},
@@ -1847,8 +1847,8 @@
/area/shiva/interior/aerodrome)
"aim" = (
/obj/structure/surface/rack,
-/obj/item/weapon/gun/revolver/cmb,
-/obj/item/weapon/gun/revolver/cmb{
+/obj/item/weapon/gun/revolver/spearhead,
+/obj/item/weapon/gun/revolver/spearhead{
pixel_x = 6;
pixel_y = -4
},
@@ -2383,13 +2383,13 @@
dir = 8;
pixel_y = -5
},
-/obj/item/ammo_magazine/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb{
+/obj/item/ammo_magazine/revolver/spearhead,
+/obj/item/ammo_magazine/revolver/spearhead{
pixel_x = 6;
pixel_y = -4
},
-/obj/item/ammo_magazine/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb{
+/obj/item/ammo_magazine/revolver/spearhead,
+/obj/item/ammo_magazine/revolver/spearhead{
pixel_x = 6;
pixel_y = -4
},
@@ -2831,8 +2831,8 @@
/area/shiva/interior/warehouse)
"anP" = (
/obj/structure/surface/table/woodentable,
-/obj/item/weapon/gun/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb,
+/obj/item/weapon/gun/revolver/spearhead,
+/obj/item/ammo_magazine/revolver/spearhead,
/turf/open/floor/wood,
/area/shiva/interior/colony/medseceng)
"anR" = (
@@ -17922,13 +17922,13 @@
/area/shiva/interior/colony/central)
"nfg" = (
/obj/structure/surface/rack,
-/obj/item/ammo_magazine/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb{
+/obj/item/ammo_magazine/revolver/spearhead,
+/obj/item/ammo_magazine/revolver/spearhead{
pixel_x = 6;
pixel_y = -4
},
-/obj/item/ammo_magazine/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb{
+/obj/item/ammo_magazine/revolver/spearhead,
+/obj/item/ammo_magazine/revolver/spearhead{
pixel_x = 6;
pixel_y = -4
},
@@ -20274,7 +20274,7 @@
},
/area/shiva/interior/colony/deck)
"pME" = (
-/obj/item/ammo_magazine/revolver/cmb,
+/obj/item/ammo_magazine/revolver/spearhead,
/turf/open/floor/shiva{
icon_state = "floor3"
},
@@ -21558,7 +21558,7 @@
/area/shiva/interior/colony/s_admin)
"reV" = (
/obj/structure/surface/table,
-/obj/item/weapon/gun/revolver/cmb,
+/obj/item/weapon/gun/revolver/spearhead,
/turf/open/floor/shiva{
dir = 8;
icon_state = "purplefull"
@@ -24239,7 +24239,7 @@
},
/area/shiva/interior/colony/research_hab)
"uee" = (
-/obj/item/weapon/gun/revolver/cmb,
+/obj/item/weapon/gun/revolver/spearhead,
/turf/open/auto_turf/snow/layer0,
/area/shiva/exterior/cp_lz2)
"ueu" = (
@@ -24540,7 +24540,7 @@
/turf/open/auto_turf/snow/layer3,
/area/shiva/exterior/junkyard/fortbiceps)
"upp" = (
-/obj/item/ammo_magazine/revolver/cmb,
+/obj/item/ammo_magazine/revolver/spearhead,
/turf/open/floor/shiva{
dir = 8;
icon_state = "purplefull"
diff --git a/maps/map_files/Kutjevo/Kutjevo.dmm b/maps/map_files/Kutjevo/Kutjevo.dmm
index 558f1a637d..42a46a0d9e 100644
--- a/maps/map_files/Kutjevo/Kutjevo.dmm
+++ b/maps/map_files/Kutjevo/Kutjevo.dmm
@@ -1324,7 +1324,7 @@
/area/kutjevo/interior/oob)
"bRa" = (
/obj/structure/surface/rack,
-/obj/item/weapon/gun/revolver/cmb,
+/obj/item/weapon/gun/revolver/spearhead,
/turf/open/floor/kutjevo/colors/orange/edge{
dir = 1
},
@@ -3197,7 +3197,7 @@
/turf/open/floor/kutjevo/plate,
/area/kutjevo/interior/colony_central)
"emn" = (
-/obj/item/weapon/gun/revolver/cmb,
+/obj/item/weapon/gun/revolver/spearhead,
/turf/open/floor/kutjevo/tan/multi_tiles,
/area/kutjevo/interior/complex/botany)
"emU" = (
@@ -5278,7 +5278,7 @@
/turf/closed/wall/kutjevo/rock,
/area/kutjevo/interior/complex/botany)
"hkY" = (
-/obj/item/weapon/gun/revolver/cmb,
+/obj/item/weapon/gun/revolver/spearhead,
/turf/open/gm/river/desert/deep/covered,
/area/kutjevo/interior/power/comms)
"hmi" = (
@@ -6684,7 +6684,7 @@
/turf/open/auto_turf/sand/layer1,
/area/kutjevo/interior/colony_S_East)
"jtu" = (
-/obj/item/ammo_magazine/revolver/cmb,
+/obj/item/ammo_magazine/revolver/spearhead,
/turf/open/floor/kutjevo/colors/orange,
/area/kutjevo/interior/power/comms)
"jtJ" = (
@@ -7554,7 +7554,7 @@
/obj/structure/barricade/deployable{
dir = 1
},
-/obj/item/weapon/gun/revolver/cmb,
+/obj/item/weapon/gun/revolver/spearhead,
/turf/open/floor/kutjevo/tan,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"kIn" = (
@@ -11306,7 +11306,7 @@
/turf/open/auto_turf/sand/layer1,
/area/kutjevo/exterior/Northwest_Colony)
"pKO" = (
-/obj/item/ammo_magazine/revolver/cmb,
+/obj/item/ammo_magazine/revolver/spearhead,
/turf/open/floor/kutjevo/tan/multi_tiles,
/area/kutjevo/interior/power/comms)
"pKP" = (
@@ -12682,7 +12682,7 @@
},
/area/kutjevo/exterior/runoff_river)
"rNG" = (
-/obj/item/ammo_magazine/revolver/cmb,
+/obj/item/ammo_magazine/revolver/spearhead,
/turf/open/floor/kutjevo/tan,
/area/kutjevo/interior/complex/botany)
"rOd" = (
@@ -13389,7 +13389,7 @@
/turf/open/auto_turf/sand/layer2,
/area/kutjevo/interior/colony_N_East)
"sOc" = (
-/obj/item/ammo_magazine/revolver/cmb{
+/obj/item/ammo_magazine/revolver/spearhead{
pixel_x = 6;
pixel_y = -4
},
@@ -13649,7 +13649,7 @@
/turf/open/floor/kutjevo/grey/plate,
/area/kutjevo/interior/complex/botany/east_tech)
"tgl" = (
-/obj/item/weapon/gun/revolver/cmb,
+/obj/item/weapon/gun/revolver/spearhead,
/turf/open/floor/kutjevo/tan,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"tgO" = (
@@ -13659,7 +13659,7 @@
/area/kutjevo/interior/colony_S_East)
"tgZ" = (
/obj/structure/surface/table/almayer,
-/obj/item/weapon/gun/revolver/cmb,
+/obj/item/weapon/gun/revolver/spearhead,
/turf/open/floor/kutjevo/colors/purple,
/area/kutjevo/interior/construction)
"tha" = (
@@ -13908,7 +13908,7 @@
/turf/open/floor/kutjevo/grey/plate,
/area/kutjevo/interior/complex/botany/east_tech)
"tyW" = (
-/obj/item/weapon/gun/revolver/cmb,
+/obj/item/weapon/gun/revolver/spearhead,
/turf/open/floor/kutjevo/tan,
/area/kutjevo/interior/complex/botany)
"tzJ" = (
@@ -13927,7 +13927,7 @@
/turf/open/floor/kutjevo/grey/plate,
/area/kutjevo/interior/construction)
"tBB" = (
-/obj/item/ammo_magazine/revolver/cmb{
+/obj/item/ammo_magazine/revolver/spearhead{
pixel_x = 7;
pixel_y = 6
},
@@ -15048,15 +15048,15 @@
/area/kutjevo/interior/complex/botany)
"vaG" = (
/obj/structure/surface/table/almayer,
-/obj/item/ammo_magazine/revolver/cmb{
+/obj/item/ammo_magazine/revolver/spearhead{
pixel_x = 7;
pixel_y = 6
},
-/obj/item/ammo_magazine/revolver/cmb{
+/obj/item/ammo_magazine/revolver/spearhead{
pixel_x = -7;
pixel_y = -6
},
-/obj/item/ammo_magazine/revolver/cmb,
+/obj/item/ammo_magazine/revolver/spearhead,
/turf/open/floor/kutjevo/colors/purple,
/area/kutjevo/interior/construction)
"vbl" = (
@@ -15959,7 +15959,7 @@
/turf/open/gm/river/desert/shallow,
/area/kutjevo/interior/oob/dev_room)
"wpY" = (
-/obj/item/ammo_magazine/revolver/cmb{
+/obj/item/ammo_magazine/revolver/spearhead{
pixel_x = 6;
pixel_y = -4
},
@@ -16532,7 +16532,7 @@
/turf/open/floor/kutjevo/tan/multi_tiles,
/area/kutjevo/interior/complex/botany/east)
"xkE" = (
-/obj/item/ammo_magazine/revolver/cmb{
+/obj/item/ammo_magazine/revolver/spearhead{
pixel_x = 7;
pixel_y = 6
},
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 51357b2fe5..ef30196f3d 100644
--- a/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm
+++ b/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm
@@ -3511,7 +3511,7 @@
/area/lv522/indoors/a_block/security)
"bSa" = (
/obj/effect/decal/cleanable/blood,
-/obj/item/weapon/gun/revolver/cmb,
+/obj/item/weapon/gun/revolver/spearhead,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
@@ -3542,7 +3542,7 @@
},
/obj/effect/decal/cleanable/blood/gibs,
/obj/effect/decal/cleanable/blood,
-/obj/item/weapon/gun/revolver/cmb,
+/obj/item/weapon/gun/revolver/spearhead,
/turf/open/floor/shiva{
icon_state = "radiator_tile2"
},
@@ -4306,7 +4306,7 @@
/turf/open/auto_turf/shale/layer1,
/area/lv522/outdoors/w_rockies)
"ckT" = (
-/obj/item/weapon/gun/revolver/cmb,
+/obj/item/weapon/gun/revolver/spearhead,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
@@ -22691,8 +22691,8 @@
"jmd" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/surface/rack,
-/obj/item/weapon/gun/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb,
+/obj/item/weapon/gun/revolver/spearhead,
+/obj/item/ammo_magazine/revolver/spearhead,
/turf/open/floor/prison{
icon_state = "darkredfull2"
},
@@ -38900,7 +38900,7 @@
},
/area/lv522/landing_zone_1)
"pni" = (
-/obj/item/weapon/gun/revolver/cmb,
+/obj/item/weapon/gun/revolver/spearhead,
/turf/open/floor/prison,
/area/lv522/indoors/a_block/kitchen/glass)
"pnj" = (
@@ -43194,7 +43194,7 @@
},
/area/lv522/atmos/command_centre)
"qPu" = (
-/obj/item/weapon/gun/revolver/cmb,
+/obj/item/weapon/gun/revolver/spearhead,
/obj/item/clothing/head/soft/sec,
/obj/structure/curtain/medical,
/turf/open/floor/strata{
@@ -60611,8 +60611,8 @@
/area/lv522/indoors/c_block/mining)
"xbj" = (
/obj/structure/surface/rack,
-/obj/item/weapon/gun/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb,
+/obj/item/weapon/gun/revolver/spearhead,
+/obj/item/ammo_magazine/revolver/spearhead,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/prison{
icon_state = "darkredfull2"
diff --git a/maps/map_files/LV624/LV624.dmm b/maps/map_files/LV624/LV624.dmm
index a7de984fd4..0b68597ab4 100644
--- a/maps/map_files/LV624/LV624.dmm
+++ b/maps/map_files/LV624/LV624.dmm
@@ -8865,10 +8865,10 @@
dir = 4
},
/obj/structure/surface/table,
-/obj/item/weapon/gun/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb,
+/obj/item/weapon/gun/revolver/spearhead,
+/obj/item/ammo_magazine/revolver/spearhead,
+/obj/item/ammo_magazine/revolver/spearhead,
+/obj/item/ammo_magazine/revolver/spearhead,
/turf/open/floor{
dir = 5;
icon_state = "red"
@@ -8880,10 +8880,10 @@
},
/obj/structure/surface/table,
/obj/item/clothing/ears/earmuffs,
-/obj/item/ammo_magazine/revolver/cmb,
-/obj/item/weapon/gun/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb,
+/obj/item/ammo_magazine/revolver/spearhead,
+/obj/item/weapon/gun/revolver/spearhead,
+/obj/item/ammo_magazine/revolver/spearhead,
+/obj/item/ammo_magazine/revolver/spearhead,
/turf/open/floor{
dir = 9;
icon_state = "red"
diff --git a/maps/map_files/LV624/armory/10.cheese.dmm b/maps/map_files/LV624/armory/10.cheese.dmm
index 96b4ef5942..347e392787 100644
--- a/maps/map_files/LV624/armory/10.cheese.dmm
+++ b/maps/map_files/LV624/armory/10.cheese.dmm
@@ -159,10 +159,10 @@
dir = 4
},
/obj/structure/surface/table,
-/obj/item/weapon/gun/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb,
+/obj/item/weapon/gun/revolver/spearhead,
+/obj/item/ammo_magazine/revolver/spearhead,
+/obj/item/ammo_magazine/revolver/spearhead,
+/obj/item/ammo_magazine/revolver/spearhead,
/turf/open/floor{
dir = 5;
icon_state = "red"
diff --git a/maps/map_files/LV624/armory/10.extra.dmm b/maps/map_files/LV624/armory/10.extra.dmm
index cf1aaaa538..53a94ef204 100644
--- a/maps/map_files/LV624/armory/10.extra.dmm
+++ b/maps/map_files/LV624/armory/10.extra.dmm
@@ -164,10 +164,10 @@
dir = 4
},
/obj/structure/surface/table,
-/obj/item/weapon/gun/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb,
+/obj/item/weapon/gun/revolver/spearhead,
+/obj/item/ammo_magazine/revolver/spearhead,
+/obj/item/ammo_magazine/revolver/spearhead,
+/obj/item/ammo_magazine/revolver/spearhead,
/turf/open/floor{
dir = 5;
icon_state = "red"
diff --git a/maps/map_files/LV624/armory/10.looted.dmm b/maps/map_files/LV624/armory/10.looted.dmm
index cf2d4a9e02..ae5bbef21b 100644
--- a/maps/map_files/LV624/armory/10.looted.dmm
+++ b/maps/map_files/LV624/armory/10.looted.dmm
@@ -137,10 +137,10 @@
dir = 4
},
/obj/structure/surface/table,
-/obj/item/weapon/gun/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb,
+/obj/item/weapon/gun/revolver/spearhead,
+/obj/item/ammo_magazine/revolver/spearhead,
+/obj/item/ammo_magazine/revolver/spearhead,
+/obj/item/ammo_magazine/revolver/spearhead,
/turf/open/floor{
dir = 5;
icon_state = "red"
diff --git a/maps/map_files/LV624_Fixed/LV624_repaired.dmm b/maps/map_files/LV624_Fixed/LV624_repaired.dmm
index 9a6b33edd8..f97a2d55ce 100644
--- a/maps/map_files/LV624_Fixed/LV624_repaired.dmm
+++ b/maps/map_files/LV624_Fixed/LV624_repaired.dmm
@@ -14919,7 +14919,7 @@
/area/lv624/lazarus/landing_zones/lz1)
"qwG" = (
/obj/structure/surface/rack,
-/obj/item/storage/box/clf,
+/obj/item/storage/box/loadout/clf,
/turf/open/shuttle{
icon_state = "floor4"
},
@@ -17585,10 +17585,10 @@
dir = 4
},
/obj/structure/surface/table,
-/obj/item/weapon/gun/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb,
+/obj/item/weapon/gun/revolver/spearhead,
+/obj/item/ammo_magazine/revolver/spearhead,
+/obj/item/ammo_magazine/revolver/spearhead,
+/obj/item/ammo_magazine/revolver/spearhead,
/turf/open/floor{
dir = 5;
icon_state = "red"
@@ -19048,10 +19048,10 @@
},
/obj/structure/surface/table,
/obj/item/clothing/ears/earmuffs,
-/obj/item/ammo_magazine/revolver/cmb,
-/obj/item/weapon/gun/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb,
+/obj/item/ammo_magazine/revolver/spearhead,
+/obj/item/weapon/gun/revolver/spearhead,
+/obj/item/ammo_magazine/revolver/spearhead,
+/obj/item/ammo_magazine/revolver/spearhead,
/turf/open/floor{
dir = 9;
icon_state = "red"
diff --git a/maps/map_files/New_Varadero/New_Varadero.dmm b/maps/map_files/New_Varadero/New_Varadero.dmm
index 3b818bb88a..b4c1f27e7f 100644
--- a/maps/map_files/New_Varadero/New_Varadero.dmm
+++ b/maps/map_files/New_Varadero/New_Varadero.dmm
@@ -1381,7 +1381,7 @@
dir = 1;
pixel_y = 17
},
-/obj/item/weapon/gun/revolver/cmb{
+/obj/item/weapon/gun/revolver/spearhead{
pixel_y = 2
},
/obj/item/clothing/ears/earmuffs{
@@ -3754,8 +3754,8 @@
/area/varadero/interior/hall_SE)
"cur" = (
/obj/structure/surface/rack,
-/obj/item/weapon/gun/pistol/mod88,
-/obj/item/weapon/gun/pistol/mod88{
+/obj/item/weapon/gun/pistol/vp70,
+/obj/item/weapon/gun/pistol/vp70{
pixel_y = -2
},
/obj/structure/machinery/storm_siren{
@@ -4748,7 +4748,7 @@
},
/area/varadero/interior/hall_NW)
"dcM" = (
-/obj/item/ammo_magazine/revolver/cmb,
+/obj/item/ammo_magazine/revolver/spearhead,
/turf/open/auto_turf/sand_white/layer1,
/area/varadero/interior/caves/north_research)
"dda" = (
@@ -14358,7 +14358,7 @@
},
/area/varadero/interior/records)
"jvF" = (
-/obj/item/ammo_magazine/revolver/cmb,
+/obj/item/ammo_magazine/revolver/spearhead,
/turf/open/floor/shiva{
icon_state = "multi_tiles"
},
@@ -14369,7 +14369,7 @@
/turf/open/auto_turf/sand_white/layer1,
/area/varadero/interior_protected/caves/digsite)
"jwy" = (
-/obj/item/weapon/gun/revolver/cmb,
+/obj/item/weapon/gun/revolver/spearhead,
/turf/open/floor/shiva{
icon_state = "purple"
},
@@ -24832,16 +24832,16 @@
/area/varadero/interior/hall_SE)
"qfb" = (
/obj/structure/closet/crate/ammo/alt,
-/obj/item/ammo_magazine/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb{
+/obj/item/ammo_magazine/revolver/spearhead,
+/obj/item/ammo_magazine/revolver/spearhead{
pixel_x = -4;
pixel_y = -5
},
-/obj/item/ammo_magazine/revolver/cmb{
+/obj/item/ammo_magazine/revolver/spearhead{
pixel_x = -4;
pixel_y = -5
},
-/obj/item/ammo_magazine/revolver/cmb,
+/obj/item/ammo_magazine/revolver/spearhead,
/turf/open/floor/shiva{
icon_state = "floor3"
},
@@ -26627,7 +26627,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/obj/item/ammo_magazine/revolver/cmb,
+/obj/item/ammo_magazine/revolver/spearhead,
/turf/open/floor/shiva{
icon_state = "purple"
},
@@ -28679,15 +28679,15 @@
/area/varadero/interior/maintenance/security)
"syb" = (
/obj/structure/surface/rack,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
+/obj/item/ammo_magazine/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
/obj/structure/machinery/light{
dir = 4
},
@@ -32044,7 +32044,7 @@
icon_state = "cartridge_1_1"
},
/obj/effect/decal/cleanable/blood,
-/obj/item/weapon/gun/pistol/mod88,
+/obj/item/weapon/gun/pistol/vp70,
/turf/open/floor/plating/icefloor{
icon_state = "asteroidplating"
},
@@ -37068,8 +37068,8 @@
/area/varadero/interior/electrical)
"xRx" = (
/obj/structure/surface/table/woodentable,
-/obj/item/weapon/gun/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb,
+/obj/item/weapon/gun/revolver/spearhead,
+/obj/item/ammo_magazine/revolver/spearhead,
/turf/open/floor/wood,
/area/varadero/interior/security)
"xRF" = (
diff --git a/maps/map_files/New_Varadero_Fixed/New_Varadero_Repaired.dmm b/maps/map_files/New_Varadero_Fixed/New_Varadero_Repaired.dmm
index 773111ccb9..d02f6e7d89 100644
--- a/maps/map_files/New_Varadero_Fixed/New_Varadero_Repaired.dmm
+++ b/maps/map_files/New_Varadero_Fixed/New_Varadero_Repaired.dmm
@@ -1273,7 +1273,7 @@
dir = 1;
pixel_y = 17
},
-/obj/item/weapon/gun/revolver/cmb{
+/obj/item/weapon/gun/revolver/spearhead{
pixel_y = 2
},
/obj/item/clothing/ears/earmuffs{
@@ -3523,8 +3523,8 @@
/area/varadero/interior/hall_SE)
"cur" = (
/obj/structure/surface/rack,
-/obj/item/weapon/gun/pistol/mod88,
-/obj/item/weapon/gun/pistol/mod88{
+/obj/item/weapon/gun/pistol/vp70,
+/obj/item/weapon/gun/pistol/vp70{
pixel_y = -2
},
/obj/structure/machinery/storm_siren{
@@ -23255,16 +23255,16 @@
/area/varadero/interior/bunks)
"qfb" = (
/obj/structure/closet/crate/ammo/alt,
-/obj/item/ammo_magazine/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb{
+/obj/item/ammo_magazine/revolver/spearhead,
+/obj/item/ammo_magazine/revolver/spearhead{
pixel_x = -4;
pixel_y = -5
},
-/obj/item/ammo_magazine/revolver/cmb{
+/obj/item/ammo_magazine/revolver/spearhead{
pixel_x = -4;
pixel_y = -5
},
-/obj/item/ammo_magazine/revolver/cmb,
+/obj/item/ammo_magazine/revolver/spearhead,
/turf/open/floor/shiva{
icon_state = "floor3"
},
@@ -26894,15 +26894,15 @@
/area/varadero/interior/maintenance/security)
"syb" = (
/obj/structure/surface/rack,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
+/obj/item/ammo_magazine/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
/obj/structure/machinery/light{
dir = 4
},
@@ -30093,7 +30093,7 @@
},
/area/varadero/interior/technical_storage)
"uMQ" = (
-/obj/item/weapon/gun/pistol/mod88,
+/obj/item/weapon/gun/pistol/vp70,
/turf/open/floor/plating/icefloor{
icon_state = "asteroidplating"
},
@@ -34783,8 +34783,8 @@
/area/varadero/interior/electrical)
"xRx" = (
/obj/structure/surface/table/woodentable,
-/obj/item/weapon/gun/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb,
+/obj/item/weapon/gun/revolver/spearhead,
+/obj/item/ammo_magazine/revolver/spearhead,
/turf/open/floor/wood,
/area/varadero/interior/security)
"xRF" = (
diff --git a/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm b/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm
index 875497f91f..5afdcb4095 100644
--- a/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm
+++ b/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm
@@ -2191,13 +2191,10 @@
/area/strata/ag/interior/dorms/hive)
"agD" = (
/obj/effect/decal/cleanable/blood,
-/obj/item/ammo_magazine/revolver/cmb{
- pixel_x = 6;
- pixel_y = -4
- },
/obj/structure/pipes/standard/simple/hidden/cyan{
dir = 4
},
+/obj/item/ammo_magazine/revolver/upp,
/turf/open/floor/strata{
icon_state = "multi_tiles"
},
@@ -2238,11 +2235,8 @@
/area/strata/ag/exterior/paths/cabin_area)
"agI" = (
/obj/structure/bed/nest,
-/obj/item/weapon/gun/revolver/cmb{
- pixel_x = 6;
- pixel_y = -4
- },
/obj/effect/decal/cleanable/blood/gibs/core,
+/obj/item/weapon/gun/revolver/upp,
/turf/open/floor/strata{
icon_state = "multi_tiles"
},
@@ -2447,12 +2441,9 @@
/area/strata/ag/interior/dorms/hive)
"aht" = (
/obj/structure/bed/nest,
-/obj/item/ammo_magazine/revolver/cmb{
- pixel_x = 6;
- pixel_y = -4
- },
/obj/effect/decal/cleanable/blood/gibs/core,
/obj/effect/landmark/corpsespawner/russian,
+/obj/item/ammo_magazine/revolver/upp,
/turf/open/floor/strata{
icon_state = "multi_tiles"
},
@@ -2824,21 +2815,15 @@
/obj/effect/decal/cleanable/blood{
icon_state = "xgib2"
},
-/obj/item/ammo_magazine/revolver/cmb{
- pixel_x = 6;
- pixel_y = -4
- },
+/obj/item/ammo_magazine/revolver/upp,
/turf/open/floor/strata{
icon_state = "multi_tiles"
},
/area/strata/ag/interior/dorms/hive)
"aiC" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/obj/item/ammo_magazine/revolver/cmb{
- pixel_x = 6;
- pixel_y = -4
- },
/obj/structure/pipes/standard/simple/hidden/cyan,
+/obj/item/ammo_magazine/revolver/upp,
/turf/open/floor/strata{
icon_state = "multi_tiles"
},
@@ -3043,13 +3028,10 @@
},
/area/strata/ag/interior/dorms/hive)
"ajk" = (
-/obj/item/weapon/gun/revolver/cmb{
- pixel_x = 6;
- pixel_y = -4
- },
/obj/structure/pipes/standard/manifold/hidden/cyan{
dir = 4
},
+/obj/item/weapon/gun/revolver/upp,
/turf/open/floor/strata{
icon_state = "multi_tiles"
},
@@ -3062,7 +3044,6 @@
/obj/effect/decal/strata_decals/catwalk/prison,
/obj/structure/largecrate/random,
/obj/item/storage/backpack/lightpack,
-/obj/item/storage/belt/shotgun,
/turf/open/floor/greengrid,
/area/strata/ag/interior/dorms/hive)
"ajn" = (
@@ -3419,17 +3400,15 @@
/area/strata/ug/interior/jungle/deep/structures/res)
"ako" = (
/obj/structure/surface/table/reinforced/prison,
-/obj/item/ammo_magazine/shotgun/buckshot{
- pixel_x = 6;
- pixel_y = -4
- },
+/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot,
+/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot,
/turf/open/floor/strata{
icon_state = "red1"
},
/area/strata/ag/interior/dorms/flight_control)
"akq" = (
/obj/structure/surface/table/reinforced/prison,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/strata{
icon_state = "red1"
},
@@ -3645,7 +3624,7 @@
"akY" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/reagent_container/food/snacks/cubancarp,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/strata{
dir = 4;
icon_state = "cyan1"
@@ -3654,7 +3633,7 @@
"ala" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/reagent_container/food/snacks/fishfingers,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/strata{
dir = 4;
icon_state = "cyan1"
@@ -4342,15 +4321,11 @@
/area/strata/ag/interior/dorms/canteen)
"anr" = (
/obj/structure/surface/rack,
-/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
-/obj/item/ammo_magazine/shotgun/slugs{
- pixel_x = 6;
- pixel_y = -4
- },
-/obj/item/ammo_magazine/shotgun/buckshot{
- pixel_x = 6;
- pixel_y = -4
- },
+/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot,
+/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot,
+/obj/item/ammo_magazine/handful/shotgun/heavy/slug,
+/obj/item/ammo_magazine/handful/shotgun/heavy/slug,
+/obj/item/weapon/gun/shotgun/type23/riot,
/turf/open/floor/strata{
icon_state = "red1"
},
@@ -4901,7 +4876,7 @@
/obj/structure/surface/rack,
/obj/item/storage/box/m94,
/obj/item/storage/box/m94,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/strata{
icon_state = "floor3"
},
@@ -5215,7 +5190,7 @@
/obj/structure/surface/rack,
/obj/item/storage/box/cups,
/obj/item/storage/box/cups,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/strata{
icon_state = "floor3"
},
@@ -5404,7 +5379,7 @@
},
/area/strata/ug/interior/jungle/deep/structures/res)
"arb" = (
-/obj/item/storage/belt/security,
+/obj/item/storage/belt/security/MP/UPP,
/turf/open/floor/strata{
icon_state = "floor2"
},
@@ -5496,7 +5471,7 @@
/obj/item/storage/box/donkpockets,
/obj/item/storage/box/donkpockets,
/obj/item/storage/box/donkpockets,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/strata{
icon_state = "floor3"
},
@@ -5507,7 +5482,7 @@
/obj/item/storage/box/handcuffs,
/obj/item/storage/box/holobadge,
/obj/item/storage/box/evidence,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/strata{
icon_state = "floor3"
},
@@ -5517,7 +5492,7 @@
/obj/item/storage/box/lightstick/red,
/obj/item/storage/box/lightstick/red,
/obj/item/storage/box/lightstick/red,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/strata{
icon_state = "floor3"
},
@@ -5847,7 +5822,7 @@
/obj/item/storage/box/donkpockets,
/obj/item/storage/box/donkpockets,
/obj/item/storage/box/donkpockets,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/strata{
icon_state = "floor3"
},
@@ -5880,7 +5855,7 @@
/obj/structure/pipes/standard/simple/hidden/cyan{
dir = 4
},
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/strata{
icon_state = "floor3"
},
@@ -6251,7 +6226,6 @@
/obj/item/clothing/suit/storage/hazardvest,
/obj/item/clothing/suit/storage/hazardvest,
/obj/structure/surface/rack,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/turf/open/floor/strata,
/area/strata/ag/interior/dorms)
"atz" = (
@@ -7019,7 +6993,7 @@
/area/strata/ag/interior/outpost/engi)
"avX" = (
/obj/structure/surface/table/reinforced/prison,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/strata{
dir = 10;
icon_state = "multi_tiles"
@@ -8526,13 +8500,6 @@
/obj/structure/pipes/standard/simple/hidden/cyan,
/turf/open/floor/strata,
/area/strata/ag/interior/outpost/canteen/lower_cafeteria)
-"aAM" = (
-/obj/structure/machinery/cm_vending/sorted/marine_food,
-/turf/open/floor/strata{
- dir = 10;
- icon_state = "multi_tiles"
- },
-/area/strata/ag/interior/outpost/canteen)
"aAO" = (
/obj/effect/decal/cleanable/blood{
layer = 3
@@ -8754,7 +8721,7 @@
/obj/effect/decal/strata_decals/catwalk/prison,
/obj/item/prop/almayer/box,
/obj/item/coin/marine/engineer,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/greengrid,
/area/strata/ag/interior/dorms)
"aBw" = (
@@ -10178,10 +10145,10 @@
/area/strata/ag/interior/dorms)
"aFR" = (
/obj/effect/decal/cleanable/blood,
-/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
/obj/structure/pipes/standard/simple/hidden/cyan{
dir = 4
},
+/obj/item/weapon/gun/shotgun/type23/riot,
/turf/open/floor/strata{
icon_state = "white_cyan1"
},
@@ -10925,13 +10892,11 @@
},
/area/strata/ag/interior/dorms)
"aIm" = (
-/obj/item/ammo_magazine/shotgun/buckshot{
- pixel_x = 6;
- pixel_y = -4
- },
/obj/effect/decal/strata_decals/grime/grime4{
dir = 8
},
+/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot,
+/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot,
/turf/open/floor/strata{
icon_state = "white_cyan1"
},
@@ -13024,7 +12989,7 @@
"aPy" = (
/obj/structure/closet/bombcloset,
/obj/item/clothing/suit/armor/bulletproof,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/strata{
dir = 10;
icon_state = "multi_tiles"
@@ -13557,7 +13522,6 @@
"aQZ" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/storage/box/pizza,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/turf/open/floor/strata{
icon_state = "fake_wood"
},
@@ -13583,7 +13547,6 @@
/obj/structure/surface/table/reinforced/prison,
/obj/item/tool/crowbar,
/obj/effect/spawner/random/toolbox,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/turf/open/floor/strata,
/area/strata/ag/interior/outpost/engi)
"aRd" = (
@@ -15462,7 +15425,7 @@
/turf/closed/wall/strata_outpost/reinforced,
/area/strata/ug/interior/jungle/deep/structures/res)
"aYA" = (
-/obj/structure/machinery/vending/security,
+/obj/structure/machinery/vending/security/upp,
/turf/open/floor/strata{
dir = 10;
icon_state = "multi_tiles"
@@ -17814,14 +17777,6 @@
},
/turf/open/auto_turf/snow/brown_base/layer1,
/area/strata/ag/exterior/marsh/river)
-"bgR" = (
-/obj/structure/surface/rack,
-/obj/item/tool/shovel/snow,
-/obj/item/device/flashlight/flare,
-/obj/item/device/flashlight,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/auto_turf/snow/brown_base/layer1,
-/area/strata/ag/exterior/marsh/river)
"bgS" = (
/turf/open/auto_turf/snow/brown_base/layer1,
/area/strata/ag/exterior/marsh/crash)
@@ -18061,19 +18016,6 @@
},
/turf/open/gm/river,
/area/strata/ag/exterior/marsh/river)
-"bhL" = (
-/obj/item/clothing/shoes/snow,
-/obj/structure/surface/rack,
-/obj/item/clothing/shoes/snow,
-/obj/item/clothing/suit/storage/snow_suit,
-/obj/item/clothing/suit/storage/snow_suit,
-/obj/item/tank/emergency_oxygen/engi,
-/obj/effect/decal/strata_decals/grime/grime3{
- dir = 8
- },
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/auto_turf/snow/brown_base/layer1,
-/area/strata/ag/exterior/marsh/river)
"bhM" = (
/obj/structure/surface/rack,
/obj/item/tool/shovel/snow,
@@ -19712,7 +19654,7 @@
/area/strata/ag/interior/administration)
"bot" = (
/obj/structure/surface/table/reinforced/prison,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/strata{
icon_state = "blue1"
},
@@ -19775,7 +19717,6 @@
/obj/structure/machinery/camera/autoname{
dir = 8
},
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/turf/open/floor/strata{
icon_state = "blue1"
},
@@ -20102,7 +20043,6 @@
/obj/structure/surface/rack,
/obj/item/tank/emergency_oxygen/engi,
/obj/item/tank/emergency_oxygen/engi,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/turf/open/floor/strata{
dir = 10;
icon_state = "multi_tiles"
@@ -21015,7 +20955,7 @@
/turf/open/auto_turf/snow/brown_base/layer1,
/area/strata/ag/exterior/paths/southresearch)
"bth" = (
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/auto_turf/snow/brown_base/layer4,
/area/strata/ag/exterior/paths/southresearch)
"bti" = (
@@ -21191,7 +21131,6 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/turf/open/floor/strata,
/area/strata/ag/interior/disposals)
"btW" = (
@@ -21204,7 +21143,6 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/turf/open/floor/strata,
/area/strata/ag/interior/disposals)
"btX" = (
@@ -21966,7 +21904,6 @@
"bxb" = (
/obj/structure/surface/rack,
/obj/item/storage/belt/utility/full,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/turf/open/floor/strata,
/area/strata/ag/interior/disposals)
"bxc" = (
@@ -22648,7 +22585,6 @@
"bAw" = (
/obj/structure/surface/rack,
/obj/item/storage/briefcase,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/turf/open/floor/strata,
/area/strata/ag/interior/disposals)
"bAx" = (
@@ -22667,6 +22603,7 @@
/obj/structure/machinery/camera/autoname{
dir = 8
},
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/strata,
/area/strata/ag/interior/disposals)
"bAB" = (
@@ -23219,12 +23156,12 @@
/area/strata/ag/interior/disposals)
"bEY" = (
/obj/structure/surface/rack,
-/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
/obj/effect/landmark/good_item,
/obj/structure/surface/rack,
/obj/structure/machinery/light/small{
dir = 4
},
+/obj/item/weapon/gun/shotgun/type23,
/turf/open/floor/strata,
/area/strata/ag/interior/disposals)
"bFf" = (
@@ -23474,7 +23411,6 @@
/area/strata/ag/interior/outpost/med)
"bHr" = (
/obj/structure/surface/table/reinforced/prison,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/turf/open/floor/strata{
icon_state = "floor2"
},
@@ -24150,7 +24086,7 @@
"bMZ" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/reagent_container/food/snacks/meatballsoup,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/strata{
dir = 4;
icon_state = "cyan1"
@@ -24305,7 +24241,7 @@
pixel_x = 8;
pixel_y = 6
},
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/strata{
icon_state = "blue1"
},
@@ -24963,15 +24899,11 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
-/obj/item/ammo_magazine/shotgun/slugs{
- pixel_x = 6;
- pixel_y = -4
- },
-/obj/item/ammo_magazine/shotgun/buckshot{
- pixel_x = 6;
- pixel_y = -4
- },
+/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot,
+/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot,
+/obj/item/ammo_magazine/handful/shotgun/heavy/slug,
+/obj/item/ammo_magazine/handful/shotgun/heavy/slug,
+/obj/item/weapon/gun/shotgun/type23/riot,
/turf/open/floor/strata{
icon_state = "red1"
},
@@ -24994,7 +24926,7 @@
/obj/structure/surface/rack,
/obj/item/storage/firstaid/adv,
/obj/item/reagent_container/spray/pepper,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/strata{
icon_state = "red1"
},
@@ -25093,7 +25025,7 @@
"bVL" = (
/obj/structure/surface/rack,
/obj/item/storage/box/condimentbottles,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/strata{
icon_state = "floor3"
},
@@ -25169,7 +25101,6 @@
/area/strata/ug/interior/jungle/deep/minehead)
"bWi" = (
/obj/structure/largecrate/random,
-/obj/item/storage/belt/shotgun,
/obj/item/storage/backpack/lightpack,
/turf/open/floor/strata{
icon_state = "orange_cover"
@@ -25192,7 +25123,7 @@
/obj/item/storage/box/lightstick,
/obj/item/storage/box/lightstick,
/obj/item/storage/box/lightstick,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/strata{
icon_state = "floor3"
},
@@ -26419,7 +26350,7 @@
/area/strata/ag/interior/administration)
"cfX" = (
/obj/structure/largecrate/random,
-/obj/item/storage/belt/grenade/large/full,
+/obj/item/storage/belt/marine/upp/sapper,
/turf/open/asphalt/cement,
/area/strata/ag/exterior/research_decks)
"cfY" = (
@@ -27742,21 +27673,15 @@
},
/area/strata/ag/interior/nearlz1)
"coY" = (
-/obj/item/ammo_magazine/revolver/cmb{
- pixel_x = 6;
- pixel_y = -4
- },
+/obj/item/ammo_magazine/revolver/upp,
/turf/open/floor/strata{
icon_state = "multi_tiles"
},
/area/strata/ag/interior/dorms/hive)
"coZ" = (
/obj/effect/decal/cleanable/blood,
-/obj/item/ammo_magazine/revolver/cmb{
- pixel_x = 6;
- pixel_y = -4
- },
/obj/structure/pipes/standard/simple/hidden/cyan,
+/obj/item/ammo_magazine/revolver/upp,
/turf/open/floor/strata{
icon_state = "multi_tiles"
},
@@ -29320,7 +29245,7 @@
/turf/closed/wall/strata_ice/jungle,
/area/strata/ug/interior/jungle/deep/tearlake)
"dMw" = (
-/obj/structure/cargo_container/wy/left,
+/obj/structure/cargo_container/ferret/left,
/turf/open/auto_turf/ice/layer1,
/area/strata/ag/exterior/marsh)
"dNq" = (
@@ -29593,7 +29518,6 @@
/turf/closed/wall/strata_ice/jungle,
/area/strata/ug/interior/jungle/deep/south_engi)
"ekZ" = (
-/obj/item/storage/belt/knifepouch,
/obj/structure/surface/rack,
/turf/open/floor/strata{
dir = 4;
@@ -30307,7 +30231,7 @@
/obj/structure/barricade/handrail/strata{
dir = 4
},
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/strata{
dir = 4;
icon_state = "floor3"
@@ -30658,7 +30582,7 @@
"fWV" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/reagent_container/food/drinks/bottle/sake,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/strata{
icon_state = "orange_tile"
},
@@ -31384,7 +31308,7 @@
"haN" = (
/obj/structure/largecrate/random,
/obj/item/trash/pistachios,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/prison{
icon_state = "darkyellowfull2"
},
@@ -32031,7 +31955,7 @@
/area/strata/ag/interior/dorms/hive)
"ioM" = (
/obj/structure/surface/table/almayer,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/strata,
/area/strata/ag/interior/landingzone_checkpoint)
"ipd" = (
@@ -33135,13 +33059,13 @@
/turf/closed/wall/strata_outpost,
/area/strata/ug/interior/outpost/jung/dorms/med2)
"jXD" = (
-/obj/item/weapon/gun/revolver/cmb,
/obj/structure/surface/rack{
layer = 2.5
},
-/obj/item/ammo_magazine/revolver/cmb,
-/obj/item/ammo_magazine/revolver/cmb,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/item/weapon/gun/revolver/upp,
+/obj/item/ammo_magazine/revolver/upp,
+/obj/item/ammo_magazine/revolver/upp,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/strata{
dir = 4;
icon_state = "floor3"
@@ -33950,7 +33874,7 @@
/turf/open/asphalt/cement,
/area/strata/ag/interior/tcomms)
"lrO" = (
-/obj/structure/cargo_container/wy/mid,
+/obj/structure/cargo_container/ferret/mid,
/turf/open/auto_turf/ice/layer0,
/area/strata/ag/exterior/marsh)
"lsz" = (
@@ -34181,29 +34105,18 @@
/area/strata/ug/interior/jungle/deep/structures/engi)
"lNr" = (
/obj/structure/surface/rack,
-/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
-/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
-/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{
- pixel_x = 6;
- pixel_y = -4
- },
-/obj/item/ammo_magazine/shotgun/buckshot{
- pixel_x = 6;
- pixel_y = -4
- },
-/obj/item/ammo_magazine/shotgun/buckshot{
- pixel_x = 6;
- pixel_y = -4
- },
-/obj/item/ammo_magazine/shotgun/buckshot{
- pixel_x = 6;
- pixel_y = -4
- },
-/obj/item/ammo_magazine/shotgun/buckshot{
- pixel_x = 6;
- pixel_y = -4
- },
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot,
+/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot,
+/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot,
+/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot,
+/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot,
+/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot,
+/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot,
+/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
+/obj/item/weapon/gun/shotgun/type23/riot,
+/obj/item/weapon/gun/shotgun/type23/riot,
+/obj/item/weapon/gun/shotgun/type23/riot,
/turf/open/floor/strata{
icon_state = "red1"
},
@@ -34361,10 +34274,7 @@
/obj/structure/pipes/vents/pump{
dir = 1
},
-/obj/item/ammo_magazine/revolver/cmb{
- pixel_x = 6;
- pixel_y = -4
- },
+/obj/item/ammo_magazine/revolver/upp,
/turf/open/floor/strata{
icon_state = "multi_tiles"
},
@@ -35212,7 +35122,7 @@
/obj/item/explosive/grenade/phosphorus,
/obj/item/explosive/grenade/phosphorus,
/obj/item/folder/red,
-/obj/item/ammo_box/magazine/shotgun/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/strata{
icon_state = "red1"
},
@@ -35441,7 +35351,7 @@
/turf/open/floor/strata,
/area/strata/ag/interior/outpost/engi/drome)
"nPW" = (
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/strata{
icon_state = "orange_cover"
},
@@ -35478,7 +35388,7 @@
/turf/open/auto_turf/ice/layer1,
/area/strata/ag/exterior/marsh/center)
"nSQ" = (
-/obj/structure/cargo_container/wy/right,
+/obj/structure/cargo_container/ferret/right,
/turf/open/auto_turf/ice/layer0,
/area/strata/ag/exterior/marsh)
"nST" = (
@@ -36915,7 +36825,7 @@
/turf/open/floor/strata,
/area/strata/ug/interior/outpost/jung/dorms/med2)
"qdI" = (
-/obj/item/ammo_magazine/revolver/cmb,
+/obj/item/ammo_magazine/revolver/upp,
/turf/open/auto_turf/ice/layer1,
/area/strata/ag/exterior/paths/southresearch)
"qer" = (
@@ -37042,14 +36952,6 @@
/obj/structure/sign/safety/storage,
/turf/closed/wall/strata_outpost/reinforced/hull,
/area/strata/ag/exterior/tcomms/tcomms_deck)
-"qmW" = (
-/obj/structure/largecrate/random,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "floor3"
- },
-/area/strata/ag/exterior/research_decks)
"qns" = (
/obj/structure/machinery/light/small{
dir = 1;
@@ -37687,7 +37589,7 @@
/area/strata/ag/exterior/tcomms/tcomms_deck)
"rkb" = (
/obj/item/clothing/glasses/thermal/syndi,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/strata{
dir = 8;
icon_state = "multi_tiles"
@@ -38535,14 +38437,14 @@
/turf/open/auto_turf/strata_grass/layer1,
/area/strata/ug/interior/jungle/deep/tearlake)
"sMj" = (
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/strata,
/area/strata/ag/exterior/research_decks)
"sMX" = (
/obj/structure/bed/chair/dropship/passenger{
dir = 4
},
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/almayer{
icon_state = "test_floor5"
},
@@ -38834,7 +38736,7 @@
/obj/item/storage/box/beakers,
/obj/item/storage/box/gloves,
/obj/item/storage/box/pillbottles,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/strata{
icon_state = "floor3"
},
@@ -39160,7 +39062,7 @@
/obj/structure/barricade/wooden{
dir = 8
},
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/auto_turf/ice/layer1,
/area/strata/ag/exterior/paths/southresearch)
"tLI" = (
@@ -39388,7 +39290,6 @@
pixel_x = 8;
pixel_y = 6
},
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/turf/open/floor/strata{
icon_state = "floor3"
},
@@ -39446,7 +39347,7 @@
/obj/item/tool/shovel/etool/folded,
/obj/item/weapon/gun/pistol/t73,
/obj/item/attachable/bayonet/upp,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/prison{
icon_state = "darkredfull2"
},
@@ -39951,7 +39852,7 @@
/obj/item/tool/shovel/etool/folded,
/obj/item/weapon/gun/pistol/t73,
/obj/item/attachable/bayonet/upp,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/strata{
icon_state = "red1"
},
@@ -40157,7 +40058,6 @@
/area/strata/ag/exterior/research_decks)
"vhv" = (
/obj/structure/surface/rack,
-/obj/item/storage/belt/knifepouch,
/turf/open/floor/strata,
/area/strata/ag/interior/outpost/engi/drome)
"vhG" = (
@@ -40221,7 +40121,7 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/strata{
icon_state = "orange_cover"
},
@@ -40370,7 +40270,7 @@
/area/strata/ag/interior/outpost/med)
"vth" = (
/obj/structure/closet/lawcloset,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/strata{
dir = 4;
icon_state = "floor3"
@@ -40802,7 +40702,7 @@
},
/area/strata/ag/interior/research_decks/security)
"wgu" = (
-/obj/item/weapon/gun/revolver/cmb,
+/obj/item/weapon/gun/revolver/upp,
/turf/open/auto_turf/ice/layer1,
/area/strata/ag/exterior/paths/southresearch)
"wgB" = (
@@ -41156,7 +41056,7 @@
/obj/item/tool/stamp,
/obj/item/paper_bin,
/obj/structure/pipes/standard/manifold/hidden/cyan,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/strata{
icon_state = "red1"
},
@@ -41375,7 +41275,7 @@
/area/strata/ag/interior/outpost/med)
"xnZ" = (
/obj/structure/surface/rack,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/strata{
dir = 4;
icon_state = "floor3"
@@ -41594,7 +41494,7 @@
"xDX" = (
/obj/structure/bed/nest,
/obj/effect/decal/cleanable/blood/gibs/core,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/strata{
icon_state = "multi_tiles"
},
@@ -41817,7 +41717,7 @@
dir = 8
},
/obj/effect/decal/cleanable/blood,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/almayer{
icon_state = "test_floor5"
},
@@ -42019,7 +41919,7 @@
/obj/structure/surface/table/reinforced/prison,
/obj/item/storage/pouch/flare/full,
/obj/item/weapon/gun/pistol/t73,
-/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp,
/turf/open/floor/strata{
icon_state = "orange_tile"
},
@@ -43148,7 +43048,7 @@ nTS
crN
aZv
bgQ
-bhL
+bgQ
aZv
aZv
bia
@@ -43537,7 +43437,7 @@ bjN
aVq
bjN
aVq
-bgR
+bhM
bhM
bgS
bgS
@@ -58538,7 +58438,7 @@ aRR
aRR
aZe
iLJ
-qmW
+bGk
aac
ccd
cmX
@@ -72549,10 +72449,10 @@ ccp
ccp
ckM
cjn
-aAM
-aAM
-aAM
-aAM
+cgu
+cgu
+cgu
+cgu
cjn
aGM
cgp
diff --git a/maps/map_files/USS_Almayer/USS_Almayer.dmm b/maps/map_files/USS_Almayer/USS_Almayer.dmm
index 30625f02d1..a949bcdcb2 100644
--- a/maps/map_files/USS_Almayer/USS_Almayer.dmm
+++ b/maps/map_files/USS_Almayer/USS_Almayer.dmm
@@ -23563,7 +23563,7 @@
dir = 4
},
/obj/structure/surface/table/reinforced/almayer_B,
-/obj/item/storage/box/co2_knife{
+/obj/item/storage/box/loadout/co2_knife{
pixel_x = 8;
pixel_y = 9
},
diff --git a/maps/map_files/Whiskey_Outpost_v2/Whiskey_Outpost_v2.dmm b/maps/map_files/Whiskey_Outpost_v2/Whiskey_Outpost_v2.dmm
index 36c8e9abe7..e5461db06c 100644
--- a/maps/map_files/Whiskey_Outpost_v2/Whiskey_Outpost_v2.dmm
+++ b/maps/map_files/Whiskey_Outpost_v2/Whiskey_Outpost_v2.dmm
@@ -6689,7 +6689,7 @@
/obj/structure/surface/rack,
/obj/item/ammo_box/magazine/m4a3,
/obj/item/ammo_box/magazine/m44,
-/obj/item/ammo_box/magazine/mod88,
+/obj/item/ammo_box/magazine/vp70,
/turf/open/floor/prison{
icon_state = "floor_plate"
},
diff --git a/maps/map_files/chapaev/chapaev.dmm b/maps/map_files/chapaev/chapaev.dmm
index ec03e22945..61f68cb840 100644
--- a/maps/map_files/chapaev/chapaev.dmm
+++ b/maps/map_files/chapaev/chapaev.dmm
@@ -2686,7 +2686,7 @@
/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special,
/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special,
/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special,
-/obj/item/weapon/gun/shotgun/type23/pve,
+/obj/item/weapon/gun/shotgun/type23,
/turf/open/floor/strata{
icon_state = "floor2"
},
@@ -4342,6 +4342,7 @@
job = "Platoon Commander"
},
/obj/item/clothing/under/marine/veteran/UPP/boiler,
+/obj/item/clothing/under/marine/veteran/UPP/officer,
/turf/open/floor/strata{
dir = 6;
icon_state = "multi_tiles"
@@ -4735,7 +4736,7 @@
/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special,
/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special,
/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special,
-/obj/item/weapon/gun/shotgun/type23/pve,
+/obj/item/weapon/gun/shotgun/type23,
/turf/open/floor/strata{
icon_state = "floor2"
},
diff --git a/maps/map_files/derelict_almayer/derelict_almayer.dmm b/maps/map_files/derelict_almayer/derelict_almayer.dmm
index d03b742faa..e410029362 100644
--- a/maps/map_files/derelict_almayer/derelict_almayer.dmm
+++ b/maps/map_files/derelict_almayer/derelict_almayer.dmm
@@ -60103,7 +60103,7 @@
dir = 4
},
/obj/structure/surface/table/reinforced/almayer_B,
-/obj/item/storage/box/co2_knife{
+/obj/item/storage/box/loadout/co2_knife{
pixel_x = 8;
pixel_y = 9
},
diff --git a/maps/map_files/golden_arrow/briefing/10.chairs.dmm b/maps/map_files/golden_arrow/briefing/10.chairs.dmm
new file mode 100644
index 0000000000..2e33125bd0
--- /dev/null
+++ b/maps/map_files/golden_arrow/briefing/10.chairs.dmm
@@ -0,0 +1,563 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/obj/structure/platform_decoration{
+ dir = 8
+ },
+/obj/structure/machinery/light/double/blue{
+ dir = 8;
+ light_color = "#dae2ff"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer/edge/smooth/endcap_left,
+/area/golden_arrow/dorms)
+"b" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/sign/banners/united_americas_flag{
+ pixel_y = 28
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"c" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"d" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
+ },
+/area/golden_arrow/briefing)
+"e" = (
+/turf/closed/wall/almayer/outer,
+/area/golden_arrow/briefing)
+"f" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 8
+ },
+/area/golden_arrow/briefing)
+"g" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
+ },
+/area/golden_arrow/briefing)
+"h" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/briefing)
+"i" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
+ },
+/area/golden_arrow/briefing)
+"j" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/machinery/prop/almayer/CICmap{
+ density = 0;
+ icon_state = "shuttle";
+ layer = 2.97;
+ name = "Tactical Map Display";
+ pixel_y = 21
+ },
+/obj/structure/noticeboard{
+ pixel_y = 30;
+ pixel_x = -21
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"l" = (
+/obj/structure/machinery/firealarm{
+ dir = 4;
+ pixel_x = 21
+ },
+/obj/structure/bed/chair{
+ can_buckle = 0;
+ dir = 8
+ },
+/obj/structure/bed/chair{
+ can_buckle = 0;
+ dir = 8;
+ pixel_x = -1;
+ pixel_y = 3;
+ layer = 3.01
+ },
+/obj/structure/bed/chair{
+ can_buckle = 0;
+ dir = 8;
+ pixel_x = -2;
+ pixel_y = 6;
+ layer = 3.02
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/briefing)
+"m" = (
+/obj/structure/surface/table/almayer,
+/obj/item/prop/tableflag/uscm{
+ pixel_y = 2;
+ pixel_x = -3
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"n" = (
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"o" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/bed/chair{
+ can_buckle = 0;
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ can_buckle = 0;
+ dir = 4;
+ pixel_x = 1;
+ pixel_y = 3;
+ layer = 3.01
+ },
+/obj/structure/bed/chair{
+ can_buckle = 0;
+ dir = 4;
+ pixel_x = 2;
+ pixel_y = 6;
+ layer = 3.02
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
+ },
+/area/golden_arrow/briefing)
+"p" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"q" = (
+/obj/structure/surface/table/almayer,
+/obj/item/prop/tableflag{
+ pixel_x = 3;
+ pixel_y = 2
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"t" = (
+/obj/structure/machinery/disposal,
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/almayer/edge/smooth/endcap_left{
+ dir = 1
+ },
+/area/golden_arrow/briefing)
+"u" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/briefing)
+"v" = (
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/briefing)
+"x" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 8;
+ pixel_x = 16
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
+ },
+/area/golden_arrow/briefing)
+"y" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/obj/structure/platform{
+ dir = 1
+ },
+/obj/item/tool/mop{
+ pixel_x = -10;
+ pixel_y = 4
+ },
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 4
+ },
+/area/golden_arrow/briefing)
+"A" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "0-8";
+ layer = 2.36
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"B" = (
+/obj/structure/bed/chair{
+ can_buckle = 0;
+ dir = 8
+ },
+/obj/structure/bed/chair{
+ can_buckle = 0;
+ dir = 8;
+ pixel_x = -1;
+ pixel_y = 3;
+ layer = 3.01
+ },
+/obj/structure/bed/chair{
+ can_buckle = 0;
+ dir = 8;
+ pixel_x = -2;
+ pixel_y = 6;
+ layer = 3.02
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/briefing)
+"D" = (
+/obj/item/reagent_container/glass/rag,
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"E" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"G" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/briefing)
+"H" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1;
+ pixel_x = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 1
+ },
+/area/golden_arrow/briefing)
+"I" = (
+/obj/structure/platform{
+ dir = 4;
+ layer = 2.7
+ },
+/obj/structure/stairs/perspective,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"J" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"M" = (
+/obj/structure/platform{
+ dir = 8;
+ layer = 2.7
+ },
+/obj/structure/stairs/perspective,
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"N" = (
+/obj/structure/sign/safety/rewire{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"P" = (
+/obj/structure/machinery/light_switch{
+ pixel_x = -24
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/briefing)
+"Q" = (
+/turf/closed/wall/almayer,
+/area/golden_arrow/briefing)
+"R" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
+ },
+/area/golden_arrow/briefing)
+"S" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/bed/chair{
+ can_buckle = 0;
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ can_buckle = 0;
+ dir = 4;
+ pixel_x = 1;
+ pixel_y = 3;
+ layer = 3.01
+ },
+/obj/structure/bed/chair{
+ can_buckle = 0;
+ dir = 4;
+ pixel_x = 2;
+ pixel_y = 6;
+ layer = 3.02
+ },
+/turf/open/floor/almayer/edge/smooth/endcap_right{
+ dir = 1
+ },
+/area/golden_arrow/briefing)
+"T" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/pipes/vents/pump{
+ dir = 8;
+ pixel_x = -16
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
+ },
+/area/golden_arrow/briefing)
+"U" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/briefing)
+"V" = (
+/obj/structure/surface/table/almayer,
+/obj/item/notepad/black{
+ pixel_y = 4
+ },
+/obj/item/tool/pen{
+ pixel_x = -16;
+ pixel_y = 8
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"W" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/janitorialcart,
+/turf/open/floor/almayer/edge/smooth/corner,
+/area/golden_arrow/briefing)
+"X" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/item/reagent_container/glass/rag,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/briefing)
+"Y" = (
+/obj/structure/platform_decoration{
+ dir = 4
+ },
+/obj/structure/machinery/light/double/blue{
+ dir = 4;
+ light_color = "#dae2ff"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer/edge/smooth/endcap_right,
+/area/golden_arrow/briefing)
+"Z" = (
+/obj/structure/surface/table/almayer,
+/obj/item/weapon/twohanded/folded_metal_chair{
+ pixel_y = 9
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+
+(1,1,1) = {"
+e
+e
+e
+e
+e
+e
+e
+e
+e
+"}
+(2,1,1) = {"
+e
+c
+p
+I
+a
+v
+v
+P
+S
+"}
+(3,1,1) = {"
+e
+j
+n
+m
+h
+U
+X
+u
+o
+"}
+(4,1,1) = {"
+e
+b
+n
+Z
+W
+g
+d
+x
+f
+"}
+(5,1,1) = {"
+e
+E
+n
+V
+y
+T
+i
+i
+H
+"}
+(6,1,1) = {"
+e
+A
+D
+q
+G
+v
+v
+v
+R
+"}
+(7,1,1) = {"
+e
+J
+N
+M
+Y
+v
+l
+B
+t
+"}
+(8,1,1) = {"
+e
+e
+e
+e
+e
+e
+e
+Q
+Q
+"}
diff --git a/maps/map_files/golden_arrow/briefing/10.lightsout.dmm b/maps/map_files/golden_arrow/briefing/10.lightsout.dmm
new file mode 100644
index 0000000000..26cb913348
--- /dev/null
+++ b/maps/map_files/golden_arrow/briefing/10.lightsout.dmm
@@ -0,0 +1,531 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
+ },
+/area/golden_arrow/briefing)
+"b" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/briefing)
+"c" = (
+/obj/structure/surface/table/almayer,
+/obj/item/prop/tableflag{
+ pixel_x = 3;
+ pixel_y = 2
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"d" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"e" = (
+/obj/structure/platform_decoration{
+ dir = 8
+ },
+/obj/structure/machinery/light/double/blue{
+ dir = 8;
+ light_color = "#dae2ff"
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer/edge/smooth/endcap_left,
+/area/golden_arrow/briefing)
+"g" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/almayer/edge/smooth/corner,
+/area/golden_arrow/briefing)
+"h" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 8
+ },
+/area/golden_arrow/briefing)
+"i" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/machinery/prop/almayer/CICmap{
+ density = 0;
+ icon_state = "shuttle";
+ layer = 2.97;
+ name = "Tactical Map Display";
+ pixel_y = 21
+ },
+/obj/structure/noticeboard{
+ pixel_y = 30;
+ pixel_x = -21
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"j" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
+ },
+/area/golden_arrow/briefing)
+"k" = (
+/turf/closed/wall/almayer/outer,
+/area/golden_arrow/briefing)
+"l" = (
+/obj/structure/surface/table/almayer,
+/obj/item/prop/tableflag/uscm{
+ pixel_y = 2;
+ pixel_x = -3
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"m" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"n" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
+ },
+/area/golden_arrow/briefing)
+"o" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/briefing)
+"p" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/structure/machinery/firealarm{
+ dir = 4;
+ pixel_x = 21
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/briefing)
+"q" = (
+/turf/closed/wall/almayer,
+/area/golden_arrow/briefing)
+"r" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "0-8";
+ layer = 2.36
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"s" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/briefing)
+"t" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"u" = (
+/obj/structure/platform{
+ dir = 4;
+ layer = 2.7
+ },
+/obj/structure/stairs/perspective,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"v" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/structure/machinery/light_switch{
+ pixel_x = -24;
+ on = 0
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/briefing)
+"x" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
+ },
+/area/golden_arrow/briefing)
+"y" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/briefing)
+"z" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 8;
+ pixel_x = 16
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
+ },
+/area/golden_arrow/briefing)
+"A" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/pipes/vents/pump{
+ dir = 8;
+ pixel_x = -16
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
+ },
+/area/golden_arrow/briefing)
+"B" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/obj/structure/platform{
+ dir = 1
+ },
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 4
+ },
+/area/golden_arrow/briefing)
+"C" = (
+/obj/structure/platform_decoration{
+ dir = 4
+ },
+/obj/structure/machinery/light/double/blue{
+ dir = 4;
+ light_color = "#dae2ff"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer/edge/smooth/endcap_right,
+/area/golden_arrow/briefing)
+"D" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/briefing)
+"F" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
+ },
+/area/golden_arrow/briefing)
+"G" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1;
+ pixel_x = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 1
+ },
+/area/golden_arrow/briefing)
+"J" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/bed/chair,
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"K" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/sign/banners/united_americas_flag{
+ pixel_y = 28
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"L" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer/edge/smooth/endcap_right{
+ dir = 1
+ },
+/area/golden_arrow/briefing)
+"M" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"N" = (
+/obj/structure/sign/safety/rewire{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"O" = (
+/obj/structure/platform{
+ dir = 8;
+ layer = 2.7
+ },
+/obj/structure/stairs/perspective,
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"Q" = (
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"R" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/disposal,
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/almayer/edge/smooth/endcap_left{
+ dir = 1
+ },
+/area/golden_arrow/briefing)
+"S" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/briefing)
+"X" = (
+/obj/structure/surface/table/almayer,
+/obj/item/notepad/black{
+ pixel_y = 4
+ },
+/obj/item/tool/pen{
+ pixel_x = -16;
+ pixel_y = 8
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"Y" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/briefing)
+"Z" = (
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+
+(1,1,1) = {"
+k
+k
+k
+k
+k
+k
+k
+k
+k
+"}
+(2,1,1) = {"
+k
+J
+m
+u
+e
+Y
+Y
+v
+L
+"}
+(3,1,1) = {"
+k
+i
+Q
+l
+b
+y
+o
+s
+a
+"}
+(4,1,1) = {"
+k
+K
+Q
+Z
+g
+F
+n
+z
+h
+"}
+(5,1,1) = {"
+k
+d
+Q
+X
+B
+A
+x
+x
+G
+"}
+(6,1,1) = {"
+k
+r
+M
+c
+S
+Y
+Y
+Y
+j
+"}
+(7,1,1) = {"
+k
+t
+N
+O
+C
+Y
+p
+D
+R
+"}
+(8,1,1) = {"
+k
+k
+k
+k
+k
+k
+k
+q
+q
+"}
diff --git a/maps/map_files/golden_arrow/dorms/10.party.dmm b/maps/map_files/golden_arrow/dorms/10.party.dmm
new file mode 100644
index 0000000000..51df6b1397
--- /dev/null
+++ b/maps/map_files/golden_arrow/dorms/10.party.dmm
@@ -0,0 +1,938 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aU" = (
+/obj/structure/machinery/washing_machine,
+/obj/structure/machinery/washing_machine{
+ layer = 3.5;
+ pixel_y = 15
+ },
+/obj/item/storage/beer_pack{
+ pixel_y = 5;
+ layer = 2.99;
+ pixel_x = 3
+ },
+/turf/open/floor/almayer/edge{
+ dir = 5
+ },
+/area/golden_arrow/dorms)
+"bV" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/effect/decal/cleanable/vomit,
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"cP" = (
+/obj/structure/surface/table/almayer,
+/obj/item/clothing/suit/storage/jacket/marine/service{
+ pixel_x = 11
+ },
+/obj/item/prop/magazine/dirty/torn{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/dorms)
+"dp" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/dorms)
+"dA" = (
+/obj/item/prop/magazine/book/starshiptroopers{
+ layer = 4.1;
+ pixel_y = 47
+ },
+/obj/item/trash/crushed_cup{
+ pixel_x = -7;
+ icon = 'icons/obj/items/drinkcans.dmi';
+ icon_state = "beer_crushed";
+ desc = "A sad, crushed can of beer.";
+ name = "\improper Weyland-Yutani Lite";
+ pixel_y = 19
+ },
+/obj/effect/decal/cleanable/vomit,
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"dX" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/bedsheetbin{
+ pixel_y = 6
+ },
+/turf/open/floor/almayer/edge{
+ dir = 6
+ },
+/area/golden_arrow/dorms)
+"eP" = (
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"fD" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/atm{
+ pixel_y = 26
+ },
+/turf/open/floor/almayer/edge{
+ dir = 1
+ },
+/area/golden_arrow/dorms)
+"gv" = (
+/obj/structure/barricade/handrail{
+ dir = 4
+ },
+/obj/structure/barricade/handrail{
+ dir = 8
+ },
+/obj/structure/closet/secure_closet,
+/obj/structure/machinery/light/double/blue{
+ light_color = "#dae2ff"
+ },
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/dorms)
+"gJ" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/light/double/blue{
+ light_color = "#dae2ff"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/dorms)
+"gR" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"he" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/barricade/handrail{
+ dir = 8
+ },
+/obj/structure/machinery/computer/cameras/wooden_tv/prop{
+ dir = 4;
+ layer = 3.2;
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/obj/structure/machinery/light/double/blue{
+ dir = 8;
+ light_color = "#dae2ff"
+ },
+/obj/item/clothing/mask/cigarette/weed{
+ pixel_y = -3
+ },
+/turf/open/floor/almayer/edge{
+ dir = 8
+ },
+/area/golden_arrow/dorms)
+"hx" = (
+/obj/structure/bed{
+ can_buckle = 0
+ },
+/obj/structure/bed{
+ buckling_y = 13;
+ layer = 3.5;
+ pixel_y = 13
+ },
+/obj/item/bedsheet/brown{
+ layer = 3.4
+ },
+/obj/item/bedsheet/brown{
+ pixel_y = 13
+ },
+/turf/open/floor/almayer/edge{
+ dir = 10
+ },
+/area/golden_arrow/dorms)
+"iA" = (
+/obj/structure/barricade/handrail{
+ dir = 8
+ },
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/recharger{
+ pixel_y = -14
+ },
+/obj/item/ashtray/plastic{
+ icon_state = "ashtray_full_bl";
+ pixel_x = 9;
+ pixel_y = 6
+ },
+/obj/item/trash/cigbutt{
+ pixel_y = 5;
+ pixel_x = 4
+ },
+/obj/item/trash/cigbutt{
+ pixel_y = 15;
+ pixel_x = -4
+ },
+/obj/item/trash/crushed_cup{
+ pixel_y = 5;
+ pixel_x = -4
+ },
+/obj/item/trash/crushed_cup{
+ pixel_x = 4
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"kG" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-8"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"lG" = (
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/dorms)
+"lK" = (
+/obj/structure/barricade/handrail{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/item/prop/magazine/dirty/torn/alt,
+/turf/open/floor/almayer/edge{
+ dir = 4
+ },
+/area/golden_arrow/dorms)
+"lT" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"mr" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/vending/walkman{
+ pixel_y = 21;
+ pixel_x = 10;
+ density = 0
+ },
+/obj/item/trash/kepler{
+ pixel_x = 8;
+ pixel_y = 44
+ },
+/obj/item/trash/barcardine,
+/turf/open/floor/almayer/edge{
+ dir = 9
+ },
+/area/golden_arrow/dorms)
+"nw" = (
+/obj/structure/bed{
+ can_buckle = 0
+ },
+/obj/structure/bed{
+ buckling_y = 13;
+ layer = 3.5;
+ pixel_y = 13
+ },
+/obj/item/bedsheet/brown{
+ layer = 3.4
+ },
+/obj/item/bedsheet/brown{
+ pixel_y = 13
+ },
+/obj/item/storage/beer_pack,
+/turf/open/floor/almayer/edge{
+ dir = 1
+ },
+/area/golden_arrow/dorms)
+"nO" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"pa" = (
+/turf/closed/wall/almayer,
+/area/golden_arrow/dorms)
+"qf" = (
+/obj/structure/barricade/handrail{
+ dir = 8
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/prop/magazine/dirty/torn{
+ pixel_x = 2;
+ pixel_y = 6
+ },
+/obj/item/trash/cigbutt{
+ pixel_y = 10;
+ pixel_x = -7
+ },
+/obj/item/trash/eat{
+ pixel_x = 10
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"qR" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"qT" = (
+/obj/structure/barricade/handrail{
+ dir = 4
+ },
+/obj/item/trash/crushed_cup{
+ pixel_x = -7;
+ icon = 'icons/obj/items/drinkcans.dmi';
+ icon_state = "beer_crushed";
+ desc = "A sad, crushed can of beer.";
+ name = "\improper Weyland-Yutani Lite";
+ pixel_y = 6
+ },
+/obj/effect/decal/strata_decals/grime/grime1,
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"ro" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge{
+ dir = 4
+ },
+/area/golden_arrow/dorms)
+"rL" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/item/trash/crushed_cup{
+ pixel_x = 4;
+ icon = 'icons/obj/items/drinkcans.dmi';
+ icon_state = "ale_crushed";
+ desc = "Beer's misunderstood cousin.";
+ name = "\improper Weyland-Yutani IPA"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/golden_arrow/dorms)
+"sa" = (
+/obj/structure/barricade/handrail{
+ dir = 4
+ },
+/obj/structure/barricade/handrail{
+ dir = 8
+ },
+/obj/structure/closet/secure_closet,
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice3";
+ pixel_x = 16;
+ pixel_y = -15
+ },
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice2";
+ pixel_x = 16;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer/edge{
+ dir = 1
+ },
+/area/golden_arrow/dorms)
+"so" = (
+/obj/structure/bed{
+ can_buckle = 0
+ },
+/obj/structure/bed{
+ buckling_y = 13;
+ layer = 3.5;
+ pixel_y = 13
+ },
+/obj/item/bedsheet/brown{
+ layer = 3.4
+ },
+/obj/item/bedsheet/brown{
+ pixel_y = 13
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge{
+ dir = 1
+ },
+/area/golden_arrow/dorms)
+"sP" = (
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice3";
+ pixel_x = 16;
+ pixel_y = -15
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"uc" = (
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice3";
+ pixel_x = 16;
+ pixel_y = -15
+ },
+/obj/item/trash/crushed_cup{
+ pixel_x = -7;
+ icon = 'icons/obj/items/drinkcans.dmi';
+ icon_state = "beer_crushed";
+ desc = "A sad, crushed can of beer.";
+ name = "\improper Weyland-Yutani Lite";
+ pixel_y = 19
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/dorms)
+"uU" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice3";
+ pixel_x = 16;
+ pixel_y = -15
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/dorms)
+"wj" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/prop/almayer/computer/PC{
+ dir = 4
+ },
+/turf/open/floor/almayer/edge{
+ dir = 9
+ },
+/area/golden_arrow/dorms)
+"wz" = (
+/obj/structure/bed{
+ can_buckle = 0
+ },
+/obj/structure/bed{
+ buckling_y = 13;
+ layer = 3.5;
+ pixel_y = 13
+ },
+/obj/item/bedsheet/brown{
+ layer = 3.4
+ },
+/obj/item/bedsheet/brown{
+ pixel_y = 13
+ },
+/turf/open/floor/almayer/edge{
+ dir = 9
+ },
+/area/golden_arrow/dorms)
+"xF" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"Aw" = (
+/obj/structure/bed{
+ can_buckle = 0
+ },
+/obj/structure/bed{
+ buckling_y = 13;
+ layer = 3.5;
+ pixel_y = 13
+ },
+/obj/item/bedsheet/brown{
+ layer = 3.4
+ },
+/obj/item/bedsheet/brown{
+ pixel_y = 13
+ },
+/turf/open/floor/almayer/edge{
+ dir = 6
+ },
+/area/golden_arrow/dorms)
+"AM" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/item/trash/crushed_cup{
+ pixel_y = -10;
+ pixel_x = 6
+ },
+/turf/open/floor/almayer/edge{
+ dir = 4
+ },
+/area/golden_arrow/dorms)
+"Bx" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer/edge{
+ dir = 4
+ },
+/area/golden_arrow/dorms)
+"BN" = (
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice1";
+ pixel_x = 16;
+ pixel_y = -15
+ },
+/obj/effect/decal/strata_decals/grime/grime4,
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/dorms)
+"BV" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice3";
+ pixel_x = 16;
+ pixel_y = -15
+ },
+/obj/effect/decal/cleanable/vomit,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/golden_arrow/dorms)
+"CD" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/dorms)
+"EP" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"Ft" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/food/drinks/cup,
+/obj/item/reagent_container/food/drinks/cup{
+ pixel_x = 10;
+ pixel_y = 1
+ },
+/obj/item/reagent_container/food/drinks/cup{
+ pixel_x = 10;
+ pixel_y = -8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/dorms)
+"Hb" = (
+/obj/structure/largecrate/random/secure,
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge{
+ dir = 10
+ },
+/area/golden_arrow/dorms)
+"Hs" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = -29
+ },
+/obj/structure/machinery/power/apc/almayer{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ layer = 2.36
+ },
+/turf/open/floor/almayer/edge{
+ dir = 10
+ },
+/area/golden_arrow/dorms)
+"Jx" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/disposalpipe/segment,
+/obj/item/reagent_container/food/drinks/cup,
+/obj/item/reagent_container/food/drinks/cup{
+ pixel_x = -11
+ },
+/obj/item/reagent_container/food/drinks/cup{
+ pixel_x = -11;
+ pixel_y = -9
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/dorms)
+"KM" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/dorms)
+"LT" = (
+/obj/structure/barricade/handrail{
+ dir = 4
+ },
+/obj/structure/barricade/handrail{
+ dir = 8
+ },
+/obj/structure/closet/secure_closet,
+/turf/open/floor/almayer/edge{
+ dir = 1
+ },
+/area/golden_arrow/dorms)
+"Ma" = (
+/obj/structure/surface/rack,
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/item/clothing/under/marine/officer/boiler,
+/turf/open/floor/almayer/edge{
+ dir = 1
+ },
+/area/golden_arrow/dorms)
+"Mv" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice3";
+ pixel_x = 16;
+ pixel_y = -15
+ },
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice2";
+ pixel_x = 16;
+ pixel_y = 16
+ },
+/obj/structure/pipes/vents/scrubber{
+ dir = 8
+ },
+/obj/structure/machinery/disposal{
+ density = 0;
+ layer = 3.2;
+ pixel_y = 16
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/almayer/edge{
+ dir = 1
+ },
+/area/golden_arrow/dorms)
+"Nu" = (
+/obj/structure/barricade/handrail{
+ dir = 8
+ },
+/obj/effect/decal/strata_decals/grime/grime3,
+/turf/open/floor/almayer/edge{
+ dir = 8
+ },
+/area/golden_arrow/dorms)
+"Ok" = (
+/obj/structure/bed/chair,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"Or" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/disposal{
+ density = 0;
+ layer = 3.2;
+ pixel_y = 16
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ icon_state = "0-8";
+ layer = 2.36
+ },
+/obj/item/trash/crushed_cup{
+ layer = 3.3;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"Pq" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"QO" = (
+/obj/structure/barricade/handrail{
+ dir = 8
+ },
+/obj/structure/closet/secure_closet,
+/obj/structure/barricade/handrail{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge{
+ dir = 5
+ },
+/area/golden_arrow/dorms)
+"RH" = (
+/obj/structure/bed/chair,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"UB" = (
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/dorms)
+"Vx" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/camera/autoname/golden_arrow{
+ dir = 8
+ },
+/turf/open/floor/almayer/edge{
+ dir = 4
+ },
+/area/golden_arrow/dorms)
+"VL" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/camera/autoname/golden_arrow{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer/edge{
+ dir = 10
+ },
+/area/golden_arrow/dorms)
+"Wm" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/food/drinks/cup{
+ pixel_x = 15;
+ pixel_y = 13;
+ layer = 3.03
+ },
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/dorms)
+"WW" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/item/trash/kepler,
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/dorms)
+"WY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/item/prop/helmetgarb/bullet_pipe,
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/dorms)
+"Xd" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/obj/structure/pipes/vents/pump,
+/obj/item/trash/uscm_mre{
+ pixel_y = 14;
+ pixel_x = 9
+ },
+/turf/open/floor/almayer/edge{
+ dir = 1
+ },
+/area/golden_arrow/dorms)
+"Yb" = (
+/obj/item/trash/popcorn,
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"Yr" = (
+/obj/effect/decal/strata_decals/grime/grime1{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"Za" = (
+/obj/structure/bed{
+ can_buckle = 0
+ },
+/obj/structure/bed{
+ buckling_y = 13;
+ layer = 3.5;
+ pixel_y = 13
+ },
+/obj/item/bedsheet/brown{
+ layer = 3.4
+ },
+/obj/item/bedsheet/brown{
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice1";
+ pixel_x = 16;
+ pixel_y = -15
+ },
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/dorms)
+
+(1,1,1) = {"
+mr
+hx
+pa
+wz
+Hs
+pa
+wj
+Hb
+pa
+"}
+(2,1,1) = {"
+fD
+iA
+he
+qf
+Or
+Nu
+bV
+qR
+VL
+"}
+(3,1,1) = {"
+Xd
+Pq
+UB
+KM
+kG
+WW
+RH
+Ft
+Wm
+"}
+(4,1,1) = {"
+LT
+nO
+CD
+lG
+EP
+WY
+Ok
+Jx
+gJ
+"}
+(5,1,1) = {"
+nw
+dA
+rL
+Yr
+qT
+lK
+lT
+gR
+dp
+"}
+(6,1,1) = {"
+sa
+sP
+uU
+uc
+Za
+pa
+Mv
+BV
+BN
+"}
+(7,1,1) = {"
+so
+eP
+xF
+Yb
+gv
+pa
+Ma
+eP
+cP
+"}
+(8,1,1) = {"
+QO
+Vx
+Bx
+ro
+Aw
+pa
+aU
+AM
+dX
+"}
diff --git a/maps/map_files/golden_arrow/dorms/20.dorks.dmm b/maps/map_files/golden_arrow/dorms/20.dorks.dmm
new file mode 100644
index 0000000000..ee5587305b
--- /dev/null
+++ b/maps/map_files/golden_arrow/dorms/20.dorks.dmm
@@ -0,0 +1,1015 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"cq" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-8"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"cD" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/curtain/red,
+/turf/open/floor/plating,
+/area/golden_arrow/dorms)
+"dc" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"dg" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice3";
+ pixel_x = 16;
+ pixel_y = -15
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/dorms)
+"dh" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_y = 12;
+ pixel_x = 27
+ },
+/turf/closed/wall/almayer,
+/area/golden_arrow/dorms)
+"ds" = (
+/obj/structure/bed{
+ can_buckle = 0
+ },
+/obj/structure/bed{
+ buckling_y = 13;
+ layer = 3.5;
+ pixel_y = 13
+ },
+/obj/item/bedsheet/brown{
+ layer = 3.4
+ },
+/obj/item/bedsheet/brown{
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice1";
+ pixel_x = 16;
+ pixel_y = -15
+ },
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/dorms)
+"dG" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/light/double/blue{
+ light_color = "#dae2ff"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/item/trash/popcorn{
+ layer = 3.03;
+ pixel_y = 3;
+ pixel_x = 8
+ },
+/obj/item/reagent_container/food/snacks/protein_pack{
+ pixel_y = 15
+ },
+/obj/item/reagent_container/food/snacks/protein_pack{
+ pixel_y = 18
+ },
+/obj/item/reagent_container/food/snacks/protein_pack{
+ pixel_y = 10;
+ pixel_x = 4
+ },
+/obj/item/reagent_container/food/drinks/h_chocolate{
+ pixel_y = 3;
+ pixel_x = -8
+ },
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/dorms)
+"ep" = (
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/dorms)
+"eE" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/curtain/red,
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_y = 12
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/dorms)
+"ft" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/surface/table/almayer,
+/obj/structure/prop{
+ desc = "A small computer hooked up into the ship's computer network. The screen is absolutely shattered in what looks to be a fit of rage.";
+ icon = 'icons/obj/structures/machinery/computer.dmi';
+ icon_state = "terminal1b";
+ dir = 4;
+ name = "personal desktop";
+ pixel_y = 3
+ },
+/turf/open/floor/almayer/edge{
+ dir = 9
+ },
+/area/golden_arrow/dorms)
+"fG" = (
+/obj/structure/barricade/handrail{
+ dir = 8
+ },
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/recharger{
+ pixel_y = -14
+ },
+/obj/item/ashtray/plastic{
+ icon_state = "ashtray_full_bl";
+ pixel_x = 9;
+ pixel_y = 6
+ },
+/obj/item/trash/cigbutt{
+ pixel_y = 5;
+ pixel_x = 4
+ },
+/obj/item/trash/cigbutt{
+ pixel_y = 15;
+ pixel_x = -4
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"hf" = (
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/dorms)
+"ho" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/dorms)
+"hD" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/dorms)
+"iL" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"iP" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/bedsheetbin{
+ pixel_y = 6
+ },
+/turf/open/floor/almayer/edge{
+ dir = 6
+ },
+/area/golden_arrow/dorms)
+"jy" = (
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice1";
+ pixel_x = 16;
+ pixel_y = -15
+ },
+/obj/item/trash/eat{
+ pixel_x = 10
+ },
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/dorms)
+"kv" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/golden_arrow/dorms)
+"mf" = (
+/obj/structure/barricade/handrail{
+ dir = 8
+ },
+/obj/structure/closet/secure_closet,
+/obj/structure/barricade/handrail{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge{
+ dir = 5
+ },
+/area/golden_arrow/dorms)
+"mj" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = -29
+ },
+/obj/structure/machinery/power/apc/almayer{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ layer = 2.36
+ },
+/turf/open/floor/almayer/edge{
+ dir = 10
+ },
+/area/golden_arrow/dorms)
+"mm" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/atm{
+ pixel_y = 26
+ },
+/turf/open/floor/almayer/edge{
+ dir = 1
+ },
+/area/golden_arrow/dorms)
+"mu" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/dorms)
+"nD" = (
+/obj/structure/bed{
+ can_buckle = 0
+ },
+/obj/structure/bed{
+ buckling_y = 13;
+ layer = 3.5;
+ pixel_y = 13
+ },
+/obj/item/bedsheet/brown{
+ layer = 3.4
+ },
+/obj/item/bedsheet/brown{
+ pixel_y = 13
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge{
+ dir = 1
+ },
+/area/golden_arrow/dorms)
+"nP" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/barricade/handrail{
+ dir = 8
+ },
+/obj/structure/machinery/computer/cameras/wooden_tv/prop{
+ dir = 4;
+ layer = 3.2;
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/obj/structure/machinery/light/double/blue{
+ dir = 8;
+ light_color = "#dae2ff"
+ },
+/turf/open/floor/almayer/edge{
+ dir = 8
+ },
+/area/golden_arrow/dorms)
+"oc" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"oo" = (
+/obj/structure/surface/table/almayer,
+/obj/item/toy/prize/apc{
+ pixel_x = 6;
+ pixel_y = 19;
+ layer = 3.03
+ },
+/obj/item/prop{
+ icon = 'icons/obj/items/casings.dmi';
+ icon_state = "casing";
+ desc = "Empty and useless now. Or it was, until someone made them a stand in for their characters.";
+ pixel_x = 8;
+ pixel_y = 2;
+ name = "spent casing"
+ },
+/obj/item/prop{
+ icon = 'icons/obj/items/casings.dmi';
+ icon_state = "casing";
+ desc = "Empty and useless now. Or it was, until someone made them a stand in for their characters.";
+ pixel_y = 4;
+ name = "spent casing"
+ },
+/obj/item/prop{
+ icon = 'icons/obj/items/casings.dmi';
+ icon_state = "casing";
+ desc = "Empty and useless now. Or it was, until someone made them a stand in for their characters.";
+ name = "spent casing";
+ pixel_x = -5;
+ pixel_y = -1
+ },
+/obj/item/prop{
+ icon = 'icons/obj/items/casings.dmi';
+ icon_state = "casing";
+ desc = "Empty and useless now. Or it was, until someone made them a stand in for their characters.";
+ name = "spent casing";
+ pixel_x = 1;
+ pixel_y = -5
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/dorms)
+"oM" = (
+/obj/structure/barricade/handrail{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"qe" = (
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice3";
+ pixel_x = 16;
+ pixel_y = -15
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"qJ" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/camera/autoname/golden_arrow{
+ dir = 8
+ },
+/turf/open/floor/almayer/edge{
+ dir = 4
+ },
+/area/golden_arrow/dorms)
+"rZ" = (
+/obj/structure/bed{
+ can_buckle = 0
+ },
+/obj/structure/bed{
+ buckling_y = 13;
+ layer = 3.5;
+ pixel_y = 13
+ },
+/obj/item/bedsheet/brown{
+ layer = 3.4
+ },
+/obj/item/bedsheet/brown{
+ pixel_y = 13
+ },
+/turf/open/floor/almayer/edge{
+ dir = 1
+ },
+/area/golden_arrow/dorms)
+"sO" = (
+/obj/structure/barricade/handrail{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/curtain/red,
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_y = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_y = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_y = 12;
+ pixel_x = 5
+ },
+/turf/open/floor/almayer/edge{
+ dir = 4
+ },
+/area/golden_arrow/dorms)
+"tq" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/obj/structure/pipes/vents/pump,
+/obj/item/trash/uscm_mre{
+ pixel_y = 14;
+ pixel_x = 9
+ },
+/turf/open/floor/almayer/edge{
+ dir = 1
+ },
+/area/golden_arrow/dorms)
+"tz" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"ui" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/structure/curtain/red,
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_y = 12
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/dorms)
+"uW" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/paper/colonial_grunts{
+ pixel_y = 6;
+ pixel_x = -5
+ },
+/obj/item/toy/deck{
+ pixel_y = -1;
+ pixel_x = 9
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"vr" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ layer = 1.9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/dorms)
+"vF" = (
+/turf/closed/wall/almayer,
+/area/golden_arrow/dorms)
+"we" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/disposalpipe/segment,
+/obj/item/clothing/glasses/regular/hipster{
+ pixel_y = 10
+ },
+/obj/item/prop{
+ icon = 'icons/obj/items/casings.dmi';
+ icon_state = "casing";
+ desc = "Empty and useless now. Or it was, until someone made them a stand in for their characters.";
+ pixel_x = 8;
+ pixel_y = 2;
+ name = "spent casing"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/dorms)
+"wo" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge{
+ dir = 4
+ },
+/area/golden_arrow/dorms)
+"xm" = (
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"xM" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"yw" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/vending/walkman{
+ pixel_y = 21;
+ pixel_x = 10;
+ density = 0
+ },
+/obj/item/trash/kepler{
+ pixel_x = 8;
+ pixel_y = 44
+ },
+/obj/item/trash/barcardine,
+/turf/open/floor/almayer/edge{
+ dir = 9
+ },
+/area/golden_arrow/dorms)
+"zg" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"AU" = (
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/dorms)
+"BJ" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"BX" = (
+/obj/structure/machinery/washing_machine,
+/obj/structure/machinery/washing_machine{
+ layer = 3.5;
+ pixel_y = 15
+ },
+/turf/open/floor/almayer/edge{
+ dir = 5
+ },
+/area/golden_arrow/dorms)
+"CR" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/disposal{
+ density = 0;
+ layer = 3.2;
+ pixel_y = 16
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ icon_state = "0-8";
+ layer = 2.36
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"CT" = (
+/obj/structure/barricade/handrail{
+ dir = 8
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/trash/cigbutt{
+ pixel_y = 10;
+ pixel_x = -7
+ },
+/obj/item/trash/eat{
+ pixel_x = 10
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"DC" = (
+/obj/structure/bed{
+ can_buckle = 0
+ },
+/obj/structure/bed{
+ buckling_y = 13;
+ layer = 3.5;
+ pixel_y = 13
+ },
+/obj/item/bedsheet/brown{
+ layer = 3.4
+ },
+/obj/item/bedsheet/brown{
+ pixel_y = 13
+ },
+/turf/open/floor/almayer/edge{
+ dir = 6
+ },
+/area/golden_arrow/dorms)
+"Eb" = (
+/obj/item/prop/magazine/book/starshiptroopers{
+ layer = 4.1;
+ pixel_y = 47
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"Es" = (
+/obj/structure/barricade/handrail{
+ dir = 4
+ },
+/obj/structure/barricade/handrail{
+ dir = 8
+ },
+/obj/structure/closet/secure_closet,
+/turf/open/floor/almayer/edge{
+ dir = 1
+ },
+/area/golden_arrow/dorms)
+"Gi" = (
+/obj/structure/bed{
+ can_buckle = 0
+ },
+/obj/structure/bed{
+ buckling_y = 13;
+ layer = 3.5;
+ pixel_y = 13
+ },
+/obj/item/bedsheet/brown{
+ layer = 3.4
+ },
+/obj/item/bedsheet/brown{
+ pixel_y = 13
+ },
+/turf/open/floor/almayer/edge{
+ dir = 9
+ },
+/area/golden_arrow/dorms)
+"Hv" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/item/trash/crushed_cup{
+ pixel_y = -10;
+ pixel_x = 6
+ },
+/turf/open/floor/almayer/edge{
+ dir = 4
+ },
+/area/golden_arrow/dorms)
+"IO" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"Nt" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice3";
+ pixel_x = 16;
+ pixel_y = -15
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/golden_arrow/dorms)
+"Nu" = (
+/obj/structure/bed{
+ can_buckle = 0
+ },
+/obj/structure/bed{
+ buckling_y = 13;
+ layer = 3.5;
+ pixel_y = 13
+ },
+/obj/item/bedsheet/brown{
+ layer = 3.4
+ },
+/obj/item/bedsheet/brown{
+ pixel_y = 13
+ },
+/turf/open/floor/almayer/edge{
+ dir = 10
+ },
+/area/golden_arrow/dorms)
+"NK" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ layer = 1.9
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
+ name = "\improper Dorms";
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/dorms)
+"NN" = (
+/obj/structure/surface/table/almayer,
+/obj/item/clothing/suit/storage/jacket/marine/service{
+ pixel_x = 11
+ },
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/dorms)
+"OV" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/paper_bin{
+ pixel_x = -1;
+ pixel_y = 9
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"PA" = (
+/turf/closed/wall/almayer/outer,
+/area/golden_arrow/dorms)
+"QV" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/camera/autoname/golden_arrow{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer/edge{
+ dir = 10
+ },
+/area/golden_arrow/dorms)
+"Sh" = (
+/obj/structure/barricade/handrail{
+ dir = 4
+ },
+/obj/structure/barricade/handrail{
+ dir = 8
+ },
+/obj/structure/closet/secure_closet,
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice3";
+ pixel_x = 16;
+ pixel_y = -15
+ },
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice2";
+ pixel_x = 16;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer/edge{
+ dir = 1
+ },
+/area/golden_arrow/dorms)
+"SL" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice3";
+ pixel_x = 16;
+ pixel_y = -15
+ },
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice2";
+ pixel_x = 16;
+ pixel_y = 16
+ },
+/obj/structure/pipes/vents/scrubber{
+ dir = 8
+ },
+/obj/structure/machinery/disposal{
+ density = 0;
+ layer = 3.2;
+ pixel_y = 16
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/almayer/edge{
+ dir = 1
+ },
+/area/golden_arrow/dorms)
+"SM" = (
+/obj/structure/barricade/handrail{
+ dir = 8
+ },
+/obj/structure/curtain/red,
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_y = 12
+ },
+/turf/open/floor/almayer/edge{
+ dir = 8
+ },
+/area/golden_arrow/dorms)
+"To" = (
+/obj/structure/surface/rack,
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/item/clothing/under/marine/officer/boiler,
+/turf/open/floor/almayer/edge{
+ dir = 1
+ },
+/area/golden_arrow/dorms)
+"Wu" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer/edge{
+ dir = 4
+ },
+/area/golden_arrow/dorms)
+"XT" = (
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice3";
+ pixel_x = 16;
+ pixel_y = -15
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/dorms)
+"XU" = (
+/obj/structure/largecrate/random/secure,
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge{
+ dir = 10
+ },
+/area/golden_arrow/dorms)
+"ZE" = (
+/obj/structure/barricade/handrail{
+ dir = 4
+ },
+/obj/structure/barricade/handrail{
+ dir = 8
+ },
+/obj/structure/closet/secure_closet,
+/obj/structure/machinery/light/double/blue{
+ light_color = "#dae2ff"
+ },
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/dorms)
+
+(1,1,1) = {"
+yw
+Nu
+vF
+Gi
+mj
+dh
+ft
+XU
+vF
+"}
+(2,1,1) = {"
+mm
+fG
+nP
+CT
+CR
+SM
+dc
+oc
+QV
+"}
+(3,1,1) = {"
+tq
+BJ
+AU
+ho
+cq
+eE
+uW
+oo
+hf
+"}
+(4,1,1) = {"
+Es
+tz
+hD
+ep
+zg
+ui
+OV
+we
+dG
+"}
+(5,1,1) = {"
+rZ
+Eb
+kv
+xm
+oM
+sO
+xM
+iL
+mu
+"}
+(6,1,1) = {"
+Sh
+qe
+dg
+XT
+ds
+vF
+SL
+Nt
+jy
+"}
+(7,1,1) = {"
+nD
+xm
+IO
+xm
+ZE
+vF
+To
+xm
+NN
+"}
+(8,1,1) = {"
+mf
+qJ
+Wu
+wo
+DC
+vF
+BX
+Hv
+iP
+"}
+(9,1,1) = {"
+vF
+vF
+vr
+NK
+vF
+vF
+cD
+vF
+PA
+"}
diff --git a/maps/map_files/golden_arrow/golden_arrow.dmm b/maps/map_files/golden_arrow/golden_arrow.dmm
index 18f231aad2..ea8d1a9e4a 100644
--- a/maps/map_files/golden_arrow/golden_arrow.dmm
+++ b/maps/map_files/golden_arrow/golden_arrow.dmm
@@ -1,100 +1,118 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"ab" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/secure_closet/squad_sergeant{
- name = "squad one sergeant locker";
- req_access_txt = "32;39";
- req_one_access = list()
+"aaa" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/landinglight/ds1{
+ dir = 8
},
/turf/open/floor/almayer{
icon_state = "plate"
},
+/area/golden_arrow/hangar)
+"aac" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-4-8"
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
/area/golden_arrow/platoonprep)
-"ae" = (
+"aad" = (
+/obj/structure/pipes/vents/pump{
+ pixel_y = -16
+ },
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/supply)
+"aae" = (
/obj/structure/machinery/landinglight/ds1/delaythree,
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"af" = (
-/obj/effect/decal/strata_decals/grime/grime2{
- dir = 8
- },
-/obj/structure/largecrate/random/secure,
-/obj/structure/machinery/light,
-/turf/open/floor/almayer{
- icon_state = "cargo"
+"aag" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning";
+ dir = 1
},
-/area/golden_arrow/hangar)
-"ai" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+/turf/open/floor/almayer,
+/area/golden_arrow/motor_pool)
+"aah" = (
+/obj/docking_port/stationary/trijent_elevator/shipmap_elevator/cargo{
+ id = "garrow_cargo_elevator_upper";
+ name = "Cargo Elevator Upper";
+ elevator_network = "ArrowCargo";
+ airlock_exit = "north";
+ airlock_area = /area/golden_arrow/cargo_shuttle/upper
},
-/obj/structure/machinery/door/airlock/almayer/secure{
- dir = 8;
- name = "\improper Shared Office";
- req_access = list();
- req_one_access_txt = "12;32"
+/turf/open/floor/almayer/empty/golden_arrow,
+/area/golden_arrow/cargo_shuttle/upper)
+"aan" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/cable{
- icon_state = "4-8"
+/obj/structure/cargo_container/wy/mid{
+ opacity = 0
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/obj/structure/sign/poster{
+ desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE.";
+ icon_state = "poster11";
+ name = "YOU ALWAYS KNOW A WORKING JOE.";
+ pixel_x = -22;
+ pixel_y = 3;
+ serial_number = 11
},
-/area/golden_arrow/shared_office)
-"aj" = (
-/obj/structure/machinery/light{
- dir = 1
+/obj/structure/sign/poster{
+ desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that.";
+ icon_state = "poster16";
+ name = "'Miss July' Pinup";
+ serial_number = 16
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/sign/poster{
+ desc = "One of those hot, tanned babes back the beaches of good ol' Earth.";
+ icon_state = "poster12";
+ name = "Beach Babe Pinup";
+ pixel_x = 6;
+ pixel_y = 8;
+ serial_number = 12
},
+/turf/open/floor/almayer/edge/smooth,
/area/golden_arrow/hangar)
-"ak" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/engineering)
-"al" = (
-/obj/structure/machinery/door/airlock/almayer/secure{
- dir = 1;
- name = "\improper Platoon Commander's Office";
- req_access = list();
- req_one_access_txt = "19;12"
- },
+"aao" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/cable{
+/obj/structure/cable/heavyduty{
icon_state = "1-2"
},
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/dorms)
+"aap" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
},
-/area/golden_arrow/platoon_commander_rooms)
-"am" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out"
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
},
-/obj/structure/machinery/light{
- dir = 4
+/turf/open/floor/almayer,
+/area/golden_arrow/motor_pool)
+"aaq" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/kitchen/rollingpin{
+ pixel_y = 4;
+ pixel_x = -6
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/item/tool/kitchen/knife{
+ pixel_x = 9
},
-/area/golden_arrow/hangar)
-"ar" = (
-/obj/structure/machinery/light{
- dir = 1
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
},
-/turf/open/floor/almayer,
/area/golden_arrow/cryo_cells)
-"as" = (
+"aas" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
pixel_y = 1
@@ -103,28 +121,59 @@
icon_state = "cargo_arrow"
},
/area/golden_arrow/hangar)
-"au" = (
-/obj/structure/barricade/handrail{
+"aat" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonarmory)
-"av" = (
-/obj/structure/machinery/light{
+/turf/open/floor/almayer/edge/smooth{
dir = 1
},
-/obj/structure/surface/table/almayer,
-/obj/item/storage/briefcase/inflatable{
- pixel_y = 10
+/area/golden_arrow/briefing)
+"aaw" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/item/storage/briefcase/inflatable{
- pixel_x = 3;
- pixel_y = 5
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/supply)
+"aax" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
-/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"aA" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
+ },
+/area/golden_arrow/cryo_cells)
+"aay" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/camera/autoname/golden_arrow{
+ dir = 4
+ },
+/turf/open/floor/almayer/edge/smooth/endcap_left{
+ dir = 8
+ },
+/area/golden_arrow/cryo_cells)
+"aaz" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/golden_arrow/hangar)
+"aaA" = (
/obj/structure/machinery/camera/autoname/golden_arrow{
dir = 8
},
@@ -134,103 +183,98 @@
icon_state = "dark_sterile"
},
/area/golden_arrow/cryo_cells)
-"aB" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cargo_container/wy/left{
- opacity = 0
+"aaI" = (
+/turf/closed/wall/almayer/outer,
+/area/golden_arrow/medical)
+"aaK" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"aC" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/roller{
- pixel_y = 17
+/area/golden_arrow/motor_pool)
+"aaL" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/item/roller{
- pixel_y = 23
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/obj/item/storage/firstaid/regular{
- pixel_x = -2;
- pixel_y = 1
+/obj/structure/cargo_container/hd/mid{
+ opacity = 0
},
/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+ icon_state = "mono"
},
-/area/golden_arrow/medical)
-"aD" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
+/area/golden_arrow/hangar)
+"aaM" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning";
+ dir = 1
+ },
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 4
+ },
+/area/golden_arrow/motor_pool)
+"aaO" = (
+/obj/structure/machinery/light/small/blue{
+ dir = 8;
+ light_color = "#dae2ff";
+ light_power = 0.5
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/motor_pool)
+"aaQ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning";
dir = 8
},
-/obj/structure/machinery/door/poddoor/almayer/locked{
- dir = 4;
- name = "\improper Second Platoon Ready Bay Blast Door"
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "mono"
},
-/area/golden_arrow/hangar)
-"aE" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/area/golden_arrow/motor_pool)
+"aaR" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
},
-/area/golden_arrow/hangar)
-"aF" = (
-/obj/structure/shuttle/part/dropship1/transparent/nose_center{
- name = "\improper Tripoli"
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
-/turf/open/floor/plating,
+/turf/open/floor/almayer/edge/smooth,
/area/golden_arrow/hangar)
-"aG" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/shuttle/elevator,
-/area/golden_arrow/supply)
-"aH" = (
-/obj/structure/largecrate/random/case/double,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "plate"
+"aaT" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/hangar)
-"aI" = (
-/turf/closed/wall/almayer/outer,
-/area/golden_arrow/medical)
-"aJ" = (
-/obj/structure/bed/chair{
- dir = 8;
- pixel_y = 3
+/obj/structure/dartboard{
+ pixel_y = 41;
+ layer = 3.2
},
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 8
+/obj/structure/bed/chair,
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/hangar)
+"aaU" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/cable{
- icon_state = "2-4"
+/obj/structure/machinery/light/double/blue{
+ light_color = "#dae2ff"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/dorms)
-"aN" = (
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/cryo_cells)
-"aP" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 8
- },
-/obj/structure/cable/heavyduty{
- icon_state = "1-2-4"
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/platoonarmory)
-"aS" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/cable/heavyduty{
- icon_state = "1-2"
+/area/golden_arrow/hangar)
+"aaV" = (
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
},
-/turf/open/floor/almayer,
-/area/golden_arrow/prep_hallway)
-"aW" = (
+/area/golden_arrow/platoonprep)
+"aaW" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/cable/heavyduty{
icon_state = "1-2"
@@ -238,138 +282,68 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer,
/area/golden_arrow/platoonprep)
-"aX" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
- },
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"aY" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
- },
+"aaZ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
},
-/turf/open/floor/almayer,
-/area/golden_arrow/synthcloset)
-"aZ" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 6
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/golden_arrow/hangar)
-"ba" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out"
- },
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"bb" = (
+"abb" = (
/obj/effect/decal/cleanable/blood/oil,
/turf/open/floor/almayer,
/area/golden_arrow/engineering)
-"bc" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 6
- },
-/obj/structure/cable/heavyduty{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- layer = 2.36
- },
-/obj/structure/disposalpipe/junction{
- dir = 2;
- icon_state = "pipe-j2"
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/platoonprep)
-"bd" = (
-/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{
- req_one_access = list()
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"be" = (
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "cargo_arrow"
- },
-/area/golden_arrow/prep_hallway)
-"bg" = (
+"abf" = (
/obj/effect/decal/warning_stripes{
- icon_state = "E";
+ icon_state = "SE-out";
pixel_x = 1
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 4
},
-/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"bj" = (
+"abh" = (
/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+ icon_state = "S"
},
/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- pixel_y = 1
+ icon_state = "N";
+ pixel_y = 2
},
-/obj/structure/machinery/gear{
- id = "supply_elevator_gear"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
+/area/golden_arrow/cryo_cells)
+"abi" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/obj/structure/cable/heavyduty{
icon_state = "1-2"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"bk" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning"
+ },
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/cryo_cells)
+"abk" = (
/turf/closed/wall/almayer,
/area/golden_arrow/platoonarmory)
-"bl" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/poster{
- desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that.";
- icon_state = "poster16";
- layer = 3.3;
- name = "'Miss July' Pinup";
- pixel_y = 29;
- serial_number = 16
+"abo" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/golden_arrow/cryo_cells)
-"bm" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
+/obj/structure/machinery/landinglight/ds1/delaythree{
dir = 8
},
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/almayer,
-/area/golden_arrow/cryo_cells)
-"bn" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- layer = 2.5;
- pixel_x = -1;
- pixel_y = 1
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"bp" = (
+"abp" = (
/obj/structure/prop/invuln/lattice_prop{
icon_state = "lattice3";
pixel_x = 16;
@@ -377,72 +351,83 @@
},
/turf/open/floor/almayer,
/area/golden_arrow/dorms)
-"bq" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/machinery/door/poddoor/railing{
- dir = 4
- },
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"br" = (
-/obj/structure/cable{
- icon_state = "4-8"
+"abs" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
},
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 1
+/obj/structure/machinery/floodlight/landing/floor{
+ color = "#dae2ff";
+ light_color = "#dae2ff"
},
/turf/open/floor/almayer{
- dir = 4;
- icon_state = "cargo_arrow"
+ icon_state = "plate"
},
-/area/golden_arrow/cryo_cells)
-"bt" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+/area/golden_arrow/hangar)
+"abu" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "cargo_arrow"
+/obj/structure/disposalpipe/segment{
+ dir = 8
},
-/area/golden_arrow/hangar)
-"bv" = (
-/obj/structure/sign/safety/bulkhead_door{
- pixel_y = 27
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
-/obj/structure/sign/safety/hazard{
- pixel_x = 14;
- pixel_y = 27
+/turf/open/floor/almayer,
+/area/golden_arrow/motor_pool)
+"abw" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/reagent_dispensers/water_cooler/stacks{
- density = 0;
- layer = 3.6;
- pixel_y = 18
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2-8"
},
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "cargo_arrow"
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ pixel_y = 1
},
+/turf/open/floor/almayer/edge/smooth/corner,
/area/golden_arrow/hangar)
-"bx" = (
+"abx" = (
/turf/closed/wall/almayer,
/area/golden_arrow/dorms)
-"bB" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
+"aby" = (
+/obj/structure/pipes/vents/pump{
dir = 8
},
-/obj/structure/machinery/door/poddoor/almayer{
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 2;
+ id = "garrow_vehicle_elevator_one"
+ },
+/turf/open/floor/almayer{
+ icon_state = "black"
+ },
+/area/golden_arrow/vehicle_shuttle/upper)
+"abz" = (
+/obj/structure/machinery/sleep_console{
dir = 4;
- id = "apc1blastdoor";
- name = "\improper Vehicle Bay One Blast Door"
+ pixel_y = 6
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
+/area/golden_arrow/medical)
+"abA" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/cargo_container/kelland/right{
+ pixel_y = 9;
+ opacity = 0
+ },
+/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"bC" = (
+"abC" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
pixel_y = 1
@@ -452,150 +437,208 @@
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"bE" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W";
- layer = 3.3
+"abD" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/motor_pool)
+"abH" = (
/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+ icon_state = "S";
+ pixel_y = 1
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/oil,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"bF" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S";
- layer = 3.3
+"abJ" = (
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 4
},
-/turf/open/floor/almayer,
-/area/golden_arrow/prep_hallway)
-"bG" = (
-/turf/closed/shuttle/midway{
- icon_state = "30";
- name = "\improper Tripoli"
+/area/golden_arrow/hangar)
+"abK" = (
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 8
},
/area/golden_arrow/hangar)
-"bI" = (
-/obj/effect/decal/cleanable/dirt,
+"abL" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
/obj/structure/cable/heavyduty{
icon_state = "4-8"
},
+/obj/effect/decal/cleanable/blood/oil,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/open/floor/plating/plating_catwalk,
/area/golden_arrow/platoonprep)
-"bN" = (
-/obj/structure/machinery/light{
- dir = 1
+"abM" = (
+/obj/structure/machinery/door/poddoor/almayer{
+ dir = 4;
+ name = "\improper Vehicle Bay One Blast Door";
+ id = "vehiclebay1"
},
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_x = 1;
- pixel_y = 1
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/hangar)
+"abO" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/reagent_dispensers/fueltank{
+ layer = 2.9;
+ icon = 'icons/obj/structures/props/generic_props.dmi';
+ icon_state = "weldtank_old";
+ anchored = 1
},
/turf/open/floor/almayer,
-/area/golden_arrow/prep_hallway)
-"bP" = (
-/obj/structure/surface/table/almayer,
-/obj/item/toy/deck,
-/obj/structure/machinery/light,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"bQ" = (
+/area/golden_arrow/motor_pool)
+"abQ" = (
/obj/effect/decal/cleanable/blood/oil,
/turf/open/floor/almayer{
icon_state = "cargo"
},
/area/golden_arrow/hangar)
-"bR" = (
+"abR" = (
/turf/open/floor/almayer{
allow_construction = 0;
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"bT" = (
+"abS" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/machinery/light/small/blue,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/golden_arrow/motor_pool)
+"abT" = (
/obj/structure/machinery/landinglight/ds1/delaytwo,
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"bX" = (
-/obj/effect/decal/siding{
- icon_state = "siding9"
+"abV" = (
+/turf/open/floor/almayer/uscm{
+ icon_state = "logo_directional1";
+ dir = 9
},
-/turf/open/floor/plating,
/area/golden_arrow/hangar)
-"bZ" = (
-/obj/structure/largecrate/supply/ammo{
- fill_from_loc = 1;
- name = "sentry crate"
- },
-/obj/item/ammo_magazine/sentry{
- layer = 3.01
- },
-/obj/item/defenses/handheld/sentry,
-/obj/structure/largecrate/supply/explosives/grenades/less{
- icon_state = "case";
- layer = 3.1;
- pixel_x = 20;
- pixel_y = 10
- },
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonarmory)
-"cb" = (
+"abW" = (
/obj/effect/decal/warning_stripes{
icon_state = "W";
pixel_x = -1;
pixel_y = 1
},
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/cryo_cells)
-"cc" = (
-/obj/structure/bed/chair,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"cd" = (
-/obj/structure/surface/table/almayer,
-/obj/item/tool/soap{
- pixel_x = -5;
- pixel_y = -5
+"abX" = (
+/obj/effect/decal/siding{
+ icon_state = "siding9"
},
-/obj/item/tool/soap{
- pixel_x = 7;
- pixel_y = 12
+/turf/open/floor/plating,
+/area/golden_arrow/hangar)
+"abY" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
-/obj/item/tool/soap/nanotrasen{
- pixel_x = -7;
- pixel_y = 6
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer,
-/area/golden_arrow/cryo_cells)
-"cf" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "cargo_arrow"
+ },
+/area/golden_arrow/hangar)
+"aca" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ name = "\improper Storage Bay One Blast Door";
+ id = "cargobay1"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/hangar)
+"acb" = (
/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
+ icon_state = "W";
+ pixel_x = -1;
pixel_y = 1
},
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/hangar)
-"cg" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/light,
-/turf/open/floor/almayer,
/area/golden_arrow/cryo_cells)
-"ci" = (
+"ace" = (
+/obj/structure/surface/table/almayer,
+/obj/item/clothing/mask/cigarette/cigar{
+ pixel_x = 9
+ },
+/obj/item/prop/helmetgarb/lucky_feather{
+ pixel_y = 7
+ },
+/obj/item/trash/candle{
+ pixel_y = 14;
+ pixel_x = 15
+ },
+/obj/item/prop/helmetgarb/rosary{
+ pixel_x = -11;
+ desc = "An old rosary, a few beads missing from it's string, yet it still holds together.";
+ name = "damaged rosary"
+ },
+/obj/item/prop{
+ name = "\improper battered M10 pattern ballistic helmet";
+ icon = 'icons/obj/items/clothing/cm_hats.dmi';
+ icon_state = "helmet";
+ desc = "A helmet once belonging to a marine aboard the Golden Arrow. It's new home is sitting right in front of the memorial, a reminder of who has been lost.";
+ pixel_y = 12
+ },
+/obj/item/prop{
+ name = "\improper worn-out headband";
+ icon = 'icons/obj/items/clothing/cm_hats.dmi';
+ icon_state = "headband";
+ desc = "A torn up and worn out old headband. The green looks faded.";
+ pixel_y = 9;
+ pixel_x = -15;
+ layer = 3.01
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/platoonprep)
+"ach" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/motor_pool)
+"aci" = (
/obj/structure/surface/table/almayer,
/obj/structure/largecrate/random/case{
pixel_y = 11
@@ -604,288 +647,202 @@
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"cj" = (
-/obj/structure/machinery/camera/autoname/golden_arrow{
- dir = 8;
- name = "ship-grade camera"
+"ack" = (
+/obj/structure/bed{
+ can_buckle = 0
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoon_commander_rooms)
-"cl" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "cargo_arrow"
+/obj/structure/bed{
+ buckling_y = 13;
+ layer = 3.5;
+ pixel_y = 13
},
-/area/golden_arrow/hangar)
-"cm" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
+/obj/item/bedsheet/brown{
+ layer = 3.4
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"cn" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/machinery/light,
-/obj/item/tool/soap/deluxe,
-/obj/item/tool/soap{
- pixel_x = 3;
- pixel_y = 15
+/obj/item/bedsheet/brown{
+ pixel_y = 13
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/turf/open/floor/almayer/edge{
+ dir = 10
},
-/area/golden_arrow/cryo_cells)
-"co" = (
+/area/golden_arrow/dorms)
+"aco" = (
/obj/effect/decal/cleanable/blood/oil,
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"cp" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 1
- },
-/obj/structure/largecrate/random/case{
- pixel_y = 5
+"acq" = (
+/obj/structure/surface/table/almayer,
+/obj/item/toy/deck,
+/turf/open/floor/almayer{
+ icon_state = "mono"
},
-/obj/structure/largecrate/random/case/double{
- pixel_y = 15
+/area/golden_arrow/hangar)
+"acr" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 8
},
-/obj/structure/largecrate/random/case{
- pixel_y = -5
+/obj/structure/machinery/light/double/blue{
+ dir = 4;
+ light_color = "#dae2ff"
},
-/obj/structure/largecrate/random/mini/small_case{
- layer = 3.1;
- pixel_x = 8;
- pixel_y = 14
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
},
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
+/area/golden_arrow/cryo_cells)
+"acs" = (
+/turf/open/floor/almayer/edge{
+ dir = 4
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/area/golden_arrow/prep_hallway)
+"act" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
-/area/golden_arrow/hangar)
-"cu" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/platoonprep)
+"acv" = (
+/obj/effect/landmark/nightmare{
+ insert_tag = "dorms"
},
+/turf/closed/wall/almayer,
+/area/golden_arrow/dorms)
+"acw" = (
/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 10
+ dir = 8
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
},
/area/golden_arrow/hangar)
-"cx" = (
+"acx" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/cable/heavyduty{
icon_state = "1-2"
},
/turf/open/floor/almayer,
/area/golden_arrow/platoonprep)
-"cy" = (
-/obj/item/trash/cigbutt{
- layer = 3.2;
- pixel_x = 4;
- pixel_y = 10;
- randpixel = 0
+"acz" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
-/obj/item/ashtray/plastic{
- icon_state = "ashtray_full_bl";
- layer = 3.2;
- pixel_x = -2;
- pixel_y = 1
+/turf/open/floor/almayer/edge{
+ dir = 8
},
-/obj/structure/largecrate/supply/weapons/pistols{
- layer = 3.1;
- pixel_y = -7
+/area/golden_arrow/supply)
+"acA" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
},
-/turf/closed/wall/almayer/outer,
-/area/golden_arrow/hangar)
-"cB" = (
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
+ },
+/area/golden_arrow/briefing)
+"acB" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
pixel_y = 1
},
/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"cC" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "plate"
+"acD" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
-/area/golden_arrow/hangar)
-"cE" = (
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"cF" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/door_control/brbutton{
- id = "squadblastdoor";
- name = "hangar blast door control";
- pixel_y = 28;
- req_one_access_txt = "19;12"
+"acH" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S";
+ layer = 3.3
},
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "cargo_arrow"
+/turf/open/floor/almayer/edge/smooth/endcap_left,
+/area/golden_arrow/prep_hallway)
+"acL" = (
+/obj/structure/surface/table/almayer,
+/obj/item/prop/colony/game{
+ pixel_y = 10;
+ pixel_x = 15
},
-/area/golden_arrow/platoonarmory)
-"cG" = (
-/obj/structure/ship_ammo/minirocket,
-/obj/structure/ship_ammo/minirocket{
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/dorms)
+"acO" = (
+/obj/structure/machinery/shower{
+ dir = 4
+ },
+/obj/structure/barricade/handrail{
layer = 3.1;
- pixel_y = 9
+ pixel_y = -1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/cryo_cells)
+"acP" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
},
/turf/open/floor/almayer{
- dir = 10;
- icon_state = "cargo"
+ icon_state = "plate"
},
/area/golden_arrow/hangar)
-"cI" = (
+"acQ" = (
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/golden_arrow/dorms)
+"acR" = (
/obj/effect/decal/warning_stripes{
- icon_state = "W";
- layer = 3.3
+ icon_state = "N";
+ pixel_y = 1
},
-/obj/effect/decal/warning_stripes{
- icon_state = "E"
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
-/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/blood/oil,
/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"cJ" = (
+"acS" = (
+/obj/structure/largecrate/random/case/double,
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
/turf/open/floor/almayer{
- icon_state = "cargo_arrow"
+ icon_state = "plate"
},
-/area/golden_arrow/cryo_cells)
-"cK" = (
-/obj/structure/surface/table/almayer,
-/obj/item/trash/cigbutt/cigarbutt{
- pixel_x = -3;
- pixel_y = 25;
- randpixel = 0
+/area/golden_arrow/hangar)
+"acT" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
},
-/obj/item/ashtray/plastic{
- icon_state = "ashtray_full_bl";
- pixel_x = 9;
- pixel_y = 6
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/obj/item/trash/cigbutt{
- pixel_x = 4;
- pixel_y = 5;
- randpixel = 0
+/area/golden_arrow/hangar)
+"acV" = (
+/obj/effect/landmark/start/bridge,
+/obj/effect/landmark/late_join/alpha,
+/obj/effect/landmark/late_join,
+/turf/open/floor/almayer/edge{
+ dir = 4
},
-/obj/item/prop/helmetgarb/gunoil{
- layer = 3.3;
- pixel_x = 9;
- pixel_y = 23
- },
-/obj/item/storage/fancy/cigar/matchbook{
- pixel_x = -2;
- pixel_y = 8
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/golden_arrow/platoonprep)
-"cM" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer{
- icon_state = "cargo_arrow"
- },
-/area/golden_arrow/cryo_cells)
-"cN" = (
-/obj/structure/prop{
- color = "#b30000";
- icon = 'icons/obj/pipes/power_cond_white.dmi';
- icon_state = "8-9";
- layer = 2.9;
- name = "cable";
- pixel_x = 4;
- pixel_y = -15
- },
-/obj/structure/prop{
- color = "#b30000";
- icon = 'icons/obj/pipes/power_cond_white.dmi';
- icon_state = "1-4";
- name = "cable";
- pixel_x = -9
- },
-/obj/structure/prop{
- color = "#b30000";
- icon = 'icons/obj/pipes/power_cond_white.dmi';
- icon_state = "8-10";
- name = "cable";
- pixel_x = 21
- },
-/turf/open/shuttle/dropship{
- icon_state = "rasputin14"
- },
-/area/golden_arrow/hangar)
-"cO" = (
-/obj/structure/machinery/shower{
- dir = 4
- },
-/obj/structure/barricade/handrail{
- layer = 3.1;
- pixel_y = -1
- },
-/turf/open/floor/plating/plating_catwalk,
/area/golden_arrow/cryo_cells)
-"cQ" = (
-/obj/structure/window/framed/almayer,
-/turf/open/floor/plating,
-/area/golden_arrow/dorms)
-"cR" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
- },
-/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"cT" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
+"acX" = (
+/obj/structure/sign/safety/galley{
+ pixel_y = 28
},
-/area/golden_arrow/hangar)
-"cU" = (
-/obj/item/stack/cable_coil{
- pixel_x = 7;
- pixel_y = 13
+/obj/structure/sign/safety/cryo{
+ name = "hypersleep semiotic";
+ pixel_x = 15;
+ pixel_y = 28
},
-/obj/effect/decal/siding{
- icon_state = "siding8"
+/turf/open/floor/almayer/edge{
+ dir = 9
},
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"cW" = (
-/obj/structure/cargo_container/arious/right,
-/obj/structure/blocker/invisible_wall,
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"cY" = (
-/obj/structure/largecrate/random/case/double,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"cZ" = (
+/area/golden_arrow/prep_hallway)
+"acZ" = (
/obj/effect/decal/warning_stripes{
icon_state = "NE-out";
pixel_x = 1;
@@ -895,95 +852,81 @@
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"da" = (
+"ada" = (
/obj/structure/machinery/firealarm{
dir = 8;
pixel_x = -24
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonarmory)
-"db" = (
-/obj/structure/bed/chair/comfy{
- buckling_y = 2;
- dir = 8;
- pixel_y = 2
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/golden_arrow/cryo_cells)
-"dc" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/surface/table/almayer,
-/obj/structure/barricade/handrail{
- dir = 4
- },
-/obj/item/facepaint/green{
- pixel_x = 2;
- pixel_y = 12
+/turf/open/floor/almayer/edge{
+ dir = 9
},
-/obj/item/facepaint/black{
- pixel_x = -7;
- pixel_y = 7
+/area/golden_arrow/platoonarmory)
+"add" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
},
-/obj/item/facepaint/brown{
- pixel_x = -2;
- pixel_y = 1
+/obj/structure/largecrate/supply/supplies/flares{
+ layer = 3.1
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonprep)
-"de" = (
-/turf/closed/shuttle/midway{
- icon_state = "103";
- name = "\improper Tripoli"
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
/area/golden_arrow/hangar)
-"df" = (
+"adf" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/cable{
icon_state = "2-8"
},
/turf/open/floor/almayer,
/area/golden_arrow/prep_hallway)
-"dh" = (
-/obj/structure/surface/table/almayer,
-/obj/item/prop/almayer/comp_open{
- pixel_x = -12;
- pixel_y = 9
+"adg" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/item/reagent_container/food/drinks/cans/souto/diet{
- pixel_x = 8;
- pixel_y = 11
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
-/obj/item/trash/chips{
- layer = 2.7;
- pixel_y = -9
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
},
-/area/golden_arrow/hangar)
-"di" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+/area/golden_arrow/supply)
+"adj" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 1
},
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/prep_hallway)
+"adk" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/engineering)
-"dm" = (
-/obj/structure/largecrate/supply/floodlights,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/motor_pool)
+"adl" = (
+/turf/open/floor/almayer/edge{
+ dir = 1
+ },
+/area/golden_arrow/platoonarmory)
+"adn" = (
+/obj/effect/decal/strata_decals/grime/grime2{
+ dir = 8
+ },
+/obj/structure/largecrate/random/secure,
/turf/open/floor/almayer{
icon_state = "cargo"
},
/area/golden_arrow/hangar)
-"do" = (
+"ado" = (
/turf/closed/wall/almayer,
/area/golden_arrow/shared_office)
-"dp" = (
+"adp" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
pixel_x = 1
@@ -994,8165 +937,14646 @@
},
/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"ds" = (
-/obj/structure/sign/safety/bulkhead_door{
- pixel_y = 27
- },
-/obj/structure/sign/safety/hazard{
- pixel_x = 14;
- pixel_y = 27
+"adq" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/largecrate/random/case/small,
-/obj/structure/largecrate/random/mini/small_case{
- pixel_y = 11
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "cargo_arrow"
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
},
/area/golden_arrow/hangar)
-"du" = (
-/obj/structure/cable{
- icon_state = "4-8"
+"adr" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
},
-/obj/structure/cable{
- icon_state = "1-4"
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
-/obj/structure/machinery/computer/crew/alt{
- dir = 4;
- pixel_x = -10
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/cryo_cells)
-"dw" = (
-/obj/structure/bed/chair/comfy{
+/turf/open/floor/almayer/edge/smooth{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/golden_arrow/cryo_cells)
-"dz" = (
-/turf/closed/wall/almayer/outer,
/area/golden_arrow/hangar)
-"dA" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
+"adt" = (
+/obj/structure/closet/wardrobe{
+ name = "PT uniform"
+ },
+/obj/item/clothing/under/shorts/blue,
+/obj/item/clothing/under/shorts/red,
+/obj/item/clothing/under/shorts/blue,
+/obj/item/clothing/head/headband/red,
+/obj/item/clothing/under/shorts/red,
+/obj/structure/barricade/handrail{
+ layer = 3.1;
+ pixel_y = -1
},
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "mono"
},
/area/golden_arrow/cryo_cells)
-"dF" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
+"adv" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
-/obj/structure/machinery/light{
- dir = 8
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/vents/pump{
- dir = 4
+/area/golden_arrow/motor_pool)
+"adx" = (
+/obj/structure/platform{
+ dir = 8;
+ layer = 2.7
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/cryo_cells)
-"dM" = (
-/turf/closed/shuttle/midway{
- icon_state = "72";
- name = "\improper Tripoli"
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning";
+ dir = 4
},
-/area/golden_arrow/hangar)
-"dN" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer{
- icon_state = "cargo_arrow"
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
},
-/area/golden_arrow/platoonprep)
-"dO" = (
+/area/golden_arrow/motor_pool)
+"ady" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
-/obj/structure/machinery/door/poddoor/almayer/open{
- dir = 4;
- name = "\improper Storage Bay One Blast Door"
+/obj/structure/machinery/door/poddoor/railing{
+ id = "garrow_vehicle_elevator_two"
},
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "black";
+ dir = 1
},
+/area/golden_arrow/vehicle_shuttle/two/upper)
+"adz" = (
+/turf/closed/wall/almayer/outer,
/area/golden_arrow/hangar)
-"dR" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out";
- pixel_x = -1
+"adA" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
},
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
},
-/obj/structure/target{
- layer = 3.1;
- name = "punching bag";
- pixel_y = 16
- },
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"dS" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 10
+/area/golden_arrow/cryo_cells)
+"adB" = (
+/obj/structure/machinery/light/double/blue{
+ dir = 4;
+ light_color = "#dae2ff"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"dX" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/surface/table/reinforced/almayer_B{
- layer = 2.01;
- pixel_x = 14
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
-/obj/item/ashtray/plastic{
- pixel_x = 10;
- pixel_y = -3
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/platoonprep)
+"adC" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoon_commander_rooms)
-"dY" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/landinglight/ds1/delaythree{
- dir = 1
+/obj/structure/closet/secure_closet/squad_sergeant{
+ req_access_txt = "32;40";
+ req_one_access = list();
+ name = "squad two sergeant locker"
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/hangar)
-"dZ" = (
-/obj/structure/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/open/floor/almayer,
-/area/golden_arrow/cryo_cells)
-"ee" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- layer = 2.5;
- pixel_y = 1
+/area/golden_arrow/platoonprep)
+"adD" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ name = "\improper Hangar Lockdown Blast Door"
},
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
/area/golden_arrow/hangar)
-"eh" = (
-/turf/closed/shuttle/midway{
- icon_state = "75";
- name = "\improper Tripoli"
+"adE" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/hangar)
-"ei" = (
-/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{
- req_one_access = list()
+/obj/structure/pipes/vents/pump{
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"em" = (
-/obj/structure/machinery/door/poddoor/railing{
- dir = 2
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
+ },
+/area/golden_arrow/cryo_cells)
+"adG" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/door/poddoor/almayer{
+ dir = 2;
+ name = "\improper Storage Bay Blast Door"
},
-/area/golden_arrow/engineering)
-"eo" = (
-/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"ep" = (
-/obj/structure/largecrate/random/case/double,
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
- icon_state = "cargo"
+ icon_state = "test_floor4"
},
/area/golden_arrow/hangar)
-"eq" = (
-/obj/structure/prop/almayer/computers/sensor_computer1,
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
+"adH" = (
+/obj/structure/platform{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/motor_pool)
+"adI" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
+/turf/closed/wall/almayer/outer,
/area/golden_arrow/engineering)
-"er" = (
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "cargo_arrow"
+"adJ" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/prep_hallway)
-"es" = (
-/turf/open/floor/almayer/uscm{
- dir = 5;
- icon_state = "logo_directional1"
+/obj/structure/machinery/firealarm{
+ dir = 4;
+ pixel_x = 21
},
-/area/golden_arrow/hangar)
-"et" = (
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
+/turf/open/floor/almayer/edge{
+ dir = 6
},
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+/area/golden_arrow/cryo_cells)
+"adK" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/machinery/light{
- dir = 1
+/turf/open/floor/almayer/edge/smooth/corner,
+/area/golden_arrow/hangar)
+"adL" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo"
},
-/obj/structure/machinery/door_control/brbutton{
- id = "weapons_conny";
- name = "weapons locker shutter control";
- pixel_x = -5;
- pixel_y = 23;
- req_one_access_txt = "19;12"
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/obj/structure/machinery/door_control/brbutton{
- id = "equipment_conny";
- name = "equipment locker shutter control";
- pixel_x = 7;
- pixel_y = 23;
- req_one_access_txt = "19;12"
+/area/golden_arrow/motor_pool)
+"adP" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/platoonarmory)
-"eu" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/landinglight/ds1/delaytwo{
- dir = 8
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"ew" = (
-/obj/item/tool/weldingtool,
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/hangar)
-"ex" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"ey" = (
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "cargo_arrow"
+"adQ" = (
+/obj/structure/machinery/light/small{
+ light_color = "#C02526";
+ color = "#C02526";
+ dir = 8
},
-/area/golden_arrow/hangar)
-"eD" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/largecrate/random/secure,
/turf/open/floor/almayer{
- icon_state = "cargo"
- },
-/area/golden_arrow/hangar)
-"eF" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/bedsheetbin{
- pixel_y = 14
+ icon_state = "mono"
},
-/obj/item/storage/pill_bottle/paracetamol{
- pixel_x = -5
+/area/golden_arrow/motor_pool)
+"adT" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
},
-/area/golden_arrow/cryo_cells)
-"eI" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W";
- pixel_x = -1;
- pixel_y = 1
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 4;
+ id = "garrow_vehicle_elevator_two"
},
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "black";
+ dir = 4
},
-/area/golden_arrow/cryo_cells)
-"eJ" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
+/area/golden_arrow/vehicle_shuttle/two/upper)
+"adU" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 9
+/obj/structure/cargo_container/wy/right{
+ opacity = 0
},
-/turf/open/floor/almayer,
+/turf/open/floor/almayer/edge/smooth,
/area/golden_arrow/hangar)
-"eM" = (
-/obj/structure/surface/table/almayer,
-/obj/item/tool/kitchen/rollingpin{
- pixel_y = 4;
- pixel_x = -6
+"adV" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1;
+ pixel_x = 1
},
-/obj/item/tool/kitchen/knife{
- pixel_x = 9
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 1
+ },
+/area/golden_arrow/briefing)
+"adW" = (
+/turf/open/floor/almayer/edge/smooth/endcap_right{
+ dir = 8
},
/area/golden_arrow/cryo_cells)
-"eN" = (
-/obj/structure/machinery/gear{
- id = "supply_elevator_gear"
+"aea" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ layer = 3.3;
+ pixel_x = -1
},
-/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 6
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 1
+ dir = 8
},
-/turf/open/floor/almayer{
- icon_state = "blackcorner"
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
},
/area/golden_arrow/hangar)
-"eP" = (
-/obj/structure/machinery/light{
- dir = 4
+"aeb" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
+/turf/open/floor/plating/plating_catwalk,
/area/golden_arrow/hangar)
-"eS" = (
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
+"aec" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/hangar)
-"eW" = (
-/turf/closed/wall/almayer,
-/area/golden_arrow/platoon_commander_rooms)
-"eY" = (
-/obj/structure/machinery/door/poddoor/almayer/locked{
- dir = 4;
- name = "\improper Second Platoon Ready Bay Blast Door"
+/obj/structure/machinery/vending/walkman{
+ pixel_y = 21;
+ pixel_x = 10;
+ density = 0
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/obj/item/trash/kepler{
+ pixel_x = 8;
+ pixel_y = 44
},
-/area/golden_arrow/hangar)
-"fa" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+/obj/item/trash/barcardine,
+/turf/open/floor/almayer/edge{
+ dir = 9
},
-/obj/structure/cable{
- icon_state = "4-8"
+/area/golden_arrow/dorms)
+"aed" = (
+/obj/structure/machinery/medical_pod/bodyscanner{
+ pixel_y = 6
},
-/turf/open/floor/almayer{
- icon_state = "mono"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/cryo_cells)
-"fb" = (
-/obj/structure/sign/safety/synth_storage{
- pixel_y = 32
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"fe" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/heavyduty{
- icon_state = "1-2"
+/area/golden_arrow/medical)
+"aef" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/hangar)
-"fg" = (
-/obj/structure/machinery/light{
- dir = 4
+/obj/structure/machinery/light/double/blue{
+ dir = 1;
+ light_color = "#dae2ff"
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/cryo_cells)
-"fh" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W";
- pixel_x = -1;
- pixel_y = 1
+/area/golden_arrow/hangar)
+"aeg" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
},
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/machinery/firealarm{
- dir = 4;
- pixel_x = 21
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/area/golden_arrow/hangar)
+"aej" = (
+/obj/item/trash/cigbutt{
+ pixel_y = 10;
+ pixel_x = 4;
+ layer = 3.2;
+ randpixel = 0
},
-/area/golden_arrow/cryo_cells)
-"fi" = (
-/obj/structure/largecrate/supply/floodlights,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "cargo"
+/obj/item/ashtray/plastic{
+ icon_state = "ashtray_full_bl";
+ pixel_x = -2;
+ pixel_y = 1;
+ layer = 3.2
+ },
+/obj/structure/largecrate/supply/weapons/pistols{
+ layer = 3.1;
+ pixel_y = -7
},
+/turf/closed/wall/almayer/outer,
/area/golden_arrow/hangar)
-"fj" = (
-/obj/item/tool/weldingtool{
- pixel_y = 6
+"aek" = (
+/obj/structure/machinery/power/smes/buildable,
+/obj/structure/machinery/power/smes/buildable{
+ pixel_y = 16;
+ layer = 4.5
},
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
},
-/area/golden_arrow/hangar)
-"fl" = (
-/obj/structure/machinery/vending/coffee{
- pixel_x = 14;
- pixel_y = 13
+/area/golden_arrow/engineering)
+"ael" = (
+/obj/structure/pipes/vents/pump{
+ dir = 4
},
-/obj/structure/machinery/vending/snack/packaged{
- pixel_x = -7;
- pixel_y = 14
+/obj/structure/machinery/light/double/blue{
+ dir = 8;
+ light_color = "#dae2ff"
},
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
/area/golden_arrow/cryo_cells)
-"fp" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+"aen" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
-/obj/structure/cable{
- icon_state = "4-8"
+/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
+/obj/structure/blocker/invisible_wall,
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"aeo" = (
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"aer" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
},
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- layer = 1.9
+/area/golden_arrow/prep_hallway)
+"aev" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/machinery/door/airlock/almayer/secure{
- name = "\improper Platoon Commander's Quarters";
- req_access = list();
- req_one_access_txt = "19;12"
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
+/area/golden_arrow/motor_pool)
+"aey" = (
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ dir = 8;
+ icon_state = "cargo_arrow"
},
-/area/golden_arrow/platoon_commander_rooms)
-"ft" = (
-/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/plating,
/area/golden_arrow/hangar)
-"fw" = (
-/obj/structure/surface/table/almayer,
-/obj/item/device/radio/intercom{
- freerange = 1;
- name = "General Listening Channel";
- pixel_x = -8;
+"aez" = (
+/obj/effect/decal/strata_decals/grime/grime2,
+/obj/structure/machinery/firealarm{
pixel_y = 28
},
-/obj/structure/machinery/computer/ares_console{
- pixel_y = 2
- },
/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"aeA" = (
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/prep_hallway)
+"aeC" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2";
+ pixel_x = 2
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 6
+ },
/area/golden_arrow/platoon_commander_rooms)
-"fx" = (
-/obj/structure/machinery/door/poddoor/railing,
-/obj/effect/decal/strata_decals/grime/grime1{
- dir = 1
+"aeE" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/engineering)
-"fE" = (
-/obj/structure/largecrate/supply/medicine/medkits{
- pixel_x = -4;
- pixel_y = 9
+/area/golden_arrow/hangar)
+"aeF" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/bedsheetbin{
+ pixel_y = 14
},
-/obj/structure/largecrate/supply/medicine/medkits{
- layer = 3.1;
- pixel_x = 15;
- pixel_y = 24
+/obj/item/storage/pill_bottle/paracetamol{
+ pixel_x = -5
},
-/obj/structure/largecrate/random/mini/med{
- pixel_x = -6;
- pixel_y = 21
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
},
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
+/area/golden_arrow/cryo_cells)
+"aeG" = (
+/obj/structure/surface/rack{
+ pixel_y = 14;
+ pixel_x = 4
+ },
+/obj/structure/reagent_dispensers/water_cooler/stacks{
+ density = 0;
+ pixel_x = -10;
+ pixel_y = 6
+ },
+/obj/item/reagent_container/food/condiment/peppermill{
+ pixel_y = 26;
pixel_x = 1
},
+/obj/item/reagent_container/food/condiment/saltshaker{
+ pixel_y = 26;
+ pixel_x = -3
+ },
+/obj/item/storage/box/drinkingglasses{
+ pixel_x = 10;
+ pixel_y = 28
+ },
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "dark_sterile"
},
-/area/golden_arrow/hangar)
-"fF" = (
-/obj/item/device/flashlight/lamp/tripod/grey,
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"fH" = (
-/obj/structure/shuttle/part/dropship2/transparent/engine_right_cap{
- name = "\improper Tripoli"
+/area/golden_arrow/cryo_cells)
+"aeH" = (
+/obj/structure/machinery/faxmachine/uscm/command/capt,
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/light/small/blue{
+ dir = 8;
+ light_color = "#dae2ff";
+ light_power = 0.25
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"fI" = (
-/obj/structure/barricade/metal{
- dir = 8
+/turf/open/floor/almayer/edge/smooth{
+ dir = 10
},
-/obj/structure/barricade/metal{
- dir = 4
+/area/golden_arrow/platoon_commander_rooms)
+"aeK" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
-/obj/structure/barricade/metal{
- dir = 8;
- pixel_y = 8
+/turf/open/floor/almayer,
+/area/golden_arrow/motor_pool)
+"aeL" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/barricade/metal{
- dir = 4;
- pixel_y = 8
+/obj/structure/machinery/atm{
+ pixel_y = 26
},
-/obj/structure/machinery/shower{
- pixel_y = 16
+/turf/open/floor/almayer/edge{
+ dir = 1
},
-/obj/structure/curtain{
- pixel_y = -10
+/area/golden_arrow/dorms)
+"aeM" = (
+/obj/structure/barricade/handrail{
+ dir = 8
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/cryo_cells)
-"fK" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/recharger{
+ pixel_y = -14
+ },
+/obj/item/ashtray/plastic{
+ icon_state = "ashtray_full_bl";
+ pixel_x = 9;
+ pixel_y = 6
+ },
+/obj/item/trash/cigbutt{
+ pixel_y = 5;
+ pixel_x = 4
+ },
+/obj/item/trash/cigbutt{
+ pixel_y = 15;
+ pixel_x = -4
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"aeO" = (
/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 10
+ dir = 8
},
-/obj/structure/cable{
- icon_state = "2-8"
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/supply)
+"aeQ" = (
+/obj/structure/bed/bedroll{
+ pixel_y = 7;
+ pixel_x = 3;
+ layer = 3.1;
+ dir = 4
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/platoon_commander_rooms)
-"fM" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "cargo_arrow"
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo"
},
+/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"fN" = (
+"aeR" = (
+/obj/structure/largecrate/supply/medicine/medkits{
+ pixel_y = 24;
+ pixel_x = 8;
+ layer = 3.1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
/turf/open/floor/almayer{
- dir = 4;
+ dir = 1;
icon_state = "cargo_arrow"
},
/area/golden_arrow/hangar)
-"fP" = (
-/obj/structure/ship_ammo/rocket/napalm,
+"aeT" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
/turf/open/floor/almayer{
- icon_state = "cargo"
+ icon_state = "plate"
},
-/area/golden_arrow/hangar)
-"fS" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/camera/autoname/golden_arrow{
- dir = 4
+/area/golden_arrow/motor_pool)
+"aeU" = (
+/obj/effect/decal/strata_decals/grime/grime1{
+ dir = 8
},
/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+ icon_state = "plate"
},
-/area/golden_arrow/medical)
-"fV" = (
-/obj/structure/bed/chair{
- dir = 8
+/area/golden_arrow/hangar)
+"aeV" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
},
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"fX" = (
+/area/golden_arrow/motor_pool)
+"aeW" = (
+/turf/closed/wall/almayer,
+/area/golden_arrow/platoon_commander_rooms)
+"aeX" = (
/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+ icon_state = "SW-out";
+ pixel_x = -1
},
-/turf/open/floor/almayer{
- icon_state = "dark_sterile"
- },
-/area/golden_arrow/medical)
-"fY" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/door/poddoor/railing{
- dir = 2
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/item/tool/warning_cone{
- pixel_x = -15;
- pixel_y = 16
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"fZ" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_x = 1;
- pixel_y = 1
+"aeZ" = (
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
+ },
+/area/golden_arrow/motor_pool)
+"afc" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "2-8"
},
-/turf/closed/wall/almayer,
-/area/golden_arrow/platoonarmory)
-"ga" = (
-/obj/structure/window/framed/almayer,
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonarmory)
-"gb" = (
-/obj/structure/machinery/telecomms/relay/preset/tower,
/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"gg" = (
-/obj/structure/surface/table/almayer,
+/area/golden_arrow/platoon_commander_rooms)
+"afd" = (
+/obj/structure/barricade/handrail,
/obj/structure/barricade/handrail{
dir = 8
},
-/obj/structure/machinery/computer/cameras/wooden_tv/prop{
- dir = 4;
- layer = 3.2;
- pixel_x = -3;
- pixel_y = 6
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/golden_arrow/motor_pool)
+"aff" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/machinery/light{
+/turf/open/floor/almayer/edge/smooth{
dir = 8
},
-/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"gi" = (
+/area/golden_arrow/supply)
+"afh" = (
/obj/effect/decal/warning_stripes{
icon_state = "W";
- layer = 3.3;
- pixel_x = -1
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+ pixel_x = -1;
+ pixel_y = 1
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"gk" = (
-/obj/structure/surface/table/almayer,
-/obj/item/clothing/suit/storage/jacket/marine/service{
- pixel_x = 11
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/firealarm{
+ dir = 4;
+ pixel_x = 21
},
-/obj/item/prop/magazine/dirty/torn{
- pixel_x = -6;
- pixel_y = 6
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
+/area/golden_arrow/cryo_cells)
+"afk" = (
+/obj/structure/gun_rack/m41/unloaded,
/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"gl" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 4
+/area/golden_arrow/platoonarmory)
+"afl" = (
+/obj/structure/machinery/vending/coffee{
+ pixel_x = 14;
+ pixel_y = 13
},
-/obj/structure/machinery/door/poddoor/railing{
- dir = 4;
- id = "apcbayrailing1"
+/obj/structure/machinery/vending/snack/packaged{
+ pixel_x = -7;
+ pixel_y = 14
},
/turf/open/floor/almayer{
- dir = 4;
- icon_state = "black"
- },
-/area/golden_arrow/hangar)
-"gm" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/light{
- dir = 1
+ icon_state = "dark_sterile"
},
-/turf/open/floor/almayer,
/area/golden_arrow/cryo_cells)
-"gn" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/closed/wall/almayer,
-/area/golden_arrow/platoonarmory)
-"gp" = (
-/obj/structure/bed/chair/comfy{
- dir = 1
+"afm" = (
+/obj/structure/bed{
+ can_buckle = 0
},
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/structure/bed{
+ buckling_y = 13;
+ layer = 3.5;
+ pixel_y = 13
},
-/turf/open/floor/almayer,
-/area/golden_arrow/cryo_cells)
-"gq" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out"
+/obj/item/bedsheet/brown{
+ layer = 3.4
},
-/obj/effect/decal/strata_decals/grime/grime2{
+/obj/item/bedsheet/brown{
+ pixel_y = 13
+ },
+/turf/open/floor/almayer/edge{
+ dir = 6
+ },
+/area/golden_arrow/dorms)
+"afn" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice3";
+ pixel_x = 16;
+ pixel_y = -15
},
-/area/golden_arrow/hangar)
-"gr" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/golden_arrow/synthcloset)
-"gs" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/dorms)
+"afo" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
+/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/cable/heavyduty{
icon_state = "1-2"
},
/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"gt" = (
+/area/golden_arrow/motor_pool)
+"afq" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
-/turf/closed/wall/almayer,
-/area/golden_arrow/engineering)
-"gu" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/siding{
- icon_state = "siding2"
+/obj/structure/machinery/light/small/blue{
+ dir = 1
},
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"gw" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
},
-/obj/effect/decal/strata_decals/grime/grime3,
-/obj/structure/largecrate/supply/ammo{
- fill_from_loc = 1;
- name = "materials crate"
+/area/golden_arrow/supply)
+"afr" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/item/stack/sheet/metal/large_stack,
-/obj/item/stack/sheet/plasteel{
- amount = 40;
- pixel_x = 7;
- pixel_y = 6
+/obj/structure/closet/secure_closet/squad_sergeant{
+ req_access_txt = "32;39";
+ req_one_access = list();
+ name = "squad one sergeant locker"
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/hangar)
-"gx" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
- },
-/obj/effect/decal/strata_decals/grime/grime2,
-/obj/structure/machinery/firealarm{
- pixel_y = 28
+/area/golden_arrow/platoonprep)
+"afs" = (
+/obj/structure/largecrate/supply/medicine/medkits{
+ pixel_y = 9;
+ pixel_x = -4
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"gz" = (
-/obj/structure/machinery/sleep_console{
- dir = 4;
- pixel_y = 6
+/obj/structure/largecrate/supply/medicine/medkits{
+ pixel_y = 24;
+ pixel_x = 15;
+ layer = 3.1
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/obj/structure/largecrate/random/mini/med{
+ pixel_y = 21;
+ pixel_x = -6
},
-/area/golden_arrow/medical)
-"gA" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
pixel_x = 1
},
-/obj/structure/cable/heavyduty{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"gB" = (
+"afu" = (
/obj/effect/decal/warning_stripes{
- icon_state = "SE-out"
+ icon_state = "W";
+ layer = 3.3
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"gC" = (
+"afv" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer/edge/smooth/endcap_right{
+ dir = 1
+ },
+/area/golden_arrow/briefing)
+"afw" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_x = -8;
+ pixel_y = 28
+ },
+/obj/structure/machinery/computer/ares_console{
pixel_y = 2
},
/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"gF" = (
-/obj/structure/pipes/vents/pump{
- dir = 4
- },
-/obj/structure/machinery/light{
- dir = 8
+/area/golden_arrow/platoon_commander_rooms)
+"afx" = (
+/obj/structure/machinery/door/poddoor/railing,
+/obj/effect/decal/strata_decals/grime/grime1{
+ dir = 1
},
/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+ icon_state = "plate"
+ },
+/area/golden_arrow/engineering)
+"afy" = (
+/obj/structure/machinery/light/double/blue{
+ dir = 1;
+ light_color = "#dae2ff"
},
+/turf/open/floor/almayer/edge/smooth,
/area/golden_arrow/cryo_cells)
-"gJ" = (
-/obj/structure/pipes/vents/scrubber{
+"afz" = (
+/turf/open/floor/almayer,
+/area/golden_arrow/supply)
+"afA" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
-/obj/structure/machinery/door/poddoor/railing{
- id = "apcbayrailing1"
+/obj/structure/cable/heavyduty{
+ icon_state = "2-8"
},
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "black"
+/obj/structure/cable/heavyduty{
+ icon_state = "2-4"
},
+/turf/open/floor/plating/plating_catwalk,
/area/golden_arrow/hangar)
-"gK" = (
+"afB" = (
/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+ icon_state = "N";
+ pixel_y = 1
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/safety/two{
- pixel_x = 14;
- pixel_y = -26
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/sign/safety/ammunition{
- pixel_y = -26
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonarmory)
-"gL" = (
-/obj/structure/shuttle/part/dropship1/nose_front_left{
- name = "\improper Tripoli"
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
},
-/turf/open/floor/plating,
/area/golden_arrow/hangar)
-"gQ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/door/poddoor/shutters/almayer{
- id = "weapons_conny";
- name = "\improper Squad One Weapons Locker";
- pixel_y = -4
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/golden_arrow/platoonarmory)
-"gR" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 9
- },
-/obj/structure/cable/heavyduty{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/prep_hallway)
-"gU" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 8
- },
+"afC" = (
/obj/structure/cable{
- icon_state = "1-2"
+ icon_state = "4-8"
},
-/obj/item/trash/plate{
- pixel_x = -4;
- pixel_y = 4
+/obj/structure/machinery/prop/almayer/CICmap{
+ density = 0;
+ icon_state = "shuttle";
+ layer = 2.97;
+ name = "Tactical Map Display";
+ pixel_y = 21
+ },
+/obj/structure/noticeboard{
+ pixel_y = 30;
+ pixel_x = -21
},
/turf/open/floor/almayer,
-/area/golden_arrow/cryo_cells)
-"gW" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/pipes/standard/simple/hidden/supply{
+/area/golden_arrow/briefing)
+"afD" = (
+/obj/structure/machinery/light/double/blue,
+/turf/open/floor/almayer/edge/smooth/corner{
dir = 8
},
-/obj/item/storage/fancy/cigarettes/lucky_strikes{
- pixel_x = -7;
- pixel_y = 9
+/area/golden_arrow/motor_pool)
+"afG" = (
+/obj/structure/bed/chair{
+ dir = 8
},
-/obj/item/prop/magazine/dirty{
- desc = "A copy of Playboy magazine. On the cover is photo of guitarist Sadie Summers, with the headline 'Sadie Summers tells ALL'. The article itself focuses on Sadie's many carnal exploits while on tour as well as her very public brawl at an LA nightclub that occured two years prior to the date of this issue. Flipping through the magazine you see article titles such as 'Jungle Mercenary: Life as an Ex-UPP commando', 'The whys and hows of choosing synthetic girls'.";
- icon_state = "poster3";
- name = "Playboy Magazine: Issue March 2182";
- pixel_x = 3;
- pixel_y = 7
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer,
-/area/golden_arrow/cryo_cells)
-"gZ" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 1
+/area/golden_arrow/platoon_commander_rooms)
+"afI" = (
+/obj/structure/barricade/metal{
+ dir = 8
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/hangar)
-"hb" = (
-/obj/structure/machinery/landinglight/ds1{
+/obj/structure/barricade/metal{
dir = 4
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/barricade/metal{
+ dir = 8;
+ pixel_y = 8
},
-/area/golden_arrow/hangar)
-"hc" = (
-/obj/structure/machinery/landinglight/ds1{
- dir = 1
+/obj/structure/barricade/metal{
+ dir = 4;
+ pixel_y = 8
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/machinery/shower{
+ pixel_y = 16
},
-/area/golden_arrow/hangar)
-"hd" = (
-/obj/structure/shuttle/part/dropship1/lower_right_wall{
- name = "\improper Tripoli"
+/obj/structure/curtain{
+ pixel_y = -10
},
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"he" = (
-/obj/structure/largecrate/random/secure,
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/cryo_cells)
+"afJ" = (
/obj/structure/cable{
icon_state = "4-8"
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
},
/area/golden_arrow/hangar)
-"hf" = (
-/turf/closed/shuttle/midway/transparent{
- icon_state = "34";
- name = "\improper Tripoli"
+"afL" = (
+/obj/structure/bed{
+ can_buckle = 0
},
-/area/golden_arrow/hangar)
-"hg" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+/obj/structure/bed{
+ buckling_y = 13;
+ layer = 3.5;
+ pixel_y = 13
},
-/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/item/bedsheet/brown{
+ layer = 3.4
+ },
+/obj/item/bedsheet/brown{
+ pixel_y = 13
+ },
+/turf/open/floor/almayer/edge{
+ dir = 9
+ },
+/area/golden_arrow/dorms)
+"afN" = (
/turf/open/floor/almayer{
+ dir = 4;
icon_state = "cargo_arrow"
},
/area/golden_arrow/hangar)
-"hl" = (
-/turf/closed/wall/almayer/outer,
-/area/golden_arrow/supply)
-"hn" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/disposal{
- density = 0;
- layer = 3.2;
- pixel_y = 16
- },
-/obj/structure/cable{
- icon_state = "4-8"
+"afO" = (
+/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{
+ req_one_access_txt = "8;12;39;40";
+ req_one_access = list()
},
/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"hq" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
+/area/golden_arrow/platoonprep)
+"afP" = (
+/obj/structure/ship_ammo/rocket/napalm{
+ pixel_y = 10
},
-/obj/structure/pipes/vents/pump{
- dir = 4
+/obj/structure/ship_ammo/rocket/napalm,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/hangar)
+"afQ" = (
+/obj/structure/machinery/light/double/blue{
+ dir = 1;
+ light_color = "#dae2ff"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
/turf/open/floor/almayer,
-/area/golden_arrow/cryo_cells)
-"hs" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_x = 1;
- pixel_y = 1
+/area/golden_arrow/hangar)
+"afR" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-4-8"
},
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/prep_hallway)
+"afT" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/golden_arrow/hangar)
-"hu" = (
-/obj/structure/shuttle/part/dropship1/right_outer_wing_connector{
- name = "\improper Tripoli"
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
},
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"hv" = (
-/obj/item/paper{
- icon_state = "paper_words";
- info = "OUT OF ORDER - When I find the dumbass that thought it was a good idea to drive over the elevator with the APC they're gonna get their ass beat.";
- layer = 3.01;
- name = "OUT OF ORDER";
- pixel_x = 5;
- pixel_y = -3
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning";
+ dir = 8
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/hangar)
-"hx" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"hy" = (
+/turf/open/floor/almayer/edge{
+ dir = 9
+ },
+/area/golden_arrow/prep_hallway)
+"afU" = (
/obj/structure/cable/heavyduty{
icon_state = "4-8"
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/effect/decal/warning_stripes{
+ icon_state = "S";
+ pixel_y = 1
},
+/turf/open/floor/almayer/edge/smooth,
/area/golden_arrow/hangar)
-"hC" = (
+"afW" = (
/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
+ icon_state = "E";
pixel_x = 1
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"hD" = (
-/turf/closed/shuttle/midway/transparent{
- icon_state = "39";
- name = "\improper Tripoli"
- },
-/area/golden_arrow/hangar)
-"hE" = (
-/obj/structure/shuttle/part/dropship1/transparent/upper_right_wing{
- name = "\improper Tripoli"
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 8
},
-/turf/open/floor/plating,
/area/golden_arrow/hangar)
-"hG" = (
-/obj/structure/sign/banners/united_americas_flag{
- pixel_y = 30
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonprep)
-"hJ" = (
+"afX" = (
/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+ icon_state = "E";
+ pixel_x = 1
},
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
/area/golden_arrow/medical)
-"hL" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/almayer,
-/area/golden_arrow/cryo_cells)
-"hM" = (
-/obj/effect/landmark/start/bridge,
-/obj/effect/landmark/late_join/alpha,
-/obj/effect/landmark/late_join,
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "cargo_arrow"
- },
-/area/golden_arrow/cryo_cells)
-"hN" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/shuttle/elevator/grating,
-/area/golden_arrow/supply)
-"hO" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
- },
-/obj/structure/machinery/door/poddoor/almayer{
- dir = 4;
- id = "bay1door";
- name = "\improper Weapons Bay One Blast Door"
+"afZ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/turf/closed/wall/almayer,
+/area/golden_arrow/platoonarmory)
+"aga" = (
+/obj/item/ammo_box/magazine/m4a3{
+ pixel_y = 11;
+ pixel_x = -7
},
-/area/golden_arrow/hangar)
-"hP" = (
-/obj/structure/machinery/body_scanconsole{
- pixel_y = 6
+/obj/item/ammo_box/magazine/vp70{
+ pixel_y = 3
},
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/surface/table/reinforced/almayer_B,
/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/golden_arrow/medical)
-"hQ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"hS" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+ icon_state = "mono"
},
+/area/golden_arrow/platoonarmory)
+"agb" = (
+/obj/structure/machinery/telecomms/relay/preset/tower,
/turf/open/floor/almayer,
-/area/golden_arrow/cryo_cells)
-"hU" = (
+/area/golden_arrow/engineering)
+"agc" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
pixel_x = 1
},
-/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/obj/structure/machinery/gear{
+ id = "supply_elevator_gear"
+ },
/obj/structure/cable/heavyduty{
icon_state = "1-2"
},
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/almayer/edge/smooth/corner,
/area/golden_arrow/hangar)
-"hW" = (
-/obj/effect/decal/strata_decals/grime/grime1{
- dir = 8
+"agd" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/machinery/light{
- dir = 4
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ dir = 2;
+ name = "\improper Hangar Lockdown Blast Door";
+ id = "hangarlockdownnorth"
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
+/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
/area/golden_arrow/hangar)
-"hX" = (
-/obj/structure/shuttle/part/dropship1/transparent/left_outer_bottom_wing{
- name = "\improper Tripoli"
+"age" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ layer = 1.9
},
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"ie" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- layer = 2.5;
- pixel_y = 1
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ name = "Maintenance Bay Blast Door";
+ closed_layer = 3.3;
+ layer = 3.3;
+ open_layer = 3.3
},
-/obj/structure/machinery/light{
- dir = 1
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"agf" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/bedsheetbin{
+ pixel_y = 6
},
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+/turf/open/floor/almayer/edge{
+ dir = 6
},
-/obj/structure/cable{
+/area/golden_arrow/dorms)
+"agh" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/heavyduty{
icon_state = "4-8"
},
-/obj/structure/sign/safety/bathunisex{
- pixel_y = 28
- },
-/obj/structure/sign/safety/water{
- pixel_x = 15;
- pixel_y = 28
- },
/turf/open/floor/almayer,
/area/golden_arrow/cryo_cells)
-"if" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/disposal{
- density = 0;
- layer = 3.2;
- pixel_y = 16
+"agj" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/barricade/handrail{
+ dir = 4
},
+/obj/structure/barricade/handrail,
/turf/open/floor/almayer,
-/area/golden_arrow/prep_hallway)
-"ik" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
+/area/golden_arrow/motor_pool)
+"ago" = (
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 1
},
+/area/golden_arrow/supply)
+"agq" = (
/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 2
+ icon_state = "SE-out"
},
-/obj/structure/machinery/light{
+/obj/effect/decal/strata_decals/grime/grime2{
dir = 8
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/cryo_cells)
-"il" = (
-/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
- name = "\improper Prep Lockers"
- },
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/area/golden_arrow/hangar)
+"agv" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
},
-/area/golden_arrow/platoonprep)
-"im" = (
-/obj/item/reagent_container/food/drinks/cans/beer{
- layer = 4.2;
- pixel_x = -11;
- pixel_y = 8
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
},
-/turf/closed/wall/almayer/outer,
+/turf/open/floor/plating/plating_catwalk,
/area/golden_arrow/hangar)
-"in" = (
-/obj/structure/surface/table/almayer,
-/obj/item/tool/screwdriver{
- pixel_x = -8;
- pixel_y = 17
- },
-/obj/item/reagent_container/food/drinks/coffee/marine{
- pixel_y = 12
+"agy" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
-/obj/item/reagent_container/food/drinks/coffee/marine{
- pixel_x = -6;
- pixel_y = 4
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
},
-/obj/item/reagent_container/food/drinks/coffee/marine{
- pixel_x = 5
+/area/golden_arrow/hangar)
+"agB" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"io" = (
-/turf/open/floor/almayer/uscm{
- dir = 8;
- icon_state = "logo_directional1"
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
/area/golden_arrow/hangar)
-"ip" = (
-/obj/structure/surface/table/almayer,
-/obj/item/prop/tableflag{
- pixel_x = -9;
+"agC" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
pixel_y = 2
},
-/obj/item/folder/black{
- icon_state = "folder_black_white";
- pixel_x = 2;
- pixel_y = 14
- },
-/obj/item/reagent_container/food/drinks/cans/souto/lime{
- pixel_x = 5;
- pixel_y = 3
- },
/turf/open/floor/almayer,
-/area/golden_arrow/shared_office)
-"iq" = (
-/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
- name = "\improper Prep Lockers"
- },
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/golden_arrow/platoonprep)
-"ir" = (
-/obj/structure/machinery/landinglight/ds1/delaytwo{
- dir = 8
+/area/golden_arrow/hangar)
+"agD" = (
+/obj/structure/machinery/light/small/blue{
+ dir = 4;
+ light_color = "#dae2ff";
+ light_power = 0.5
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/hangar)
-"iw" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out";
- pixel_x = -1
+/area/golden_arrow/supply)
+"agE" = (
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"iA" = (
-/obj/structure/extinguisher_cabinet/lifeboat{
- pixel_x = 12
+/area/golden_arrow/platoonprep)
+"agG" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/closed/shuttle/midway/transparent{
- icon_state = "78";
- name = "\improper Tripoli"
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
-/area/golden_arrow/hangar)
-"iC" = (
/obj/structure/cable/heavyduty{
icon_state = "4-8"
},
-/obj/structure/holohoop{
- dir = 8;
- id = "basketball";
- side = "right"
+/turf/open/floor/almayer/edge/smooth/endcap_right{
+ dir = 8
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/hangar)
-"iE" = (
-/obj/structure/prop/invuln{
- desc = "big pile energy.";
- icon = 'icons/obj/structures/props/ice_colony/barrel_yard.dmi';
- icon_state = "pile_0";
- name = "barrel pile";
- pixel_y = -16
+/area/golden_arrow/cryo_cells)
+"agH" = (
+/obj/structure/machinery/light/double/blue{
+ dir = 4;
+ light_color = "#dae2ff"
},
-/obj/structure/blocker/invisible_wall,
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"iF" = (
-/obj/structure/largecrate/supply/motiondetectors,
-/obj/structure/largecrate/supply/explosives/grenades/less{
- icon_state = "case";
- pixel_y = 10
+/turf/open/floor/almayer/edge{
+ dir = 4
},
-/obj/item/ammo_box/magazine/mk1{
- layer = 3.1;
- pixel_x = -2;
- pixel_y = 14
+/area/golden_arrow/cryo_cells)
+"agI" = (
+/obj/structure/barricade/handrail{
+ dir = 4
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonarmory)
-"iI" = (
-/obj/structure/surface/table/almayer,
-/obj/item/trash/plate{
- pixel_x = 7;
- pixel_y = 8
+/obj/structure/barricade/handrail{
+ dir = 8
},
-/obj/item/reagent_container/food/condiment/saltshaker{
- pixel_x = -4;
- pixel_y = 13
+/obj/structure/closet/secure_closet,
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/item/reagent_container/food/snacks/protein_pack{
- pixel_x = 3;
- pixel_y = 9
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice3";
+ pixel_x = 16;
+ pixel_y = -15
},
-/turf/open/floor/almayer,
-/area/golden_arrow/cryo_cells)
-"iJ" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "cargo_arrow"
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice2";
+ pixel_x = 16;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer/edge{
+ dir = 1
+ },
+/area/golden_arrow/dorms)
+"agM" = (
+/obj/structure/machinery/light/double/blue{
+ light_color = "#dae2ff"
},
-/area/golden_arrow/platoonprep)
-"iQ" = (
-/obj/structure/pipes/vents/scrubber,
/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+ icon_state = "test_floor4"
},
-/area/golden_arrow/medical)
-"iR" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+/area/golden_arrow/motor_pool)
+"agN" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
},
/turf/open/floor/almayer{
dir = 8;
icon_state = "cargo_arrow"
},
-/area/golden_arrow/engineering)
-"iS" = (
-/obj/structure/machinery/gear{
- id = "supply_elevator_gear"
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 5
- },
+/area/golden_arrow/hangar)
+"agO" = (
/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_x = 1;
- pixel_y = 1
+ icon_state = "W"
},
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "blackcorner"
+/obj/effect/decal/cleanable/blood/oil,
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
},
/area/golden_arrow/hangar)
-"iW" = (
-/obj/structure/window/framed/almayer,
-/obj/structure/curtain/red,
-/turf/open/floor/plating,
-/area/golden_arrow/platoon_commander_rooms)
-"iZ" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+"agP" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
+/turf/open/floor/almayer/edge/smooth,
/area/golden_arrow/hangar)
-"ja" = (
-/obj/structure/largecrate/supply/motiondetectors,
-/obj/item/ammo_box/magazine/mk1{
- layer = 3.1;
- pixel_x = -12;
- pixel_y = 14
- },
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonarmory)
-"jd" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- layer = 2.5;
- pixel_y = 1
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/golden_arrow/hangar)
-"jf" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/largecrate/random/case/small{
- anchored = 1;
- density = 0;
- pixel_y = 14
- },
-/obj/structure/prop{
- desc = "A wooden rack fitted to the wall.";
- icon = 'icons/obj/items/items.dmi';
- icon_state = "sheet-wood";
- layer = 2.1;
- name = "wooden rack";
- pixel_y = 35
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonprep)
-"jg" = (
+"agR" = (
/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+ dir = 9
},
/obj/structure/cable/heavyduty{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+ icon_state = "1-2"
},
-/turf/open/floor/almayer,
+/turf/open/floor/plating/plating_catwalk,
/area/golden_arrow/prep_hallway)
-"jh" = (
+"agS" = (
/obj/effect/decal/cleanable/blood/oil,
/obj/structure/machinery/door/poddoor/shutters/almayer{
- id = "weapons_conny";
- name = "\improper Squad Two Weapons Locker";
+ name = "\improper Weapons Locker";
+ id = "squadarmory";
pixel_y = -4
},
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
/area/golden_arrow/platoonarmory)
-"ji" = (
+"agT" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ layer = 3.3;
+ pixel_x = -1
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
+ },
+/area/golden_arrow/hangar)
+"agV" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/almayer,
-/area/golden_arrow/prep_hallway)
-"jj" = (
/obj/structure/cable/heavyduty{
icon_state = "4-8"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/holohoop{
- dir = 4;
- id = "basketball";
- side = "left"
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning";
+ dir = 4
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/hangar)
-"jk" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/largecrate/random/mini/small_case/c{
- pixel_x = -11;
- pixel_y = 9
+/turf/open/floor/almayer/edge{
+ dir = 4
+ },
+/area/golden_arrow/dorms)
+"agX" = (
+/obj/structure/machinery/door_control/brbutton{
+ pixel_y = 28;
+ id = "vehiclebay2";
+ name = "vehicle bay blast door control"
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"jl" = (
-/turf/closed/shuttle/midway{
- icon_state = "54";
- name = "\improper Tripoli"
+"agY" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "cargo_arrow"
},
/area/golden_arrow/hangar)
-"jn" = (
-/obj/structure/closet/secure_closet/engineering_electrical{
- req_one_access = null
+"aha" = (
+/obj/structure/surface/table/almayer,
+/obj/item/trash/cigbutt/cigarbutt{
+ pixel_y = 25;
+ pixel_x = -3;
+ randpixel = 0
},
-/obj/effect/decal/cleanable/dirt,
+/obj/item/ashtray/plastic{
+ icon_state = "ashtray_full_bl";
+ pixel_x = 9;
+ pixel_y = 6
+ },
+/obj/item/trash/cigbutt{
+ pixel_y = 5;
+ pixel_x = 4;
+ randpixel = 0
+ },
+/obj/item/prop/helmetgarb/gunoil{
+ pixel_y = 23;
+ pixel_x = 9;
+ layer = 3.3
+ },
+/obj/item/storage/fancy/cigar/matchbook{
+ pixel_y = 8;
+ pixel_x = -2
+ },
+/obj/item/storage/box/pdt_kit/advanced,
/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
+ icon_state = "plate"
},
-/area/golden_arrow/engineering)
-"jo" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/safety/cryo{
- name = "hypersleep semiotic";
- pixel_x = 15;
- pixel_y = -26
+/area/golden_arrow/platoonprep)
+"ahb" = (
+/obj/structure/machinery/landinglight/ds1{
+ dir = 4
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/cryo_cells)
-"jp" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out";
- pixel_x = -1
+/area/golden_arrow/hangar)
+"ahc" = (
+/obj/structure/machinery/landinglight/ds1{
+ dir = 1
},
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"ahg" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
/area/golden_arrow/hangar)
-"jt" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
+"ahh" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+/obj/item/reagent_container/food/drinks/coffee/marine{
+ pixel_y = 14;
+ pixel_x = -4
},
-/obj/structure/cable{
- icon_state = "4-8"
+/obj/item/ashtray/plastic{
+ pixel_y = 3;
+ pixel_x = -10
},
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
/area/golden_arrow/medical)
-"jw" = (
+"ahi" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 9
+ dir = 6
},
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/cryo_cells)
-"jx" = (
-/turf/closed/shuttle/midway/transparent{
- icon_state = "22";
- name = "\improper Tripoli"
+"ahj" = (
+/obj/structure/surface/table/almayer,
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/hangar)
-"jz" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+/obj/structure/machinery/prop/almayer/computer/PC{
+ pixel_y = 6
},
-/obj/structure/largecrate/supply/ammo{
- fill_from_loc = 1;
- name = "smoke grenades case";
- pixel_y = 11
+/turf/open/floor/almayer,
+/area/golden_arrow/shared_office)
+"ahk" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
-/obj/item/explosive/grenade/smokebomb,
-/obj/item/explosive/grenade/smokebomb,
-/obj/item/explosive/grenade/smokebomb,
-/obj/item/explosive/grenade/smokebomb,
-/obj/item/explosive/grenade/smokebomb,
-/obj/item/explosive/grenade/smokebomb,
-/obj/item/explosive/grenade/smokebomb,
-/obj/item/explosive/grenade/smokebomb,
-/obj/item/explosive/grenade/smokebomb,
-/obj/item/explosive/grenade/smokebomb,
-/obj/item/explosive/grenade/smokebomb,
-/obj/item/explosive/grenade/smokebomb,
-/obj/item/explosive/grenade/smokebomb,
-/obj/item/explosive/grenade/smokebomb,
-/obj/item/explosive/grenade/smokebomb,
-/obj/item/explosive/grenade/smokebomb,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
},
-/area/golden_arrow/hangar)
-"jC" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ name = "First Platoon Ready Bay Blast Door";
+ closed_layer = 3.3;
+ layer = 3.3;
+ open_layer = 3.3;
+ id = "squadblastdoor"
},
-/obj/structure/machinery/light{
- dir = 8
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ layer = 1.9
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
-/area/golden_arrow/hangar)
-"jD" = (
-/obj/structure/machinery/alarm/almayer{
- dir = 1
+/area/golden_arrow/platoonarmory)
+"ahl" = (
+/turf/closed/wall/almayer/outer,
+/area/golden_arrow/supply)
+"ahm" = (
+/obj/item/reagent_container/food/condiment/sugar,
+/obj/item/reagent_container/food/condiment/enzyme,
+/obj/item/reagent_container/food/snacks/flour,
+/obj/item/reagent_container/food/snacks/flour,
+/obj/item/reagent_container/food/snacks/flour,
+/obj/item/reagent_container/food/snacks/flour,
+/obj/structure/closet{
+ desc = "It's a fancy storage unit for long-life foodstuffs.";
+ name = "long-life foodstuff storage"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/prep_hallway)
-"jE" = (
-/obj/structure/largecrate/supply/supplies/flares,
+/obj/item/storage/box/powderedmilk,
+/obj/item/reagent_container/food/condiment/juice/egg,
+/obj/item/reagent_container/food/snacks/flour,
+/obj/item/reagent_container/food/snacks/flour,
+/obj/item/reagent_container/food/snacks/flour,
+/obj/item/reagent_container/food/snacks/flour,
/turf/open/floor/almayer{
- icon_state = "cargo"
+ icon_state = "dark_sterile"
},
-/area/golden_arrow/hangar)
-"jH" = (
-/obj/structure/sign/safety/bulkhead_door{
- pixel_y = 27
+/area/golden_arrow/cryo_cells)
+"aho" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/sign/safety/hazard{
- pixel_x = 14;
- pixel_y = 27
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/supply)
+"ahp" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/largecrate/random/case/double,
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "cargo_arrow"
+/obj/effect/decal/siding{
+ icon_state = "siding2"
},
+/turf/open/floor/plating,
/area/golden_arrow/hangar)
-"jI" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
- },
-/obj/structure/pipes/vents/scrubber{
- dir = 4
+"aht" = (
+/obj/structure/bed/chair/comfy,
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer,
+/area/golden_arrow/cryo_cells)
+"ahw" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 1
+ },
+/area/golden_arrow/supply)
+"ahx" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"ahz" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning";
+ dir = 1
+ },
+/turf/open/floor/almayer/edge{
+ dir = 1
+ },
+/area/golden_arrow/prep_hallway)
+"ahA" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "node";
+ layer = 2.38
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/motor_pool)
+"ahB" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/machinery/door/poddoor/almayer{
+ dir = 4;
+ name = "\improper Storage Bay Three Blast Door";
+ id = "cargobay3"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/hangar)
+"ahF" = (
+/obj/structure/machinery/door/poddoor/railing{
+ id = "garrow_vehicle_elevator_one"
+ },
+/turf/open/floor/almayer{
+ icon_state = "black";
+ dir = 1
+ },
+/area/golden_arrow/vehicle_shuttle/upper)
+"ahH" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer/edge/smooth/corner,
+/area/golden_arrow/hangar)
+"ahI" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/vents/pump,
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"ahJ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/golden_arrow/medical)
+"ahK" = (
+/obj/structure/surface/table/almayer,
+/obj/item/trash/plate{
+ pixel_y = 13;
+ pixel_x = 4
+ },
+/obj/item/trash/plate{
+ pixel_x = -3
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/cryo_cells)
+"ahR" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/largecrate/random/case/double{
+ pixel_y = 19;
+ layer = 3.1
+ },
+/obj/structure/largecrate/random/case/double{
+ layer = 3.2
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
+ },
+/area/golden_arrow/hangar)
+"ahS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/cryo_cells)
+"ahT" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/power/apc/almayer{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-8";
+ layer = 2.36
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"ahV" = (
+/obj/structure/barricade/handrail,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 4
+ },
+/area/golden_arrow/supply)
+"ahY" = (
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice1";
+ pixel_x = 16;
+ pixel_y = -15
+ },
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/dorms)
+"ahZ" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/golden_arrow/platoonprep)
+"aia" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/largecrate/random/case/small{
+ pixel_y = 14;
+ anchored = 1;
+ density = 0
+ },
+/obj/structure/prop{
+ layer = 2.1;
+ icon = 'icons/obj/items/items.dmi';
+ icon_state = "sheet-wood";
+ name = "wooden rack";
+ desc = "A wooden rack fitted to the wall.";
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
+ },
+/area/golden_arrow/platoonprep)
+"aib" = (
+/obj/structure/surface/table/almayer,
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/item/storage/belt/utility/full{
+ pixel_y = 12
+ },
+/obj/item/storage/belt/utility/full{
+ pixel_y = 2;
+ pixel_x = 2
+ },
+/obj/structure/machinery/light/small{
+ light_color = "#C02526";
+ color = "#C02526"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/engineering)
+"aic" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/hangar)
+"aid" = (
+/obj/structure/machinery/door/poddoor/almayer{
+ dir = 4;
+ name = "\improper Weapons Bay One Blast Door";
+ id = "weaponsbay1"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/hangar)
+"aig" = (
+/obj/structure/machinery/door_control{
+ id = "cargobay3";
+ name = "cargobay3";
+ pixel_y = 23;
+ pixel_x = -7;
+ needs_power = 0
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow";
+ color = "#E10600";
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/golden_arrow/hangar)
+"aih" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/sign/safety/cryo{
+ name = "hypersleep semiotic";
+ pixel_x = 15;
+ pixel_y = -26
+ },
+/turf/open/floor/almayer/edge/smooth/endcap_right{
+ dir = 8
+ },
+/area/golden_arrow/cryo_cells)
+"aii" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/computer/overwatch/almayer{
+ pixel_y = 24
+ },
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
+ },
+/area/golden_arrow/platoon_commander_rooms)
+"aij" = (
+/obj/structure/machinery/washing_machine,
+/obj/structure/machinery/washing_machine{
+ layer = 3.5;
+ pixel_y = 15
+ },
+/turf/open/floor/almayer/edge{
+ dir = 5
+ },
+/area/golden_arrow/dorms)
+"ail" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{
+ name = "\improper Prep Lockers"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/platoonprep)
+"aiq" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{
+ name = "\improper Prep Lockers"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/platoonprep)
+"air" = (
+/obj/structure/machinery/landinglight/ds1/delaytwo{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"ais" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ layer = 2.5;
+ pixel_y = 1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"ait" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S";
+ layer = 3.3
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"aiu" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"aiv" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
+ },
+/area/golden_arrow/supply)
+"aix" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"aiy" = (
+/obj/structure/machinery/door/poddoor/almayer{
+ dir = 4;
+ name = "\improper Weapons Bay Two Blast Door";
+ id = "weaponsbay2"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/hangar)
+"aiz" = (
+/obj/structure/cargo_container/kelland/left{
+ layer = 3;
+ opacity = 0
+ },
+/obj/structure/cargo_container/kelland/left{
+ pixel_y = 22;
+ opacity = 0
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/hangar)
+"aiB" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/shared_office)
+"aiD" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 4;
+ id = "squadarmory";
+ name = "\improper Gear Lockers"
+ },
+/turf/open/floor/almayer/edge/smooth/endcap_left{
+ dir = 8
+ },
+/area/golden_arrow/platoonprep)
+"aiG" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"aiH" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/golden_arrow/prep_hallway)
+"aiK" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer/edge{
+ dir = 1
+ },
+/area/golden_arrow/prep_hallway)
+"aiL" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 2;
+ pixel_x = -1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/cryo_cells)
+"aiM" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/structure/machinery/light/double/blue{
+ dir = 8;
+ light_color = "#dae2ff"
+ },
+/obj/structure/machinery/computer/med_data/laptop{
+ dir = 4;
+ pixel_x = 1;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/golden_arrow/medical)
+"aiN" = (
+/obj/structure/machinery/door/airlock/maintenance/colony{
+ dir = 1;
+ req_one_access = null;
+ name = "\improper Power Substation"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/engineering)
+"aiO" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 4
+ },
+/area/golden_arrow/hangar)
+"aiP" = (
+/obj/structure/surface/table/almayer,
+/obj/item/prop/almayer/comp_closed{
+ pixel_x = -14;
+ pixel_y = 13
+ },
+/obj/item/reagent_container/food/drinks/coffee/marine,
+/obj/item/reagent_container/food/drinks/coffee/marine{
+ pixel_y = 16;
+ pixel_x = -13
+ },
+/obj/item/reagent_container/food/drinks/coffee/marine{
+ pixel_x = 9;
+ pixel_y = 9
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"aiQ" = (
+/obj/structure/pipes/vents/scrubber,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/golden_arrow/medical)
+"aiT" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
+ },
+/area/golden_arrow/motor_pool)
+"aiU" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning"
+ },
+/turf/open/floor/almayer/edge{
+ dir = 6
+ },
+/area/golden_arrow/prep_hallway)
+"aiV" = (
+/obj/structure/sign/safety/rewire{
+ pixel_x = 32
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow";
+ dir = 1
+ },
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 2;
+ id = "garrow_elevator_upper"
+ },
+/turf/open/floor/almayer/edge{
+ dir = 1
+ },
+/area/golden_arrow/cargo_shuttle/upper)
+"aiW" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/curtain/red,
+/turf/open/floor/plating,
+/area/golden_arrow/platoon_commander_rooms)
+"aiX" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow"
+ },
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/prep_hallway)
+"aiY" = (
+/obj/structure/machinery/landinglight/ds1{
+ dir = 8
+ },
+/obj/structure/machinery/floodlight/landing/floor{
+ color = "#dae2ff";
+ light_color = "#dae2ff"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"ajb" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/hangar)
+"ajc" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
+ },
+/area/golden_arrow/hangar)
+"ajd" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ layer = 2.5;
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"aje" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 8
+ },
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 8
+ },
+/area/golden_arrow/hangar)
+"aji" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/prep_hallway)
+"ajk" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/largecrate/random/mini/small_case/c{
+ pixel_x = -11;
+ pixel_y = 9
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"ajm" = (
+/obj/structure/machinery/firealarm{
+ dir = 4;
+ pixel_x = 21
+ },
+/turf/open/floor/almayer/edge/smooth/endcap_right{
+ dir = 4
+ },
+/area/golden_arrow/cryo_cells)
+"ajq" = (
+/obj/structure/closet/secure_closet{
+ icon_broken = "fridgebroken";
+ icon_closed = "fridge";
+ icon_locked = "fridge1";
+ icon_off = "fridge1";
+ icon_opened = "fridgeopen";
+ icon_state = "fridge1";
+ name = "beverage fridge"
+ },
+/obj/item/reagent_container/food/drinks/bottle/orangejuice{
+ pixel_x = 8;
+ pixel_y = -7
+ },
+/obj/item/reagent_container/food/drinks/bottle/orangejuice{
+ pixel_y = -1
+ },
+/obj/item/reagent_container/food/drinks/bottle/orangejuice{
+ pixel_y = -4;
+ pixel_x = -2
+ },
+/obj/item/reagent_container/food/drinks/bottle/orangejuice{
+ pixel_y = -9
+ },
+/turf/open/floor/almayer/edge/smooth/endcap_right{
+ dir = 4
+ },
+/area/golden_arrow/cryo_cells)
+"ajr" = (
+/obj/structure/bed/chair/office/light{
+ dir = 8;
+ pixel_y = 5;
+ buckling_y = 5
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/golden_arrow/medical)
+"ajs" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-4"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"ajt" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/golden_arrow/medical)
+"aju" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S";
+ pixel_y = 1
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
+ },
+/area/golden_arrow/hangar)
+"ajv" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"ajy" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/disposal{
+ density = 0;
+ layer = 3.2;
+ pixel_y = 16
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ icon_state = "0-8";
+ layer = 2.36
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"ajA" = (
+/obj/structure/machinery/light/double/blue{
+ dir = 1;
+ light_color = "#dae2ff"
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/largecrate/random/secure,
+/obj/item/reagent_container/food/drinks/cans/waterbottle{
+ pixel_x = 7;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"ajB" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/golden_arrow/hangar)
+"ajF" = (
+/obj/docking_port/stationary/trijent_elevator/shipmap_elevator/one{
+ id = "garrow_vehicle_elevator_one_storage";
+ name = "Vehicle Elevator One Storage";
+ roundstart_template = /datum/map_template/shuttle/trijent_elevator/golden_arrow/vehicleone;
+ elevator_network = "ArrowVehicleOne"
+ },
+/turf/open/floor/corsat,
+/area/golden_arrow/motor_pool)
+"ajG" = (
+/obj/structure/machinery/light/double/blue{
+ light_color = "#dae2ff"
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"ajH" = (
+/obj/structure/sign/safety/bulkhead_door{
+ pixel_y = 27
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_x = 14;
+ pixel_y = 27
+ },
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "cargo_arrow"
+ },
+/area/golden_arrow/hangar)
+"ajI" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/pipes/vents/scrubber{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"ajM" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/pipes/vents/pump{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"ajO" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/briefing)
+"ajR" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/golden_arrow/cryo_cells)
+"ajU" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/cryo_cells)
+"ajV" = (
+/obj/structure/sign/safety/rewire{
+ pixel_x = 15;
+ pixel_y = -25
+ },
+/obj/structure/sign/safety/electronics{
+ pixel_y = -25
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/engineering)
+"ajX" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/golden_arrow/hangar)
+"ajZ" = (
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
+ },
+/area/golden_arrow/hangar)
+"akb" = (
+/turf/closed/wall/almayer,
+/area/golden_arrow/hangar)
+"akc" = (
+/obj/structure/surface/table/almayer,
+/obj/item/prop/almayer/box{
+ pixel_y = 9
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"akd" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 4
+ },
+/area/golden_arrow/hangar)
+"akg" = (
+/obj/item/ashtray/plastic{
+ icon_state = "ashtray_full_bl";
+ pixel_x = -2;
+ pixel_y = -4;
+ layer = 3.2
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"akk" = (
+/obj/item/paper{
+ icon_state = "paper_words";
+ pixel_y = -3;
+ pixel_x = 5;
+ layer = 3.01;
+ info = "OUT OF ORDER - When I find the dumbass that thought it was a good idea to drive over the elevator with the APC they're gonna get their ass beat.";
+ name = "OUT OF ORDER"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/hangar)
+"akm" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
+ },
+/area/golden_arrow/hangar)
+"ako" = (
+/obj/item/tool/crowbar/red{
+ pixel_x = -13;
+ pixel_y = -13
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
+ },
+/area/golden_arrow/hangar)
+"akp" = (
+/obj/structure/surface/table/almayer,
+/obj/item/toy/deck/uno,
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/hangar)
+"aks" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/structure/holohoop{
+ dir = 8;
+ id = "basketball";
+ side = "right"
+ },
+/obj/structure/machinery/light/double/blue{
+ dir = 4;
+ light_color = "#dae2ff"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/hangar)
+"akt" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"aku" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ layer = 3.3
+ },
+/obj/structure/pipes/vents/pump{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"akv" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ layer = 2.36
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/platoonprep)
+"akx" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 2
+ },
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/hangar)
+"aky" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ layer = 2.36
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/hangar)
+"akA" = (
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/cryo_cells)
+"akC" = (
+/obj/vehicle/powerloader,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/hangar)
+"akD" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/obj/structure/platform{
+ dir = 1
+ },
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 4
+ },
+/area/golden_arrow/briefing)
+"akE" = (
+/obj/structure/barricade/handrail{
+ dir = 4
+ },
+/obj/structure/barricade/handrail{
+ dir = 8
+ },
+/obj/structure/closet/secure_closet,
+/obj/structure/machinery/light/double/blue{
+ light_color = "#dae2ff"
+ },
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/dorms)
+"akF" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning";
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/motor_pool)
+"akG" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/hangar)
+"akJ" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/light/double/blue{
+ dir = 1;
+ light_color = "#dae2ff"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"akK" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/prop/almayer/computer/PC{
+ dir = 4;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer/edge{
+ dir = 9
+ },
+/area/golden_arrow/dorms)
+"akL" = (
+/obj/structure/machinery/cryopod{
+ layer = 3.1;
+ pixel_y = 13
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/cryo_cells)
+"akM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/motor_pool)
+"akN" = (
+/obj/structure/machinery/light/small{
+ light_color = "#C02526";
+ color = "#C02526"
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "plating_striped"
+ },
+/area/golden_arrow/engineering)
+"akO" = (
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
+ },
+/area/golden_arrow/cryo_cells)
+"akR" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/almayer/edge{
+ dir = 4
+ },
+/area/golden_arrow/prep_hallway)
+"akT" = (
+/obj/structure/bed/chair/office/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/golden_arrow/medical)
+"akV" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
+ },
+/area/golden_arrow/hangar)
+"akY" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/item/clothing/under/shorts/blue,
+/obj/item/clothing/under/shorts/blue,
+/obj/item/clothing/under/shorts/red,
+/obj/item/clothing/under/shorts/red,
+/obj/item/clothing/under/shorts/green,
+/obj/item/clothing/under/shorts/green,
+/obj/item/clothing/under/shorts/grey,
+/obj/item/clothing/under/shorts/grey,
+/obj/item/clothing/under/shorts/grey,
+/obj/item/clothing/under/shorts/grey,
+/obj/structure/closet/coffin/woodencrate{
+ name = "gym equipment"
+ },
+/obj/item/clothing/under/shorts/grey,
+/obj/item/clothing/under/shorts/grey,
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/hangar)
+"akZ" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/ship_ammo/heavygun{
+ pixel_y = 8
+ },
+/obj/structure/ship_ammo/heavygun{
+ layer = 3.01
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "cargo"
+ },
+/area/golden_arrow/hangar)
+"ala" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/uscm{
+ dir = 1
+ },
+/area/golden_arrow/hangar)
+"alb" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
+ },
+/area/golden_arrow/hangar)
+"alc" = (
+/obj/structure/closet/secure_closet/marine_personal{
+ pixel_x = -7;
+ job = "Platoon Sergeant"
+ },
+/obj/structure/closet/secure_closet/marine_personal{
+ pixel_x = 8;
+ job = "Platoon Corpsman"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/cryo_cells)
+"alf" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer/edge{
+ dir = 1
+ },
+/area/golden_arrow/prep_hallway)
+"ali" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 4
+ },
+/area/golden_arrow/hangar)
+"all" = (
+/turf/open/floor/almayer/edge/smooth/corner,
+/area/golden_arrow/motor_pool)
+"alm" = (
+/obj/structure/machinery/light/double/blue{
+ dir = 4;
+ light_color = "#dae2ff"
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/golden_arrow/medical)
+"aln" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S";
+ pixel_y = 1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
+ },
+/area/golden_arrow/hangar)
+"alp" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/structure/ship_ammo/rocket/widowmaker{
+ pixel_y = 13
+ },
+/obj/structure/ship_ammo/rocket/widowmaker,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/hangar)
+"alr" = (
+/obj/structure/pipes/vents/pump{
+ dir = 4
+ },
+/turf/open/floor/almayer/edge{
+ dir = 8
+ },
+/area/golden_arrow/supply)
+"als" = (
+/obj/structure/surface/table/almayer,
+/obj/item/prop/almayer/comp_open{
+ pixel_y = 9;
+ pixel_x = -12
+ },
+/obj/item/reagent_container/food/drinks/cans/souto/diet{
+ pixel_x = 8;
+ pixel_y = 11
+ },
+/obj/item/trash/chips{
+ layer = 2.7;
+ pixel_y = -9
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"alt" = (
+/obj/item/storage/toolbox/mechanical{
+ pixel_y = -6;
+ pixel_x = 2
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"alu" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"alw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/dorms)
+"alx" = (
+/turf/open/floor/almayer/uscm{
+ icon_state = "logo_directional1";
+ dir = 5
+ },
+/area/golden_arrow/hangar)
+"alz" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/golden_arrow/motor_pool)
+"alA" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 1
+ },
+/area/golden_arrow/supply)
+"alC" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/item/device/flashlight/lamp/tripod/grey,
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"alD" = (
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
+ },
+/area/golden_arrow/cryo_cells)
+"alE" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-4-8"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"alG" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/shared_office)
+"alI" = (
+/obj/structure/surface/table/almayer,
+/obj/item/weapon/straight_razor{
+ pixel_x = -5;
+ pixel_y = -5
+ },
+/obj/item/clothing/head/cmcap/bridge{
+ pixel_y = 6;
+ pixel_x = 5
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/platoon_commander_rooms)
+"alK" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 4
+ },
+/area/golden_arrow/hangar)
+"alL" = (
+/obj/structure/sign/safety/bulkhead_door{
+ pixel_y = 27
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_x = 14;
+ pixel_y = 27
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "cargo_arrow"
+ },
+/area/golden_arrow/hangar)
+"alN" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
+ },
+/area/golden_arrow/platoonprep)
+"alP" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "0-2"
+ },
+/obj/structure/cable{
+ layer = 2.36
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/cryo_cells)
+"alR" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/obj/structure/machinery/gear{
+ id = "supply_elevator_gear"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/engineering)
+"alS" = (
+/obj/structure/machinery/light/double/blue{
+ dir = 4;
+ light_color = "#dae2ff"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"alT" = (
+/obj/structure/machinery/light/double/blue{
+ dir = 8;
+ light_color = "#dae2ff"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/hangar)
+"alW" = (
+/obj/structure/machinery/camera/autoname/golden_arrow{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/obj/structure/sign/safety/storage{
+ pixel_x = -18;
+ pixel_y = -7
+ },
+/obj/structure/sign/safety/two{
+ pixel_x = -18;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
+ },
+/area/golden_arrow/platoonprep)
+"alX" = (
+/obj/structure/barricade/handrail{
+ dir = 8
+ },
+/obj/structure/closet/secure_closet,
+/obj/structure/barricade/handrail{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge{
+ dir = 5
+ },
+/area/golden_arrow/dorms)
+"alY" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/prop/tableflag/uscm{
+ pixel_x = -8;
+ pixel_y = -2
+ },
+/obj/item/paper_bin/uscm{
+ pixel_x = 5;
+ pixel_y = 6
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/platoon_commander_rooms)
+"ama" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning"
+ },
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/cryo_cells)
+"amb" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
+ },
+/area/golden_arrow/hangar)
+"amd" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/motor_pool)
+"ame" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/landinglight/ds1/delayone,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"amf" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
+ },
+/area/golden_arrow/hangar)
+"amh" = (
+/obj/structure/machinery/light/double/blue{
+ dir = 8;
+ light_color = "#dae2ff"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"ami" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/largecrate/random/case{
+ pixel_y = 11
+ },
+/obj/item/reagent_container/food/drinks/coffee/marine{
+ pixel_x = 4;
+ pixel_y = 15;
+ layer = 3.11
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"amm" = (
+/obj/structure/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"amn" = (
+/obj/structure/machinery/light/double/blue{
+ dir = 8;
+ light_color = "#dae2ff"
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/hangar)
+"amo" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-8"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"amq" = (
+/obj/structure/ladder{
+ id = "enginorth"
+ },
+/obj/structure/sign/safety/maint{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"ams" = (
+/obj/structure/machinery/door_control{
+ id = "weaponsbay2";
+ name = "weaponsbay2";
+ pixel_y = 23;
+ pixel_x = -7;
+ needs_power = 0
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow";
+ color = "#E10600";
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/golden_arrow/hangar)
+"amu" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"amw" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/barricade/handrail{
+ dir = 8
+ },
+/obj/structure/machinery/computer/cameras/wooden_tv/prop{
+ dir = 4;
+ layer = 3.2;
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/obj/structure/machinery/light/double/blue{
+ dir = 8;
+ light_color = "#dae2ff"
+ },
+/turf/open/floor/almayer/edge{
+ dir = 8
+ },
+/area/golden_arrow/dorms)
+"amy" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/obj/structure/machinery/gear{
+ id = "garrow_vehicle_elevator_two"
+ },
+/turf/open/floor/almayer{
+ icon_state = "blackcorner";
+ dir = 1
+ },
+/area/golden_arrow/vehicle_shuttle/two/upper)
+"amA" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S";
+ pixel_y = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
+ },
+/area/golden_arrow/hangar)
+"amB" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/briefing)
+"amC" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/sign/poster{
+ desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that.";
+ icon_state = "poster16";
+ layer = 3.3;
+ name = "'Miss July' Pinup";
+ pixel_y = 29;
+ serial_number = 16
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/golden_arrow/cryo_cells)
+"amF" = (
+/obj/item/tool/mop{
+ pixel_x = -1;
+ pixel_y = 20
+ },
+/turf/open/floor/almayer/edge{
+ dir = 1
+ },
+/area/golden_arrow/prep_hallway)
+"amG" = (
+/obj/structure/pipes/vents/pump{
+ dir = 8
+ },
+/obj/structure/machinery/door/poddoor/railing{
+ id = "garrow_vehicle_elevator_two"
+ },
+/turf/open/floor/almayer{
+ icon_state = "black";
+ dir = 1
+ },
+/area/golden_arrow/vehicle_shuttle/two/upper)
+"amI" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-8"
+ },
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/platoonarmory)
+"amJ" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/golden_arrow/hangar)
+"amK" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
+ },
+/area/golden_arrow/briefing)
+"amL" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/surface/table/almayer,
+/obj/structure/barricade/handrail{
+ dir = 4
+ },
+/obj/item/prop/flower_vase/redwhiteflowers{
+ pixel_y = 10;
+ layer = 3.03
+ },
+/obj/item/dogtag{
+ desc = "A fallen marine's information dog tag. It looks battered and the name is worn out.";
+ pixel_y = 2;
+ name = "faded information dog tag"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/platoonprep)
+"amM" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2";
+ pixel_x = 2
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/platoon_commander_rooms)
+"amP" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/cryo_cells)
+"amQ" = (
+/obj/structure/machinery/landinglight/ds1/delayone{
+ dir = 1
+ },
+/obj/structure/machinery/floodlight/landing/floor{
+ color = "#dae2ff";
+ light_color = "#dae2ff"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"amS" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
+ },
+/area/golden_arrow/cryo_cells)
+"amT" = (
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice3";
+ pixel_x = 16;
+ pixel_y = -15
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/dorms)
+"amU" = (
+/obj/effect/decal/siding{
+ icon_state = "siding5"
+ },
+/turf/open/floor/plating,
+/area/golden_arrow/hangar)
+"amW" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ pixel_x = -1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/target{
+ name = "punching bag";
+ pixel_y = 16;
+ layer = 3.1
+ },
+/turf/open/floor/almayer/edge/smooth/corner,
+/area/golden_arrow/hangar)
+"ana" = (
+/obj/structure/cargo_container/seegson/right,
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"anb" = (
+/obj/structure/foamed_metal,
+/turf/open/floor/plating,
+/area/golden_arrow/medical)
+"anc" = (
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
+ },
+/obj/structure/filingcabinet/medical{
+ pixel_y = 17;
+ pixel_x = -8;
+ name = "medical records";
+ density = 0
+ },
+/obj/structure/filingcabinet{
+ pixel_y = 17;
+ pixel_x = 8;
+ density = 0
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/golden_arrow/medical)
+"and" = (
+/obj/structure/machinery/power/terminal{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/engineering)
+"anf" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/vents/pump{
+ dir = 4
+ },
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 1
+ },
+/area/golden_arrow/hangar)
+"ani" = (
+/obj/structure/blocker/invisible_wall,
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"ank" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/platoonprep)
+"anm" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/engineering)
+"ano" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "node";
+ layer = 2.38
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/motor_pool)
+"anp" = (
+/obj/structure/sign/banners/maximumeffort{
+ pixel_y = -5;
+ desc = "A large banner strung up on the wall intended to give the marines a boost in confidence."
+ },
+/turf/closed/wall/almayer,
+/area/golden_arrow/cryo_cells)
+"anr" = (
+/obj/docking_port/stationary/trijent_elevator/shipmap_elevator/one{
+ id = "garrow_vehicle_elevator_one";
+ elevator_network = "ArrowVehicleOne";
+ name = "Vehicle Elevator One Upper";
+ airlock_area = /area/golden_arrow/vehicle_shuttle/upper
+ },
+/turf/open/floor/almayer/empty/golden_arrow/vehicle_one,
+/area/golden_arrow/vehicle_shuttle/upper)
+"ans" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S";
+ pixel_x = -16
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/golden_arrow/medical)
+"ant" = (
+/obj/structure/sink{
+ pixel_y = 24;
+ layer = 3.1
+ },
+/obj/structure/mirror{
+ pixel_y = 35;
+ pixel_x = -1
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/platoon_commander_rooms)
+"anu" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/almayer/edge{
+ dir = 1
+ },
+/area/golden_arrow/prep_hallway)
+"anv" = (
+/obj/structure/surface/table/almayer,
+/obj/item/hardpoint/support/flare_launcher{
+ pixel_y = 11
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"anw" = (
+/obj/structure/cable{
+ layer = 2.36;
+ pixel_y = 12;
+ pixel_x = -3
+ },
+/obj/structure/cable{
+ layer = 2.36;
+ pixel_y = 12;
+ pixel_x = -1
+ },
+/obj/structure/cable{
+ layer = 2.36;
+ pixel_y = 12;
+ pixel_x = 1
+ },
+/obj/structure/cable{
+ layer = 2.36;
+ pixel_y = 12;
+ pixel_x = 3
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ layer = 2.36;
+ pixel_y = -3;
+ pixel_x = -3
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ layer = 2.36;
+ pixel_y = -3;
+ pixel_x = -1
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ layer = 2.36;
+ pixel_y = -3;
+ pixel_x = 1
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ layer = 2.36;
+ pixel_y = -3;
+ pixel_x = 3
+ },
+/turf/open/floor/plating,
+/area/golden_arrow/hangar)
+"anx" = (
+/obj/structure/machinery/landinglight/ds1/delaytwo{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"anz" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/closed/wall/almayer/outer,
+/area/golden_arrow/hangar)
+"anA" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/briefing)
+"anB" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/sign/banners/united_americas_flag{
+ pixel_y = 28
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"anC" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/golden_arrow/cryo_cells)
+"anE" = (
+/obj/structure/ship_ammo/rocket/widowmaker{
+ pixel_y = 13
+ },
+/obj/structure/ship_ammo/rocket/widowmaker,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/hangar)
+"anF" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/vents/scrubber{
+ dir = 4
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/platoon_commander_rooms)
+"anG" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/bed/chair/comfy{
+ buckling_y = 2;
+ dir = 8;
+ pixel_y = 2
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/cryo_cells)
+"anJ" = (
+/obj/structure/surface/table/almayer,
+/obj/item/trash/plate{
+ pixel_y = 4;
+ pixel_x = -4
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/cryo_cells)
+"anL" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/golden_arrow/hangar)
+"anM" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/golden_arrow/medical)
+"anN" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/prop{
+ density = 1;
+ icon_state = "pipe_d";
+ name = "refueling pump";
+ desc = "A pump used for refueling the dropship.";
+ pixel_x = -4;
+ pixel_y = -5;
+ layer = 2.7
+ },
+/obj/effect/decal/siding{
+ icon_state = "siding2"
+ },
+/turf/open/floor/plating,
+/area/golden_arrow/hangar)
+"anQ" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/hangar)
+"anU" = (
+/obj/structure/machinery/door_control{
+ id = "cargobay2";
+ name = "carbobay2";
+ pixel_y = -23;
+ pixel_x = -7;
+ needs_power = 0
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow";
+ color = "#E10600"
+ },
+/turf/open/floor/plating,
+/area/golden_arrow/hangar)
+"anV" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
+/obj/structure/machinery/light/double/blue{
+ light_color = "#dae2ff"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"anW" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/golden_arrow/cryo_cells)
+"anY" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"aoa" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/sign/safety/ammunition{
+ pixel_x = 32;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
+ },
+/area/golden_arrow/platoonprep)
+"aob" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_y = -26;
+ pixel_x = 1
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-4"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning";
+ dir = 4
+ },
+/turf/open/floor/almayer/edge{
+ dir = 6
+ },
+/area/golden_arrow/prep_hallway)
+"aoc" = (
+/obj/structure/fence,
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ name = "First Platoon Ready Bay Blast Door";
+ closed_layer = 3.3;
+ layer = 3.3;
+ open_layer = 3.3;
+ id = "squadblastdoor"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ layer = 1.9
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/platoonarmory)
+"aog" = (
+/turf/closed/wall/almayer,
+/area/golden_arrow/cryo_cells)
+"aoj" = (
+/obj/effect/spawner/prop_gun/anti_tank{
+ anchored = 1
+ },
+/turf/closed/wall/almayer/outer,
+/area/golden_arrow/briefing)
+"aok" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "cargo_arrow"
+ },
+/area/golden_arrow/hangar)
+"aom" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/uscm{
+ icon_state = "logo_directional1";
+ dir = 1
+ },
+/area/golden_arrow/hangar)
+"aon" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 8
+ },
+/area/golden_arrow/supply)
+"aop" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_21"
+ },
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/platoon_commander_rooms)
+"aoq" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/surface/table/almayer,
+/obj/structure/barricade/handrail{
+ dir = 4
+ },
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = -11;
+ pixel_y = 14
+ },
+/obj/item/tool/hand_labeler{
+ pixel_y = 2;
+ pixel_x = -3
+ },
+/obj/item/spacecash/c10{
+ pixel_x = 11;
+ pixel_y = 2;
+ layer = 2.7
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/platoonprep)
+"aor" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
+ },
+/area/golden_arrow/hangar)
+"aos" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"aot" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/prep_hallway)
+"aou" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/hangar)
+"aov" = (
+/obj/structure/machinery/medical_pod/autodoc{
+ pixel_y = 6
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/medical)
+"aow" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/toolbox/electrical{
+ pixel_y = 10
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/engineering)
+"aox" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/landinglight/ds1/delaythree,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"aoz" = (
+/obj/structure/machinery/camera/autoname/golden_arrow{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 6
+ },
+/area/golden_arrow/platoon_commander_rooms)
+"aoA" = (
+/obj/structure/ship_ammo/minirocket,
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/ship_ammo/minirocket{
+ pixel_y = 9;
+ layer = 3.1
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "cargo"
+ },
+/area/golden_arrow/hangar)
+"aoC" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo"
+ },
+/obj/structure/cargo_container/grant/right,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/motor_pool)
+"aoE" = (
+/obj/structure/machinery/light/double/blue{
+ dir = 4;
+ light_color = "#dae2ff"
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/platoonprep)
+"aoG" = (
+/obj/structure/largecrate/supply/ammo{
+ name = "sentry crate";
+ fill_from_loc = 1
+ },
+/obj/item/ammo_magazine/sentry{
+ layer = 3.01
+ },
+/obj/item/defenses/handheld/sentry,
+/obj/structure/largecrate/supply/explosives/grenades/less{
+ icon_state = "case";
+ pixel_y = 10;
+ pixel_x = 20;
+ layer = 3.1
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/platoonarmory)
+"aoI" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/platoonarmory)
+"aoL" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
+ },
+/area/golden_arrow/briefing)
+"aoN" = (
+/obj/structure/cargo_container/seegson/left,
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"aoO" = (
+/turf/open/floor/almayer/edge{
+ dir = 4
+ },
+/area/golden_arrow/cryo_cells)
+"aoQ" = (
+/obj/structure/bed/bedroll{
+ pixel_x = -2;
+ color = "#333333";
+ name = "gym mat";
+ buckle_lying = null;
+ can_buckle = 0;
+ foldabletype = null;
+ pixel_y = -3;
+ desc = "A black gym mat, useful if you don't want to use the cold hard floor for exercise."
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "cargo_arrow"
+ },
+/area/golden_arrow/hangar)
+"aoR" = (
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"aoT" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/sign/safety/high_voltage{
+ pixel_x = 32;
+ pixel_y = 6
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/engineering)
+"aoU" = (
+/obj/structure/closet/secure_closet/marine_personal{
+ pixel_x = -7
+ },
+/obj/structure/closet/secure_closet/marine_personal{
+ pixel_x = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/cryo_cells)
+"aoV" = (
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
+ },
+/area/golden_arrow/hangar)
+"aoX" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/effect/decal/cleanable/blood/oil,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"aoZ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer/edge{
+ dir = 4
+ },
+/area/golden_arrow/supply)
+"ape" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer,
+/area/golden_arrow/engineering)
+"aph" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cargo_container/hd/right{
+ opacity = 0
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/hangar)
+"api" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/largecrate/random/case/small,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/hangar)
+"apj" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo"
+ },
+/obj/structure/cargo_container/grant/rightmid,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/motor_pool)
+"apk" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 1
+ },
+/area/golden_arrow/hangar)
+"apm" = (
+/obj/structure/surface/table/almayer,
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/item/ammo_box/magazine/misc/mre{
+ pixel_y = 11
+ },
+/obj/item/prop/helmetgarb/flair_io{
+ pixel_x = -5;
+ pixel_y = -9
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/platoonprep)
+"apn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
+ },
+/area/golden_arrow/motor_pool)
+"app" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/effect/decal/cleanable/blood/oil,
+/obj/structure/machinery/light/double/blue{
+ dir = 4;
+ light_color = "#dae2ff"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/hangar)
+"apr" = (
+/turf/open/floor/almayer,
+/area/golden_arrow/engineering)
+"aps" = (
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ name = "\improper Hangar Lockdown Blast Door";
+ id = "lowercargolocks"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/supply)
+"apv" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 1
+ },
+/area/golden_arrow/hangar)
+"apw" = (
+/obj/structure/machinery/power/terminal{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/engineering)
+"apx" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-4"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"apy" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/cryo_cells)
+"apA" = (
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 4
+ },
+/area/golden_arrow/cryo_cells)
+"apC" = (
+/obj/structure/machinery/cm_vending/sorted/medical/no_access{
+ pixel_y = 24;
+ density = 0
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/golden_arrow/medical)
+"apD" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"apG" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/dorms)
+"apH" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/motor_pool)
+"apI" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "2-4"
+ },
+/turf/open/floor/almayer/edge{
+ dir = 1
+ },
+/area/golden_arrow/platoonarmory)
+"apJ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 1
+ },
+/area/golden_arrow/hangar)
+"apM" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/shared_office)
+"apO" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ icon = 'icons/obj/structures/props/almayer_props.dmi';
+ icon_state = "wallpipe_2";
+ pixel_y = 22;
+ pixel_x = -14
+ },
+/turf/open/floor/almayer/edge{
+ dir = 1
+ },
+/area/golden_arrow/prep_hallway)
+"apP" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning"
+ },
+/turf/open/floor/almayer/edge{
+ dir = 10
+ },
+/area/golden_arrow/prep_hallway)
+"apQ" = (
+/obj/structure/platform_decoration{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/motor_pool)
+"apS" = (
+/obj/structure/sign/safety/hazard{
+ pixel_y = -25
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/engineering)
+"apV" = (
+/obj/structure/machinery/computer/crew/alt{
+ dir = 4;
+ pixel_x = -10
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "0-4"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/cryo_cells)
+"apY" = (
+/obj/structure/machinery/door/poddoor/railing{
+ id = "garrow_vehicle_elevator_two"
+ },
+/turf/open/floor/almayer{
+ icon_state = "black";
+ dir = 1
+ },
+/area/golden_arrow/vehicle_shuttle/two/upper)
+"apZ" = (
+/obj/structure/filingcabinet/chestdrawer{
+ density = 0;
+ pixel_x = -8;
+ pixel_y = 16
+ },
+/obj/structure/filingcabinet{
+ density = 0;
+ pixel_x = 8;
+ pixel_y = 16
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "2-4"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/shared_office)
+"aqa" = (
+/obj/item/reagent_container/food/drinks/cans/beer{
+ layer = 4.2;
+ pixel_y = 8;
+ pixel_x = -11
+ },
+/turf/closed/wall/almayer/outer,
+/area/golden_arrow/hangar)
+"aqb" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/light/small/blue{
+ dir = 4;
+ light_color = "#dae2ff";
+ light_power = 0.5;
+ pixel_y = 10
+ },
+/obj/structure/pipes/vents/scrubber{
+ dir = 8
+ },
+/turf/open/floor/almayer/edge{
+ dir = 4
+ },
+/area/golden_arrow/platoonarmory)
+"aqd" = (
+/turf/open/floor/almayer/edge/smooth/endcap_left{
+ dir = 4
+ },
+/area/golden_arrow/cryo_cells)
+"aqe" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"aqf" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = -18
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
+ },
+/area/golden_arrow/platoonprep)
+"aqg" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/reagent_dispensers/fueltank{
+ layer = 2.91;
+ icon = 'icons/obj/structures/props/generic_props.dmi';
+ icon_state = "weldtank_old";
+ anchored = 1;
+ pixel_y = 8
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/motor_pool)
+"aqi" = (
+/obj/structure/machinery/cm_vending/gear/synth,
+/turf/open/floor/almayer,
+/area/golden_arrow/synthcloset)
+"aqj" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 4;
+ id = "garrow_vehicle_elevator_one"
+ },
+/turf/open/floor/almayer{
+ icon_state = "black";
+ dir = 4
+ },
+/area/golden_arrow/vehicle_shuttle/upper)
+"aqk" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer/edge{
+ dir = 6
+ },
+/area/golden_arrow/platoonarmory)
+"aql" = (
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ dir = 2;
+ name = "\improper Hangar Lockdown Blast Door";
+ id = "hangarlockdownsouth"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/hangar)
+"aqo" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/machinery/firealarm{
+ dir = 4;
+ pixel_x = 21
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/platoon_commander_rooms)
+"aqp" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/hangar)
+"aqs" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S";
+ layer = 3.3
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"aqu" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/hangar)
+"aqy" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 2
+ },
+/obj/structure/machinery/light/double/blue{
+ dir = 8;
+ light_color = "#dae2ff"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/cryo_cells)
+"aqz" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/motor_pool)
+"aqA" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"aqB" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "2-8"
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
+ },
+/area/golden_arrow/cryo_cells)
+"aqC" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 4;
+ id = "squadarmory";
+ name = "\improper Gear Lockers"
+ },
+/turf/open/floor/almayer/edge/smooth/endcap_right{
+ dir = 8
+ },
+/area/golden_arrow/platoonprep)
+"aqD" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/platoonprep)
+"aqF" = (
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
+ },
+/area/golden_arrow/hangar)
+"aqG" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ layer = 1.9
+ },
+/obj/structure/machinery/door/airlock/almayer/secure{
+ name = "\improper Platoon Commander's Quarters";
+ req_access = list();
+ req_one_access_txt = "19;12"
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/platoon_commander_rooms)
+"aqI" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/kitchen/tray{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/reagent_container/food/condiment/hotsauce/tabasco{
+ pixel_x = 12;
+ pixel_y = 18
+ },
+/obj/item/trash/plate{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/trash/plate{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/item/reagent_container/food/condiment/hotsauce/tabasco{
+ pixel_y = 18;
+ pixel_x = 2
+ },
+/obj/item/trash/plate{
+ pixel_x = -4;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/golden_arrow/cryo_cells)
+"aqL" = (
+/obj/effect/decal/cleanable/blood/oil,
+/obj/effect/decal/strata_decals/grime/grime3,
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"aqN" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning";
+ dir = 1
+ },
+/turf/open/floor/almayer/edge/smooth/endcap_left{
+ dir = 8
+ },
+/area/golden_arrow/cryo_cells)
+"aqO" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/golden_arrow/platoonprep)
+"aqP" = (
+/turf/open/floor/almayer,
+/area/golden_arrow/motor_pool)
+"aqR" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/machinery/door/poddoor/railing{
+ id = "garrow_vehicle_elevator_two";
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "black"
+ },
+/area/golden_arrow/vehicle_shuttle/two/upper)
+"aqS" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 4
+ },
+/area/golden_arrow/hangar)
+"aqT" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/landinglight/ds1/delayone{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"aqU" = (
+/obj/structure/sign/safety/bulkhead_door{
+ pixel_y = -29
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_x = 14;
+ pixel_y = -29
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "cargo_arrow"
+ },
+/area/golden_arrow/hangar)
+"aqV" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-4"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/platoon_commander_rooms)
+"aqX" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/obj/structure/pipes/vents/pump,
+/obj/item/trash/uscm_mre{
+ pixel_y = 14;
+ pixel_x = 9
+ },
+/turf/open/floor/almayer/edge{
+ dir = 1
+ },
+/area/golden_arrow/dorms)
+"aqY" = (
+/obj/structure/machinery/door/poddoor/railing{
+ id = "garrow_vehicle_elevator_two";
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "black"
+ },
+/area/golden_arrow/vehicle_shuttle/two/upper)
+"arc" = (
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 2;
+ id = "garrow_elevator_upper"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow";
+ dir = 1
+ },
+/turf/open/floor/almayer/edge{
+ dir = 1
+ },
+/area/golden_arrow/cargo_shuttle/upper)
+"ard" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 4;
+ id = "squadarmory";
+ name = "\improper Gear Lockers"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/platoonprep)
+"are" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/hangar)
+"arf" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall/almayer/outer,
+/area/golden_arrow/supply)
+"arh" = (
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/platoonarmory)
+"ari" = (
+/obj/structure/sink{
+ pixel_y = 24;
+ layer = 3.1
+ },
+/obj/structure/mirror{
+ pixel_y = 35;
+ pixel_x = -1
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/golden_arrow/cryo_cells)
+"arj" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/trash/plate{
+ pixel_y = 8;
+ pixel_x = 7
+ },
+/obj/item/reagent_container/food/condiment/saltshaker{
+ pixel_x = -4;
+ pixel_y = 13
+ },
+/obj/item/reagent_container/food/snacks/protein_pack{
+ pixel_y = 9;
+ pixel_x = 3
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/cryo_cells)
+"arl" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/golden_arrow/platoonarmory)
+"arn" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 4;
+ id = "garrow_vehicle_elevator_two"
+ },
+/turf/open/floor/almayer{
+ icon_state = "black";
+ dir = 4
+ },
+/area/golden_arrow/vehicle_shuttle/two/upper)
+"arp" = (
+/obj/structure/platform_decoration{
+ dir = 1
+ },
+/obj/structure/closet/medical_wall{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer/edge/smooth/corner,
+/area/golden_arrow/motor_pool)
+"arq" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ layer = 3.3;
+ pixel_x = -1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"arr" = (
+/obj/structure/machinery/cm_vending/sorted/marine_food,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/cryo_cells)
+"ars" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge/smooth/endcap_left{
+ dir = 4
+ },
+/area/golden_arrow/cryo_cells)
+"art" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/golden_arrow/hangar)
+"aru" = (
+/obj/structure/machinery/power/terminal{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/engineering)
+"arw" = (
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ dir = 2;
+ name = "\improper Hangar Lockdown Blast Door";
+ id = "hangarlockdownsouth"
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/hangar)
+"arx" = (
+/obj/structure/surface/table/almayer,
+/obj/item/prop{
+ icon = 'icons/obj/items/paper.dmi';
+ icon_state = "newspaper";
+ name = "The Marine Corps Gazette";
+ desc = "An issue of The Marine Corps Gazette, the official newspaper of the United States Colonial Marines.";
+ pixel_y = 18;
+ pixel_x = 6
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/platoon_commander_rooms)
+"arz" = (
+/obj/structure/surface/rack,
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/item/clothing/under/marine/officer/boiler,
+/turf/open/floor/almayer/edge{
+ dir = 1
+ },
+/area/golden_arrow/dorms)
+"arB" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning";
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/motor_pool)
+"arC" = (
+/obj/structure/machinery/prop{
+ icon = 'icons/obj/vehicles/arc.dmi';
+ icon_state = "arc_base";
+ pixel_x = -31;
+ pixel_y = -38;
+ dir = 4;
+ name = "Damaged M540 Armored Recon Carrier";
+ desc = "An M540 Armored Recon carrier, a supposedly more nimble alternative to the M577A3 APC. Evidently not nimble enough to escape from a dropship crashing into it. At least it didn't get shot up."
+ },
+/obj/structure/machinery/prop{
+ icon = 'icons/obj/vehicles/arc.dmi';
+ icon_state = "flare_launcher_1";
+ pixel_x = -31;
+ pixel_y = -38;
+ dir = 4;
+ layer = 3.01;
+ mouse_opacity = 0
+ },
+/obj/structure/machinery/prop{
+ icon = 'icons/obj/vehicles/arc.dmi';
+ icon_state = "frontalcannon_1";
+ pixel_x = -31;
+ pixel_y = -38;
+ dir = 4;
+ layer = 3.01;
+ mouse_opacity = 0
+ },
+/obj/structure/machinery/prop{
+ icon = 'icons/obj/vehicles/arc.dmi';
+ icon_state = "damaged_frame";
+ pixel_x = -31;
+ pixel_y = -38;
+ dir = 4;
+ layer = 3.01;
+ mouse_opacity = 0
+ },
+/obj/structure/machinery/prop{
+ icon = 'icons/obj/vehicles/arc.dmi';
+ icon_state = "wheels_1";
+ pixel_x = -31;
+ pixel_y = -38;
+ dir = 4;
+ layer = 3.01;
+ name = "Damaged M540 Armored Recon Carrier";
+ desc = "An M540 Armored Recon carrier, a supposedly more nimble alternative to the M577A3 APC. Evidently not nimble enough to escape from a dropship crashing into it. At least it didn't get shot up."
+ },
+/obj/structure/blocker/invisible_wall,
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 4
+ },
+/area/golden_arrow/hangar)
+"arD" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning";
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/cryo_cells)
+"arE" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/hangar)
+"arG" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/hangar)
+"arJ" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"arK" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/sign/safety/conference_room{
+ pixel_y = 29
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
+ },
+/area/golden_arrow/platoonprep)
+"arL" = (
+/obj/item/storage/toolbox/mechanical/green{
+ pixel_y = -14;
+ pixel_x = 2
+ },
+/obj/structure/prop{
+ icon = 'icons/obj/structures/props/almayer_props64.dmi';
+ icon_state = "fuel_enhancer";
+ name = "Damaged FS/FES-3 fuel enhancer";
+ desc = "A fuel enhancement system for dropships. It improves the thrust produced by the fuel combustion for faster travels. Full of bullet holes and probably needs to be replaced. The label says it was manufactured in 2171";
+ density = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/hangar)
+"arM" = (
+/obj/structure/machinery/light/double/blue{
+ dir = 1;
+ light_color = "#dae2ff"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/blocker/invisible_wall,
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"arN" = (
+/obj/structure/ship_ammo/minirocket,
+/obj/structure/ship_ammo/minirocket{
+ pixel_y = 9;
+ layer = 3.1
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "cargo"
+ },
+/area/golden_arrow/hangar)
+"arO" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer/edge/smooth{
+ dir = 10
+ },
+/area/golden_arrow/motor_pool)
+"arP" = (
+/turf/closed/wall/almayer/outer,
+/area/golden_arrow/shared_office)
+"arQ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/golden_arrow/cryo_cells)
+"arR" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"arW" = (
+/obj/structure/machinery/door_control{
+ id = "hangarlockdownnorth";
+ name = "hangarlockdownnorth";
+ pixel_x = -23;
+ needs_power = 0
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow";
+ color = "#E10600";
+ dir = 8
+ },
+/turf/open/space/basic,
+/area/space)
+"arX" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/hangar)
+"arY" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/golden_arrow/prep_hallway)
+"asd" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/light/double/blue{
+ light_color = "#dae2ff"
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
+ },
+/area/golden_arrow/cryo_cells)
+"ase" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 4
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
+ },
+/area/golden_arrow/cryo_cells)
+"asf" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/machinery/door/poddoor/almayer{
+ dir = 4;
+ name = "\improper Storage Bay Four Blast Door";
+ id = "cargobay4"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/hangar)
+"asi" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/phone_base{
+ pixel_y = 30;
+ pixel_x = 9;
+ phone_id = "Overwatch";
+ name = "overwatch receiver";
+ phone_category = "Overwatch"
+ },
+/obj/structure/machinery/computer/ares_console{
+ dir = 4;
+ pixel_y = 6;
+ pixel_x = 2
+ },
+/obj/item/tool/pen{
+ pixel_x = -8;
+ pixel_y = -11
+ },
+/obj/structure/machinery/door_control{
+ pixel_y = -11;
+ pixel_x = 6;
+ id = "squadarmory";
+ name = "gear lockers door-control"
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
+ },
+/area/golden_arrow/platoon_commander_rooms)
+"asj" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1;
+ pixel_x = 1
+ },
+/obj/structure/machinery/gear{
+ id = "supply_elevator_gear"
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 1
+ },
+/area/golden_arrow/hangar)
+"asm" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "cargo_arrow"
+ },
+/area/golden_arrow/hangar)
+"aso" = (
+/obj/structure/surface/table/almayer,
+/obj/item/notepad/black{
+ pixel_y = 4
+ },
+/obj/item/tool/pen{
+ pixel_x = -16;
+ pixel_y = 8
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"ass" = (
+/obj/structure/largecrate/random/case/small,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/hangar)
+"ast" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/golden_arrow/motor_pool)
+"asw" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{
+ name = "Midway Remote Control Console";
+ shuttleId = "dropship_midway";
+ pixel_y = 6;
+ layer = 3.1
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"asx" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/bed/chair,
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"asy" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ layer = 3.3
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"asB" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 8
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
+ },
+/area/golden_arrow/hangar)
+"asC" = (
+/obj/structure/platform{
+ dir = 4;
+ layer = 2.7
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
+ },
+/area/golden_arrow/motor_pool)
+"asD" = (
+/obj/structure/largecrate/supply/motiondetectors,
+/obj/structure/largecrate/supply/explosives/grenades/less{
+ icon_state = "case";
+ pixel_y = 10
+ },
+/obj/item/ammo_box/magazine/mk1{
+ layer = 3.1;
+ pixel_y = 14;
+ pixel_x = -2
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/platoonarmory)
+"asE" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/dorms)
+"asJ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/motor_pool)
+"asK" = (
+/obj/effect/landmark/start/marine/leader/alpha,
+/obj/effect/landmark/late_join/alpha,
+/obj/effect/landmark/late_join,
+/turf/open/floor/almayer/edge{
+ dir = 6
+ },
+/area/golden_arrow/cryo_cells)
+"asL" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
+ },
+/area/golden_arrow/cryo_cells)
+"asP" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ layer = 3.3
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/effect/decal/cleanable/blood/oil,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"asS" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
+ },
+/area/golden_arrow/cryo_cells)
+"asU" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "2-8"
+ },
+/turf/open/floor/almayer/edge{
+ dir = 4
+ },
+/area/golden_arrow/prep_hallway)
+"asV" = (
+/obj/structure/prop/almayer/computers/sensor_computer1{
+ pixel_y = 15;
+ density = 0;
+ pixel_x = 5
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/bed/chair/office/dark{
+ dir = 1;
+ layer = 3.1
+ },
+/obj/structure/barricade/handrail{
+ dir = 8
+ },
+/obj/structure/machinery/door_control{
+ id = "lowervehiclebay1";
+ needs_power = 0;
+ pixel_y = 11;
+ name = "lowervehiclebay1";
+ pixel_x = -4
+ },
+/obj/structure/machinery/door_control{
+ id = "lowervehiclebay2";
+ needs_power = 0;
+ pixel_y = 11;
+ name = "lowervehiclebay2";
+ pixel_x = 15
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/motor_pool)
+"asY" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"atb" = (
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/golden_arrow/hangar)
+"atc" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/bed/chair/comfy{
+ buckling_y = 2;
+ dir = 8;
+ pixel_y = 2
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/cryo_cells)
+"ate" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/supply)
+"atf" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1;
+ pixel_x = 1
+ },
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 1
+ },
+/area/golden_arrow/hangar)
+"ati" = (
+/turf/open/floor/almayer/edge/smooth/corner,
+/area/golden_arrow/supply)
+"atj" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/door/poddoor/railing{
+ id = "garrow_vehicle_elevator_two"
+ },
+/turf/open/floor/almayer{
+ icon_state = "black";
+ dir = 1
+ },
+/area/golden_arrow/vehicle_shuttle/two/upper)
+"atk" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/door/poddoor/railing{
+ id = "garrow_vehicle_elevator_one"
+ },
+/turf/open/floor/almayer{
+ icon_state = "black";
+ dir = 1
+ },
+/area/golden_arrow/vehicle_shuttle/upper)
+"atm" = (
+/turf/open/floor/almayer/edge{
+ dir = 9
+ },
+/area/golden_arrow/cryo_cells)
+"ato" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/soap/deluxe{
+ pixel_x = -7;
+ pixel_y = 10
+ },
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/cryo_cells)
+"atq" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{
+ name = "\improper Assembly Room"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/briefing)
+"atv" = (
+/obj/effect/decal/cleanable/blood/oil,
+/obj/structure/closet/coffin/woodencrate{
+ name = "gym equipment"
+ },
+/obj/item/clothing/gloves/boxing,
+/obj/item/clothing/gloves/boxing/blue,
+/obj/item/clothing/gloves/boxing/green,
+/obj/item/clothing/gloves/boxing/yellow,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/hangar)
+"atw" = (
+/obj/structure/machinery/light/double/blue{
+ dir = 4;
+ light_color = "#dae2ff"
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
+ },
+/area/golden_arrow/hangar)
+"aty" = (
+/obj/structure/machinery/power/terminal{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/plating,
+/area/golden_arrow/engineering)
+"atz" = (
+/obj/structure/platform_decoration{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/motor_pool)
+"atA" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ layer = 2.5;
+ pixel_y = 1
+ },
+/obj/effect/decal/strata_decals/grime/grime1{
+ dir = 4
+ },
+/obj/structure/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"atD" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"atE" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
+ },
+/area/golden_arrow/motor_pool)
+"atF" = (
+/obj/structure/machinery/light/small/blue{
+ dir = 8;
+ light_color = "#dae2ff";
+ light_power = 0.5
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
+ },
+/area/golden_arrow/motor_pool)
+"atG" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"atH" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
+ },
+/area/golden_arrow/hangar)
+"atI" = (
+/obj/structure/barricade/handrail{
+ dir = 8
+ },
+/turf/open/floor/almayer/edge{
+ dir = 8
+ },
+/area/golden_arrow/dorms)
+"atM" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/golden_arrow/cryo_cells)
+"atN" = (
+/obj/structure/machinery/computer/crew/alt{
+ dir = 4;
+ pixel_x = -10
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-4"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/cryo_cells)
+"atR" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/bed/chair,
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"atW" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/bed{
+ can_buckle = 0;
+ desc = "A lightweight support lattice.";
+ icon = 'icons/obj/structures/structures.dmi';
+ icon_state = "latticefull";
+ layer = 2.1;
+ name = "lattice"
+ },
+/turf/open/floor/plating,
+/area/golden_arrow/hangar)
+"atY" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "2-8"
+ },
+/turf/open/floor/almayer/edge{
+ dir = 1
+ },
+/area/golden_arrow/prep_hallway)
+"atZ" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"auc" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 10
+ },
+/area/golden_arrow/supply)
+"aue" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/motor_pool)
+"aug" = (
+/obj/structure/machinery/autodoc_console{
+ pixel_y = 6
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ layer = 3.3;
+ pixel_x = -1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/sign/safety/autodoc{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/golden_arrow/medical)
+"auh" = (
+/turf/closed/wall/almayer/outer,
+/area/golden_arrow/prep_hallway)
+"auk" = (
+/turf/open/floor/almayer,
+/area/golden_arrow/platoon_commander_rooms)
+"aum" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/cargo_container/wy/mid{
+ pixel_y = -17;
+ opacity = 0;
+ layer = 2.9
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/hangar)
+"aun" = (
+/obj/structure/pipes/vents/pump{
+ dir = 4
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
+ },
+/area/golden_arrow/platoonprep)
+"aup" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/pipes/vents/pump{
+ dir = 8;
+ pixel_x = -16
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
+ },
+/area/golden_arrow/briefing)
+"aur" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/effect/decal/strata_decals/grime/grime3,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/golden_arrow/platoonarmory)
+"aus" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"auu" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 8
+ },
+/area/golden_arrow/supply)
+"auv" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/poddoor/almayer{
+ dir = 2;
+ name = "\improper Storage Bay Blast Door"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/hangar)
+"aux" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/golden_arrow/hangar)
+"auB" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/light/double/blue{
+ dir = 4;
+ light_color = "#dae2ff"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/hangar)
+"auD" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ layer = 3.3
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"auE" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/prep_hallway)
+"auG" = (
+/obj/structure/platform{
+ dir = 8;
+ layer = 2.7
+ },
+/obj/structure/stairs/perspective,
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/motor_pool)
+"auH" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/briefing)
+"auJ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S";
+ pixel_x = -8
+ },
+/obj/structure/machinery/light/double/blue{
+ light_color = "#dae2ff"
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/golden_arrow/medical)
+"auL" = (
+/obj/structure/machinery/camera/autoname/golden_arrow{
+ dir = 4
+ },
+/turf/open/floor/almayer/edge{
+ dir = 8
+ },
+/area/golden_arrow/prep_hallway)
+"auN" = (
+/obj/structure/largecrate/supply/medicine/medkits{
+ pixel_y = 9;
+ pixel_x = -11
+ },
+/obj/structure/largecrate/supply/medicine/medkits{
+ pixel_y = 9;
+ pixel_x = 14
+ },
+/obj/structure/largecrate/supply/medicine/medkits{
+ pixel_y = 24;
+ pixel_x = 8;
+ layer = 3.1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/hangar)
+"auO" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/hangar)
+"auP" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/hangar)
+"auQ" = (
+/obj/structure/machinery/door/poddoor/almayer{
+ dir = 4;
+ name = "\improper Storage Bay Three Blast Door";
+ id = "cargobay3"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/hangar)
+"auT" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/effect/decal/cleanable/blood/oil,
+/obj/structure/largecrate/random/case/small,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/hangar)
+"auU" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning"
+ },
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/platoonprep)
+"auV" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/machinery/light/double/blue{
+ dir = 8;
+ light_color = "#dae2ff"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/cryo_cells)
+"avb" = (
+/turf/closed/wall/almayer/outer,
+/area/golden_arrow/dorms)
+"avc" = (
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
+ },
+/area/golden_arrow/supply)
+"avd" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
+ },
+/area/golden_arrow/hangar)
+"ave" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/golden_arrow/cryo_cells)
+"avh" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "2-8"
+ },
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/hangar)
+"avi" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/light/double/blue{
+ dir = 8;
+ light_color = "#dae2ff"
+ },
+/turf/open/floor/almayer/edge{
+ dir = 8
+ },
+/area/golden_arrow/prep_hallway)
+"avj" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge/smooth/endcap_left{
+ dir = 8
+ },
+/area/golden_arrow/cryo_cells)
+"avl" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"avq" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/hangar)
+"avr" = (
+/obj/item/reagent_container/food/drinks/milk{
+ pixel_y = 10
+ },
+/obj/item/reagent_container/food/drinks/milk{
+ pixel_x = 6;
+ pixel_y = 8
+ },
+/obj/item/reagent_container/food/drinks/milk{
+ pixel_x = 5
+ },
+/obj/item/reagent_container/food/drinks/milk,
+/obj/structure/closet/secure_closet{
+ icon_broken = "fridgebroken";
+ icon_closed = "fridge";
+ icon_locked = "fridge1";
+ icon_off = "fridge1";
+ icon_opened = "fridgeopen";
+ icon_state = "fridge1";
+ name = "beverage fridge"
+ },
+/turf/open/floor/almayer/edge/smooth/endcap_left{
+ dir = 8
+ },
+/area/golden_arrow/cryo_cells)
+"avs" = (
+/turf/open/floor/almayer/edge{
+ dir = 4
+ },
+/area/golden_arrow/platoonarmory)
+"avw" = (
+/obj/structure/machinery/cm_vending/clothing/synth/snowflake,
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/golden_arrow/synthcloset)
+"avA" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ layer = 3.3
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E"
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
+ },
+/area/golden_arrow/hangar)
+"avB" = (
+/obj/structure/machinery/light/double/blue{
+ dir = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
+ },
+/area/golden_arrow/supply)
+"avC" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/platoon_commander_rooms)
+"avE" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/cryo_cells)
+"avH" = (
+/obj/structure/surface/rack{
+ pixel_y = 19
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/item/stack/medical/ointment{
+ pixel_y = 34;
+ pixel_x = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/golden_arrow/cryo_cells)
+"avI" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/golden_arrow/medical)
+"avJ" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/closet/crate/trashcart{
+ pixel_y = 11
+ },
+/obj/item/prop/colony/usedbandage,
+/obj/item/prop/colony/usedbandage{
+ dir = 4
+ },
+/obj/item/prop/colony/usedbandage{
+ dir = 6;
+ pixel_y = 6
+ },
+/obj/item/prop/colony/usedbandage{
+ dir = 10;
+ pixel_y = 13
+ },
+/obj/item/storage/pill_bottle,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/golden_arrow/medical)
+"avL" = (
+/obj/structure/machinery/landinglight/ds1{
+ dir = 4
+ },
+/obj/structure/machinery/floodlight/landing/floor{
+ color = "#dae2ff";
+ light_color = "#dae2ff"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"avM" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
+ },
+/area/golden_arrow/hangar)
+"avO" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ dir = 2;
+ name = "\improper Hangar Lockdown Blast Door";
+ id = "hangarlockdownwest"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/prep_hallway)
+"avT" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 8;
+ id = "garrow_vehicle_elevator_one"
+ },
+/turf/open/floor/almayer{
+ icon_state = "black";
+ dir = 8
+ },
+/area/golden_arrow/vehicle_shuttle/upper)
+"avU" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 4;
+ id = "squadarmory";
+ name = "\improper Gear Lockers"
+ },
+/turf/open/floor/almayer/edge/smooth/endcap_right{
+ dir = 4
+ },
+/area/golden_arrow/platoonprep)
+"avV" = (
+/obj/structure/blocker/invisible_wall,
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/hangar)
+"avW" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/structure/bed/chair/comfy{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/golden_arrow/cryo_cells)
+"avX" = (
+/obj/structure/largecrate/supply/ammo{
+ name = "sentry crate";
+ fill_from_loc = 1
+ },
+/obj/item/ammo_magazine/sentry{
+ layer = 3.01
+ },
+/obj/item/defenses/handheld/sentry,
+/turf/open/floor/almayer,
+/area/golden_arrow/platoonarmory)
+"avY" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/item/tool/wirecutters{
+ pixel_x = -8;
+ pixel_y = 18
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
+ },
+/area/golden_arrow/hangar)
+"awa" = (
+/turf/open/floor/almayer/edge{
+ dir = 4
+ },
+/area/golden_arrow/supply)
+"awb" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/effect/decal/siding{
+ icon_state = "siding8"
+ },
+/turf/open/floor/plating,
+/area/golden_arrow/hangar)
+"awc" = (
+/obj/structure/surface/table/almayer,
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/hangar)
+"awf" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/golden_arrow/medical)
+"awk" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning";
+ dir = 4
+ },
+/turf/open/floor/almayer/edge{
+ dir = 4
+ },
+/area/golden_arrow/dorms)
+"awl" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/motor_pool)
+"awn" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"awo" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
+/obj/structure/machinery/light/double/blue{
+ light_color = "#dae2ff"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"awp" = (
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/golden_arrow/motor_pool)
+"awq" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 8
+ },
+/area/golden_arrow/hangar)
+"aws" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"awt" = (
+/turf/open/floor/almayer/edge/smooth{
+ dir = 6
+ },
+/area/golden_arrow/platoonprep)
+"awv" = (
+/obj/structure/barricade/handrail,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer/edge/smooth/corner,
+/area/golden_arrow/supply)
+"aww" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/platoonprep)
+"awx" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"awz" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/platoonprep)
+"awA" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "2-4"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"awD" = (
+/obj/structure/machinery/door/airlock/almayer/generic{
+ dir = 1;
+ name = "Bathroom"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/cryo_cells)
+"awI" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 2
+ },
+/obj/structure/machinery/light/double/blue{
+ dir = 8;
+ light_color = "#dae2ff"
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/cryo_cells)
+"awK" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-8"
+ },
+/turf/open/floor/almayer/edge{
+ dir = 8
+ },
+/area/golden_arrow/shared_office)
+"awL" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/briefing)
+"awM" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/weapon/gun/rifle/m4ra/pve{
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/platoonprep)
+"awN" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/supply)
+"awQ" = (
+/turf/open/floor/almayer/edge{
+ dir = 8
+ },
+/area/golden_arrow/platoonarmory)
+"awR" = (
+/obj/structure/machinery/light/double/blue{
+ dir = 8;
+ light_color = "#dae2ff"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/platoonprep)
+"awS" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/cryo_cells)
+"awT" = (
+/turf/open/floor/almayer/uscm{
+ icon_state = "logo_directional1";
+ dir = 6
+ },
+/area/golden_arrow/hangar)
+"awW" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/cryo_cells)
+"awZ" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/hangar)
+"axa" = (
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ dir = 2;
+ name = "\improper Hangar Lockdown Blast Door"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/hangar)
+"axb" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/landinglight/ds1/delaytwo{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"axd" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow";
+ dir = 8
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
+ },
+/area/golden_arrow/motor_pool)
+"axe" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out"
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"axf" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/golden_arrow/dorms)
+"axg" = (
+/obj/structure/machinery/prop{
+ density = 1;
+ icon_state = "pipe_d";
+ name = "refueling pump";
+ desc = "A pump used for refueling the dropship.";
+ pixel_y = -5;
+ layer = 2.7
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"axh" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/item/storage/box/bodybags{
+ pixel_y = 11;
+ pixel_x = -5
+ },
+/obj/item/storage/box/bodybags{
+ pixel_y = 3;
+ pixel_x = -2
+ },
+/obj/item/reagent_container/spray/cleaner{
+ pixel_y = 18;
+ pixel_x = 10
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/golden_arrow/medical)
+"axj" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "closed";
+ icon = 'icons/obj/structures/machinery/bolt_target.dmi';
+ name = "non-functional maintenance airlock"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"axk" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ layer = 3.3;
+ pixel_x = -1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
+ },
+/area/golden_arrow/hangar)
+"axl" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"axm" = (
+/turf/open/floor/almayer{
+ icon_state = "plating_striped"
+ },
+/area/golden_arrow/engineering)
+"axn" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/obj/structure/machinery/floodlight/landing/floor{
+ color = "#dae2ff";
+ light_color = "#dae2ff"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"axo" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/largecrate/random/case/double{
+ pixel_y = 11;
+ layer = 3.1;
+ pixel_x = -5
+ },
+/obj/structure/largecrate/random/case/double{
+ pixel_y = -1;
+ layer = 3.1;
+ pixel_x = -5
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/hangar)
+"axq" = (
+/obj/structure/closet/secure_closet/smartgunner{
+ req_access_txt = "14;39";
+ req_one_access = list();
+ name = "squad one smartgunner locker"
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/platoonprep)
+"axr" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/effect/decal/strata_decals/grime/grime2{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"axs" = (
+/turf/open/floor/almayer/uscm{
+ icon_state = "logo_directional1"
+ },
+/area/golden_arrow/hangar)
+"axt" = (
+/obj/effect/decal/strata_decals/grime/grime1{
+ dir = 1
+ },
+/obj/effect/decal/strata_decals/grime/grime1{
+ dir = 1
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ icon = 'icons/obj/structures/props/almayer_props.dmi';
+ icon_state = "wallpipe_2";
+ pixel_y = 22;
+ pixel_x = 6
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ icon = 'icons/obj/structures/props/almayer_props.dmi';
+ icon_state = "wallpipe_2";
+ pixel_y = 22;
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ icon = 'icons/obj/structures/props/almayer_props.dmi';
+ icon_state = "wallpipe_2";
+ pixel_x = 6;
+ pixel_y = -1
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ icon = 'icons/obj/structures/props/almayer_props.dmi';
+ icon_state = "wallpipe_2";
+ pixel_y = -1;
+ pixel_x = 12
+ },
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/prep_hallway)
+"axu" = (
+/obj/structure/prop{
+ name = "\improper uncomfy case";
+ desc = "A regular case you'd sit on. The label says it's full of steel sheets. Probably empty now.";
+ icon_state = "case";
+ icon = 'icons/obj/structures/crates.dmi';
+ can_buckle = 1;
+ layer = 3.6
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/hangar)
+"axv" = (
+/obj/structure/machinery/door_control{
+ id = "cargobaylocks";
+ needs_power = 0;
+ pixel_y = 28
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 6
+ },
+/area/golden_arrow/supply)
+"axw" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"axx" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
+ },
+/area/golden_arrow/hangar)
+"axB" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/prep_hallway)
+"axC" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 4;
+ id = "garrow_vehicle_elevator_one"
+ },
+/turf/open/floor/almayer{
+ icon_state = "black";
+ dir = 4
+ },
+/area/golden_arrow/vehicle_shuttle/upper)
+"axD" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/landinglight/ds1/delayone{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"axE" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"axF" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ icon = 'icons/obj/structures/props/almayer_props.dmi';
+ icon_state = "wallpipe_2";
+ pixel_y = 22;
+ pixel_x = 6
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ icon = 'icons/obj/structures/props/almayer_props.dmi';
+ icon_state = "wallpipe_2";
+ pixel_y = 22;
+ pixel_x = 12
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/prep_hallway)
+"axG" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ layer = 3.3;
+ pixel_x = -1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
+ },
+/area/golden_arrow/hangar)
+"axH" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"axK" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/cryo_cells)
+"axL" = (
+/obj/effect/landmark/start/marine/smartgunner/alpha,
+/obj/effect/landmark/late_join/alpha,
+/obj/effect/landmark/late_join,
+/turf/open/floor/almayer/edge{
+ dir = 4
+ },
+/area/golden_arrow/cryo_cells)
+"axM" = (
+/obj/structure/machinery/light/double/blue{
+ light_color = "#dae2ff"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/platoon_commander_rooms)
+"axN" = (
+/obj/effect/landmark/observer_start,
+/turf/open/floor/almayer,
+/area/golden_arrow/cryo_cells)
+"axO" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/recharger{
+ pixel_y = -10;
+ pixel_x = 5
+ },
+/obj/item/smartgun_battery{
+ pixel_x = 4;
+ pixel_y = -5
+ },
+/obj/item/prop/magazine{
+ icon_state = "poster8";
+ name = "Soldier Of Fortune: Issue March 2182";
+ desc = "A copy of Soldier of Fortune magazine. On the cover is a stylized imagine of a motion tracker in use, with the headline 'Combat Awareness in the 22nd Century'. The article covers the advancement in sensor technology that has made combat between peer nations like the UA and UPP increasingly lethal to those on the ground. Flipping through the magazine you see article titles such as 'Arsenal: The M2C Heavy Machinegun', and 'The Future War: advancements in Cyberdyne Systems combat AI'. At the back of the magazine is an extensive list of advertisements for private contractors and wares.";
+ pixel_y = 15;
+ pixel_x = 7
+ },
+/obj/item/clipboard{
+ pixel_x = -7;
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/platoonprep)
+"axQ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"axS" = (
+/turf/closed/wall/almayer/outer,
+/area/golden_arrow/motor_pool)
+"axT" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/obj/structure/machinery/gear{
+ id = "garrow_vehicle_elevator_two"
+ },
+/turf/open/floor/almayer{
+ icon_state = "blackcorner"
+ },
+/area/golden_arrow/vehicle_shuttle/two/upper)
+"axU" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/blocker/invisible_wall,
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/hangar)
+"axV" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/effect/decal/strata_decals/grime/grime1,
+/obj/effect/decal/strata_decals/grime/grime4,
+/obj/structure/pipes/vents/pump{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"axW" = (
+/obj/structure/barricade/handrail{
+ dir = 8
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/prop/magazine/dirty/torn{
+ pixel_x = 2;
+ pixel_y = 6
+ },
+/obj/item/trash/cigbutt{
+ pixel_y = 10;
+ pixel_x = -7
+ },
+/obj/item/trash/eat{
+ pixel_x = 10
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"axX" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/motor_pool)
+"axY" = (
+/obj/structure/pipes/vents/scrubber,
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"aya" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/camera{
+ pixel_y = 9;
+ pixel_x = -7
+ },
+/obj/item/device/camera_film{
+ pixel_y = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/dorms)
+"ayd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/golden_arrow/motor_pool)
+"ayf" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/golden_arrow/medical)
+"ayi" = (
+/obj/structure/closet/secure_closet/smartgunner{
+ req_access_txt = "14;40";
+ req_one_access = list();
+ name = "squad two smartgunner locker"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/platoonprep)
+"ayj" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/golden_arrow/motor_pool)
+"ayk" = (
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 8;
+ id = "garrow_vehicle_elevator_one"
+ },
+/turf/open/floor/almayer{
+ icon_state = "black";
+ dir = 8
+ },
+/area/golden_arrow/vehicle_shuttle/upper)
+"ayl" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ layer = 3.3;
+ pixel_x = -1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-8"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"ayn" = (
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"ayo" = (
+/obj/structure/machinery/disposal{
+ density = 0;
+ layer = 3.2;
+ pixel_y = 16
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/almayer,
+/area/golden_arrow/motor_pool)
+"ayp" = (
+/obj/structure/bed{
+ can_buckle = 0
+ },
+/obj/structure/bed{
+ buckling_y = 13;
+ layer = 3.5;
+ pixel_y = 13
+ },
+/obj/item/bedsheet/brown{
+ layer = 3.4
+ },
+/obj/item/bedsheet/brown{
+ pixel_y = 13
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge{
+ dir = 1
+ },
+/area/golden_arrow/dorms)
+"ayr" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/golden_arrow/medical)
+"ayu" = (
+/obj/structure/machinery/camera/autoname/golden_arrow{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/engineering)
+"ayv" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/golden_arrow/cryo_cells)
+"ayw" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning";
+ dir = 1
+ },
+/turf/open/floor/almayer/edge{
+ dir = 1
+ },
+/area/golden_arrow/prep_hallway)
+"ayx" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/obj/effect/decal/cleanable/blood/oil,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"ayy" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/sign/safety/storage{
+ pixel_x = -18;
+ pixel_y = -7
+ },
+/obj/structure/sign/safety/one{
+ pixel_x = -18;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
+ },
+/area/golden_arrow/platoonprep)
+"ayz" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/golden_arrow/cryo_cells)
+"ayA" = (
+/obj/structure/machinery/landinglight/ds1/delayone,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"ayC" = (
+/obj/vehicle/powerloader{
+ dir = 4
+ },
+/obj/structure/machinery/light/double/blue{
+ dir = 8;
+ light_color = "#dae2ff"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/hangar)
+"ayD" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 4
+ },
+/area/golden_arrow/hangar)
+"ayE" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/barricade/handrail{
+ dir = 8
+ },
+/obj/structure/prop/almayer/ship_memorial/golden_arrow{
+ layer = 2.9;
+ pixel_y = 33;
+ pixel_x = 16
+ },
+/obj/item/reagent_container/food/snacks/grown/poppy{
+ pixel_x = 4;
+ pixel_y = 6;
+ layer = 3.03
+ },
+/obj/item/tool/candle{
+ pixel_y = 13;
+ pixel_x = -6;
+ layer = 3.03
+ },
+/obj/item/ashtray/plastic{
+ pixel_y = 8;
+ pixel_x = -7
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/platoonprep)
+"ayG" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge/smooth/corner,
+/area/golden_arrow/motor_pool)
+"ayH" = (
+/turf/open/floor/almayer/edge/smooth{
+ dir = 5
+ },
+/area/golden_arrow/platoonprep)
+"ayI" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning"
+ },
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/platoonprep)
+"ayJ" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/prep_hallway)
+"ayL" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/shared_office)
+"ayM" = (
+/obj/structure/platform{
+ dir = 8;
+ layer = 2.7
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
+ },
+/area/golden_arrow/motor_pool)
+"ayN" = (
+/obj/structure/ship_ammo/rocket/widowmaker{
+ pixel_y = 13
+ },
+/obj/structure/ship_ammo/rocket/widowmaker,
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/hangar)
+"ayO" = (
+/obj/structure/barricade/handrail{
+ layer = 3.7;
+ pixel_y = -9
+ },
+/obj/structure/barricade/handrail{
+ dir = 1;
+ layer = 3.01;
+ pixel_y = 13
+ },
+/obj/vehicle/powerloader{
+ dir = 8
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/golden_arrow/motor_pool)
+"ayP" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow"
+ },
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/supply)
+"ayS" = (
+/turf/open/floor/plating,
+/area/golden_arrow/engineering)
+"ayU" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/hangar)
+"ayV" = (
+/obj/structure/machinery/door/poddoor/almayer{
+ dir = 4;
+ name = "\improper Storage Bay Four Blast Door";
+ id = "cargobay4"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/hangar)
+"ayX" = (
+/turf/open/floor/plating,
+/area/golden_arrow/hangar)
+"ayY" = (
+/obj/structure/sign/safety/hazard{
+ pixel_x = -20;
+ pixel_y = -7
+ },
+/obj/structure/sign/safety/bulkhead_door{
+ pixel_y = 7;
+ pixel_x = -20
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow"
+ },
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/prep_hallway)
+"ayZ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S";
+ layer = 3.3
+ },
+/turf/open/floor/almayer/edge/smooth/endcap_right,
+/area/golden_arrow/prep_hallway)
+"aza" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"azb" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"azc" = (
+/obj/effect/decal/strata_decals/grime/grime1{
+ dir = 8
+ },
+/obj/structure/sign/safety/storage{
+ pixel_x = 33
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow"
+ },
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/prep_hallway)
+"azd" = (
+/obj/structure/machinery/light/double/blue{
+ dir = 4;
+ light_color = "#dae2ff"
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge{
+ dir = 4
+ },
+/area/golden_arrow/cryo_cells)
+"aze" = (
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ name = "\improper Hangar Lockdown Blast Door";
+ id = "cargolockswest";
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/supply)
+"azh" = (
+/obj/effect/landmark/start/marine/alpha,
+/obj/effect/landmark/late_join/alpha,
+/obj/effect/landmark/late_join,
+/turf/open/floor/almayer/edge{
+ dir = 6
+ },
+/area/golden_arrow/cryo_cells)
+"azi" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/platoon_commander_rooms)
+"azl" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/landinglight/ds1{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"azn" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/obj/structure/machinery/light/double/blue{
+ light_color = "#dae2ff"
+ },
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/prep_hallway)
+"azo" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow";
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 2;
+ id = "garrow_elevator_lower"
+ },
+/turf/open/floor/almayer/edge{
+ dir = 1
+ },
+/area/golden_arrow/cargo_shuttle/lower)
+"azp" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer,
+/area/golden_arrow/motor_pool)
+"azq" = (
+/obj/structure/machinery/shower{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/cryo_cells)
+"azr" = (
+/obj/item/hardpoint/primary/arc_frontalcannon{
+ pixel_y = -15;
+ pixel_x = -4;
+ anchored = 1
+ },
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 1
+ },
+/area/golden_arrow/motor_pool)
+"azs" = (
+/turf/closed/wall/almayer/outer,
+/area/golden_arrow/briefing)
+"azu" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer/edge{
+ dir = 4
+ },
+/area/golden_arrow/platoonarmory)
+"azv" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
+ },
+/area/golden_arrow/cryo_cells)
+"azw" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/golden_arrow/platoonprep)
+"azx" = (
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/golden_arrow/cryo_cells)
+"azz" = (
+/obj/structure/surface/table/almayer,
+/obj/item/prop/almayer/flight_recorder{
+ pixel_y = 3
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
/area/golden_arrow/hangar)
-"jJ" = (
+"azA" = (
+/obj/structure/platform_decoration,
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/closet/hydrant{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 4
+ },
+/area/golden_arrow/motor_pool)
+"azB" = (
+/obj/structure/closet/crate/trashcart{
+ pixel_y = 11
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/sign/safety/coffee{
+ pixel_x = 13;
+ pixel_y = 29
+ },
+/obj/item/trash/candy,
+/obj/item/trash/burger,
+/obj/item/trash/cigbutt,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/cryo_cells)
+"azD" = (
/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"azE" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 8
+ },
+/area/golden_arrow/briefing)
+"azF" = (
/obj/structure/cable/heavyduty{
icon_state = "1-2"
},
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/hangar)
+"azG" = (
+/obj/structure/machinery/vending/cigarette{
+ pixel_x = 4;
+ pixel_y = 14
+ },
/turf/open/floor/almayer{
- icon_state = "cargo_arrow"
+ icon_state = "dark_sterile"
},
-/area/golden_arrow/prep_hallway)
-"jK" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "2-4"
+/area/golden_arrow/cryo_cells)
+"azJ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
},
-/obj/structure/bed/chair,
-/turf/open/floor/almayer,
-/area/golden_arrow/briefing)
-"jL" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/landinglight/ds1/delaytwo{
- dir = 4
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 2
+ },
+/obj/structure/machinery/light/double/blue{
+ dir = 8;
+ light_color = "#dae2ff"
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer{
icon_state = "plate"
},
+/area/golden_arrow/cryo_cells)
+"azK" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 8
+ },
+/obj/structure/machinery/door/poddoor/railing{
+ id = "garrow_vehicle_elevator_two";
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "black"
+ },
+/area/golden_arrow/vehicle_shuttle/two/upper)
+"azL" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
/area/golden_arrow/hangar)
-"jM" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
+"azM" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/pipes/vents/pump{
+/obj/item/paper_bin/uscm{
+ pixel_x = -6;
+ pixel_y = 7
+ },
+/obj/item/tool/pen{
+ pixel_x = -7;
+ pixel_y = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/golden_arrow/medical)
+"azN" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/hangar)
+"azO" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/landinglight/ds1/delaythree{
dir = 4
},
-/turf/open/floor/almayer,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
/area/golden_arrow/hangar)
-"jN" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+"azQ" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 1
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"jP" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/firealarm{
- dir = 4;
- pixel_x = 21
+"azR" = (
+/obj/structure/surface/table/almayer,
+/obj/item/prop/almayer/comp_open{
+ pixel_y = 9;
+ pixel_x = -6
},
/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"jQ" = (
-/obj/structure/ship_ammo/minirocket,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/ship_ammo/minirocket{
- layer = 3.1;
- pixel_y = 9
+/area/golden_arrow/hangar)
+"azS" = (
+/obj/structure/machinery/door/poddoor/almayer{
+ dir = 2;
+ name = "\improper Storage Bay Blast Door"
},
/turf/open/floor/almayer{
- dir = 10;
- icon_state = "cargo"
+ icon_state = "test_floor4"
},
/area/golden_arrow/hangar)
-"jS" = (
-/obj/structure/shuttle/part/dropship1/transparent/right_inner_bottom_wing{
- name = "\improper Tripoli"
+"azT" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 8
+ },
+/area/golden_arrow/cryo_cells)
+"azU" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ icon = 'icons/obj/structures/props/almayer_props.dmi';
+ icon_state = "wallpipe_2";
+ pixel_y = 22;
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ icon = 'icons/obj/structures/props/almayer_props.dmi';
+ icon_state = "wallpipe_2";
+ pixel_y = 22;
+ pixel_x = 6
+ },
+/turf/open/floor/almayer/edge{
+ dir = 1
+ },
+/area/golden_arrow/prep_hallway)
+"azV" = (
+/obj/structure/bed{
+ can_buckle = 0
+ },
+/obj/item/bedsheet/rd,
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/item/prop/magazine/book/theartofwar{
+ pixel_x = -1;
+ layer = 4.1
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/platoon_commander_rooms)
+"azW" = (
+/obj/structure/cargo_container/wy/left{
+ pixel_y = -17;
+ opacity = 0;
+ layer = 2.9
},
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"jT" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
pixel_x = 1
},
-/obj/effect/decal/cleanable/dirt,
+/obj/item/toy/plush/therapy/red{
+ desc = "An unapproved bootleg copy of the patented Sergeant Huggs. Looks like he's seen better days.";
+ force = 15;
+ layer = 4.1;
+ name = "Discharged Huggs";
+ pixel_y = 32;
+ throwforce = 15;
+ pixel_x = 5
+ },
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"jU" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W";
- pixel_x = -1;
- pixel_y = 1
+"azZ" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"aAc" = (
+/obj/structure/sign/safety/bulkhead_door{
+ pixel_y = 27
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_x = 14;
+ pixel_y = 27
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 4;
+ icon_state = "cargo_arrow"
+ },
+/area/golden_arrow/hangar)
+"aAd" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1;
+ pixel_x = 1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 1
+ },
+/area/golden_arrow/hangar)
+"aAe" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/supply)
+"aAg" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
},
-/area/golden_arrow/cryo_cells)
-"jW" = (
-/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
/obj/structure/cable{
- icon_state = "4-8"
+ icon_state = "1-2"
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
+ },
+/area/golden_arrow/briefing)
+"aAh" = (
+/obj/effect/decal/strata_decals/grime/grime1{
+ dir = 8
+ },
+/obj/structure/machinery/camera/autoname/golden_arrow{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/golden_arrow/medical)
+"aAi" = (
+/obj/structure/sign/safety/bulkhead_door{
+ pixel_y = 38
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_x = 14;
+ pixel_y = 38
+ },
+/obj/structure/sign/safety/ammunition{
+ pixel_y = 26
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "cargo_arrow"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/cryo_cells)
-"jY" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/hangar)
-"kb" = (
-/turf/closed/wall/almayer,
/area/golden_arrow/hangar)
-"kc" = (
-/obj/structure/surface/table/almayer,
-/obj/item/prop/almayer/box{
- pixel_y = 9
+"aAj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/hangar)
-"ke" = (
-/obj/structure/machinery/power/smes/buildable,
-/obj/effect/decal/cleanable/cobweb2,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/area/golden_arrow/supply)
+"aAk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
},
-/area/golden_arrow/engineering)
-"kf" = (
-/obj/structure/shuttle/part/dropship1/transparent/right_outer_bottom_wing{
- name = "\improper Tripoli"
+/turf/open/floor/almayer{
+ icon_state = "mono"
},
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"kh" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/vents/pump{
+/area/golden_arrow/motor_pool)
+"aAl" = (
+/obj/structure/machinery/camera/autoname/golden_arrow{
dir = 8
},
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
},
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+/area/golden_arrow/platoonprep)
+"aAm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/briefing)
-"ki" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/hangar)
-"kj" = (
-/obj/structure/prop{
- color = "#b30000";
- icon = 'icons/obj/pipes/power_cond_white.dmi';
- icon_state = "4-5";
- name = "cable";
- pixel_x = 5
- },
-/turf/open/shuttle/dropship{
- icon_state = "rasputin14"
+/area/golden_arrow/supply)
+"aAn" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
},
+/obj/effect/decal/strata_decals/grime/grime2,
+/turf/open/floor/almayer/edge/smooth,
/area/golden_arrow/hangar)
-"kl" = (
-/obj/structure/shuttle/part/dropship1/nose_front_right{
- name = "\improper Tripoli"
+"aAo" = (
+/obj/effect/decal/strata_decals/grime/grime3,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"kn" = (
-/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/prep_hallway)
+"aAp" = (
/obj/effect/decal/warning_stripes{
icon_state = "SE-out";
pixel_x = 1
},
-/turf/closed/wall/almayer/outer,
-/area/golden_arrow/platoonarmory)
-"kq" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/firealarm{
- dir = 4;
- pixel_x = 21
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/cryo_cells)
-"kr" = (
-/obj/item/tool/crowbar/red{
- pixel_x = -13;
- pixel_y = -13
- },
-/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"ku" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W";
- layer = 3.3
- },
-/obj/structure/pipes/vents/pump{
- dir = 8
+"aAr" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 4;
+ id = "squadarmory";
+ name = "\improper Gear Lockers"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"kw" = (
-/obj/structure/cable{
- icon_state = "4-8"
+/turf/open/floor/almayer/edge/smooth/endcap_left{
+ dir = 4
},
-/obj/structure/machinery/computer/crew/alt{
+/area/golden_arrow/platoonprep)
+"aAs" = (
+/obj/structure/pipes/vents/pump,
+/obj/structure/disposalpipe/segment{
dir = 4;
- pixel_x = -10
+ icon_state = "pipe-c"
},
/turf/open/floor/almayer,
/area/golden_arrow/cryo_cells)
-"kz" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/prop{
- density = 1;
- desc = "A pump used for refueling the dropship.";
- icon_state = "pipe_d";
- layer = 2.7;
- name = "refueling pump";
- pixel_x = -4;
- pixel_y = -5
- },
-/obj/effect/decal/siding{
- icon_state = "siding2"
- },
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"kB" = (
+"aAt" = (
/obj/effect/decal/warning_stripes{
icon_state = "SW-out";
pixel_x = -1
},
/obj/effect/decal/warning_stripes{
icon_state = "NW-out";
- pixel_x = -1;
- pixel_y = 2
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/camera/autoname/golden_arrow{
- dir = 8
+ pixel_y = 2;
+ pixel_x = -1
},
-/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/cryo_cells)
-"kG" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
+"aAu" = (
+/obj/structure/largecrate/supply/ammo/m41amk1,
+/obj/structure/largecrate/supply/ammo/m41amk1{
+ pixel_y = 10
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
+ },
+/area/golden_arrow/hangar)
+"aAv" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/hangar)
-"kI" = (
-/obj/structure/bed/chair{
- dir = 1
+/area/golden_arrow/cryo_cells)
+"aAy" = (
+/obj/structure/foamed_metal,
+/turf/open/floor/plating,
+/area/golden_arrow/platoon_commander_rooms)
+"aAz" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 2;
+ id = "garrow_vehicle_elevator_one"
},
-/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
- icon_state = "cargo"
+ icon_state = "black"
},
-/area/golden_arrow/briefing)
-"kL" = (
-/obj/structure/machinery/cryopod{
- layer = 3.1;
- pixel_y = 13
+/area/golden_arrow/vehicle_shuttle/upper)
+"aAA" = (
+/obj/structure/platform{
+ dir = 8;
+ layer = 2.7
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/cryo_cells)
-"kP" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/strata_decals/grime/grime2{
+/turf/open/floor/almayer/edge/smooth{
dir = 8
},
-/obj/structure/machinery/light{
+/area/golden_arrow/motor_pool)
+"aAB" = (
+/obj/vehicle/powerloader{
dir = 4
},
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"kQ" = (
-/obj/structure/pipes/vents/scrubber{
- dir = 1
+"aAC" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ layer = 3.3
},
/turf/open/floor/almayer,
-/area/golden_arrow/prep_hallway)
-"kS" = (
-/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
- dir = 1;
- name = "\improper Prep Lockers"
+/area/golden_arrow/hangar)
+"aAE" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow";
+ dir = 4
},
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- layer = 1.9
+/turf/open/floor/almayer/edge{
+ dir = 4
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/area/golden_arrow/motor_pool)
+"aAG" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
-/area/golden_arrow/platoonprep)
-"kT" = (
-/obj/structure/bed/chair/office/light{
- dir = 4
+/obj/structure/disposalpipe/segment{
+ dir = 1
},
-/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+/turf/open/floor/almayer,
+/area/golden_arrow/motor_pool)
+"aAH" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
},
-/area/golden_arrow/medical)
-"kU" = (
-/turf/closed/shuttle/midway{
- icon_state = "81";
- name = "\improper Tripoli"
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice3";
+ pixel_x = 16;
+ pixel_y = -15
},
-/area/golden_arrow/hangar)
-"kW" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice2";
+ pixel_x = 16;
+ pixel_y = 16
},
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+/obj/structure/pipes/vents/scrubber{
+ dir = 8
+ },
+/obj/structure/machinery/disposal{
+ density = 0;
+ layer = 3.2;
+ pixel_y = 16
},
-/obj/structure/machinery/light{
+/obj/structure/disposalpipe/trunk{
dir = 8
},
+/turf/open/floor/almayer/edge{
+ dir = 1
+ },
+/area/golden_arrow/dorms)
+"aAI" = (
+/obj/structure/closet/secure_closet/marine_personal{
+ pixel_x = 8;
+ job = "Smartgunner"
+ },
+/obj/structure/closet/secure_closet/marine_personal{
+ pixel_x = -7;
+ job = "Squad Sergeant"
+ },
/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+ icon_state = "plate"
},
-/area/golden_arrow/medical)
-"kX" = (
-/obj/structure/machinery/door/poddoor/almayer{
- dir = 4;
- id = "bay1door";
- name = "\improper Weapons Bay One Blast Door"
+/area/golden_arrow/cryo_cells)
+"aAJ" = (
+/obj/structure/machinery/landinglight/ds1{
+ dir = 8
},
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "plate"
},
/area/golden_arrow/hangar)
-"kY" = (
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
+"aAK" = (
+/obj/structure/machinery/cryopod,
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/cryo_cells)
+"aAO" = (
+/obj/structure/surface/table/almayer,
+/obj/item/prop/tableflag{
+ pixel_x = -9;
+ pixel_y = 2
},
-/obj/item/clothing/under/shorts/blue,
-/obj/item/clothing/under/shorts/blue,
-/obj/item/clothing/under/shorts/red,
-/obj/item/clothing/under/shorts/red,
-/obj/item/clothing/under/shorts/green,
-/obj/item/clothing/under/shorts/green,
-/obj/item/clothing/under/shorts/grey,
-/obj/item/clothing/under/shorts/grey,
-/obj/item/clothing/under/shorts/grey,
-/obj/item/clothing/under/shorts/grey,
-/obj/structure/closet/coffin/woodencrate{
- name = "gym equipment"
+/obj/item/folder/black{
+ icon_state = "folder_black_white";
+ pixel_y = 14;
+ pixel_x = 2
},
-/obj/item/clothing/under/shorts/grey,
-/obj/item/clothing/under/shorts/grey,
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/hangar)
-"ld" = (
-/turf/closed/shuttle/midway{
- icon_state = "83";
- name = "\improper Tripoli"
+/obj/item/reagent_container/food/drinks/cans/souto/lime{
+ pixel_y = 3;
+ pixel_x = 5
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/shared_office)
+"aAP" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning";
+ dir = 8
},
-/area/golden_arrow/hangar)
-"le" = (
-/obj/structure/machinery/light{
+/turf/open/floor/almayer/edge{
dir = 8
},
-/obj/effect/decal/cleanable/dirt,
+/area/golden_arrow/prep_hallway)
+"aAQ" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/faxmachine/uscm/command/capt{
+ pixel_y = 7
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/shared_office)
+"aAR" = (
+/obj/structure/closet/coffin/woodencrate,
+/obj/item/ammo_magazine/rifle/m4ra/pve,
+/obj/item/ammo_magazine/rifle/m4ra/pve,
+/obj/item/ammo_magazine/rifle/m4ra/pve,
+/obj/item/ammo_magazine/rifle/m4ra/pve,
+/obj/item/ammo_magazine/rifle/m4ra/pve,
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/hangar)
-"lg" = (
-/obj/structure/bed{
- can_buckle = 0
+/area/golden_arrow/platoonprep)
+"aAS" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
},
-/obj/structure/bed{
- buckling_y = 13;
- layer = 3.5;
- pixel_y = 13
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/item/bedsheet/brown{
- layer = 3.4
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer/edge/smooth{
+ dir = 9
},
-/obj/item/bedsheet/brown{
- pixel_y = 13
+/area/golden_arrow/platoon_commander_rooms)
+"aAT" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning";
+ dir = 1
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"lh" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge/smooth/corner,
+/area/golden_arrow/motor_pool)
+"aAU" = (
/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- pixel_y = 1
+ icon_state = "S"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 2
},
-/obj/structure/machinery/floodlight/landing/floor,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/hangar)
-"lj" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"lk" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/vehicle_spawner/apc_movie/fixed{
- dir = 8
+/area/golden_arrow/cryo_cells)
+"aAW" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ layer = 3.3
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/effect/decal/warning_stripes{
+ icon_state = "E"
},
-/area/golden_arrow/hangar)
-"lo" = (
-/turf/closed/shuttle/midway{
- icon_state = "47";
- name = "\improper Tripoli"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/hangar)
-"lp" = (
-/obj/structure/ship_ammo/rocket/widowmaker,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/almayer{
- icon_state = "cargo"
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
},
/area/golden_arrow/hangar)
-"lq" = (
-/obj/structure/bed/chair{
- dir = 1
+"aAZ" = (
+/obj/structure/surface/table/almayer,
+/obj/item/paper_bin/uscm{
+ pixel_x = -12;
+ pixel_y = 7
},
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/item/tool/pen{
+ pixel_x = -14;
+ pixel_y = 4
},
+/turf/open/floor/almayer,
+/area/golden_arrow/platoon_commander_rooms)
+"aBa" = (
/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 6
+ dir = 5
},
-/turf/open/floor/almayer{
- icon_state = "cargo"
+/obj/structure/cable/heavyduty{
+ icon_state = "1-4"
},
-/area/golden_arrow/briefing)
-"lu" = (
-/turf/open/floor/almayer{
- icon_state = "plate"
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/platoonarmory)
+"aBc" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"aBd" = (
+/obj/structure/machinery/light/double/blue{
+ light_color = "#dae2ff"
},
-/area/golden_arrow/hangar)
-"lv" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
-/obj/structure/machinery/door/poddoor/railing{
- dir = 2;
- id = "apcbayrailing1"
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/cryo_cells)
+"aBe" = (
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
},
+/area/golden_arrow/motor_pool)
+"aBg" = (
/turf/open/floor/almayer{
- icon_state = "black"
+ dir = 1;
+ icon_state = "cargo_arrow"
},
/area/golden_arrow/hangar)
-"lw" = (
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/dorms)
-"ly" = (
-/obj/effect/decal/cleanable/blood/oil,
-/obj/structure/largecrate/random/case{
- pixel_y = 11
+"aBi" = (
+/obj/structure/machinery/landinglight/ds1,
+/obj/structure/machinery/floodlight/landing/floor{
+ color = "#dae2ff";
+ light_color = "#dae2ff"
},
-/turf/open/shuttle/dropship{
- icon_state = "rasputin3"
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
/area/golden_arrow/hangar)
-"lB" = (
-/obj/effect/decal/cleanable/dirt,
+"aBj" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
/turf/open/floor/almayer{
- dir = 4;
icon_state = "cargo_arrow"
},
-/area/golden_arrow/dorms)
-"lE" = (
+/area/golden_arrow/hangar)
+"aBk" = (
+/turf/open/floor/almayer,
+/area/golden_arrow/cryo_cells)
+"aBm" = (
/obj/effect/decal/warning_stripes{
- icon_state = "S"
+ icon_state = "E";
+ pixel_x = 1
},
-/obj/structure/cable/heavyduty{
- icon_state = "1-4-8"
+/obj/structure/surface/table/almayer,
+/obj/item/tool/screwdriver{
+ pixel_y = 7;
+ pixel_x = -4;
+ layer = 3.03
+ },
+/obj/item/tool/wirecutters{
+ pixel_y = -7
},
/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"lF" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
+"aBn" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/camera/autoname/golden_arrow{
dir = 8
},
-/obj/structure/machinery/door/poddoor/railing{
- id = "apcbayrailing1"
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "black"
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2";
+ pixel_x = 2
},
-/area/golden_arrow/hangar)
-"lH" = (
-/obj/structure/pipes/vents/pump{
- dir = 8
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/platoon_commander_rooms)
+"aBo" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
},
-/obj/structure/machinery/door/poddoor/railing{
- dir = 2;
- id = "apcbayrailing1"
+/obj/item/stack/cable_coil{
+ pixel_x = 7
},
-/turf/open/floor/almayer{
- icon_state = "black"
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
},
/area/golden_arrow/hangar)
-"lJ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/secure_closet/squad_sergeant{
- name = "squad two sergeant locker";
- req_access_txt = "32;40";
- req_one_access = list()
+"aBp" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
},
-/area/golden_arrow/platoonprep)
-"lL" = (
-/obj/structure/sign/safety/bulkhead_door{
- pixel_y = 27
+/area/golden_arrow/platoon_commander_rooms)
+"aBq" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/sign/safety/hazard{
- pixel_x = 14;
- pixel_y = 27
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 1
},
-/turf/open/floor/almayer{
+/area/golden_arrow/cryo_cells)
+"aBr" = (
+/obj/structure/machinery/computer/station_alert{
dir = 8;
- icon_state = "cargo_arrow"
- },
-/area/golden_arrow/hangar)
-"lM" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/landinglight/ds1/delayone,
-/turf/open/floor/almayer{
- icon_state = "plate"
+ pixel_x = 15;
+ pixel_y = 2
},
-/area/golden_arrow/hangar)
-"lO" = (
-/obj/structure/shuttle/part/dropship1/transparent/outer_right_weapons{
- name = "\improper Tripoli"
+/obj/item/stool,
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
},
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"lQ" = (
-/obj/structure/barricade/handrail{
+/turf/open/floor/almayer,
+/area/golden_arrow/synthcloset)
+"aBt" = (
+/turf/open/floor/almayer/edge/smooth/corner{
dir = 4
},
-/obj/structure/barricade/handrail{
- dir = 8
+/area/golden_arrow/supply)
+"aBu" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ layer = 3.3
},
-/obj/structure/closet/secure_closet,
-/obj/structure/machinery/light,
-/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"lR" = (
/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- pixel_y = 1
+ icon_state = "SE-out"
},
-/obj/structure/machinery/gear{
- id = "supply_elevator_gear"
+/turf/open/floor/almayer/edge/smooth/endcap_left{
+ dir = 8
+ },
+/area/golden_arrow/hangar)
+"aBv" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor5"
},
-/area/golden_arrow/engineering)
-"lU" = (
-/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{
- req_one_access = null
+/area/golden_arrow/medical)
+"aBw" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
-/obj/structure/sign/safety/rewire{
- pixel_x = 12;
- pixel_y = 32
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/cryo_cells)
+"aBx" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{
+ name = "\improper Hypersleep Bay"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/cryo_cells)
+"aBz" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ layer = 2.5;
+ pixel_y = 1
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/engineering)
-"lV" = (
-/obj/structure/machinery/power/smes/buildable,
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "plate"
},
-/area/golden_arrow/engineering)
-"lY" = (
-/obj/structure/surface/table/reinforced/almayer_B,
-/obj/item/prop/tableflag/uscm{
- pixel_x = -8;
- pixel_y = -2
+/area/golden_arrow/hangar)
+"aBB" = (
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
},
-/obj/item/paper_bin/uscm{
+/area/golden_arrow/motor_pool)
+"aBD" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/item/reagent_container/food/drinks/coffeecup/wy{
+ desc = "A matte gray coffee mug bearing the Weyland-Yutani logo on its front. Looks like someone spat in it.";
+ name = "dip cup";
pixel_x = 5;
- pixel_y = 6
+ pixel_y = 7
},
/turf/open/floor/almayer,
-/area/golden_arrow/platoon_commander_rooms)
-"lZ" = (
-/obj/structure/machinery/floodlight/landing/floor,
-/obj/structure/machinery/landinglight/ds1/delayone{
- dir = 1
+/area/golden_arrow/cryo_cells)
+"aBE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
-/area/golden_arrow/hangar)
-"mc" = (
-/obj/structure/machinery/power/terminal{
- dir = 1
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
},
-/obj/structure/machinery/camera/autoname/golden_arrow{
+/turf/open/floor/almayer/edge/smooth{
dir = 8
},
-/turf/open/floor/plating,
-/area/golden_arrow/engineering)
-"mf" = (
+/area/golden_arrow/motor_pool)
+"aBG" = (
/obj/effect/decal/warning_stripes{
- icon_state = "S";
- pixel_y = 1
+ icon_state = "door_warning"
},
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "cargo_arrow"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/hangar)
-"mg" = (
-/turf/closed/shuttle/midway{
- icon_state = "48";
- name = "\improper Tripoli"
+/turf/open/floor/almayer{
+ icon_state = "mono"
},
-/area/golden_arrow/hangar)
-"mj" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"mk" = (
-/obj/structure/barricade/handrail{
- dir = 8
+/area/golden_arrow/motor_pool)
+"aBI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
-/obj/structure/surface/table/almayer,
-/obj/structure/machinery/recharger{
- pixel_y = -14
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/obj/item/ashtray/plastic{
- icon_state = "ashtray_full_bl";
- pixel_x = 9;
- pixel_y = 6
+/area/golden_arrow/supply)
+"aBK" = (
+/turf/open/floor/almayer/edge{
+ dir = 8
},
-/obj/item/trash/cigbutt{
- pixel_x = 4;
- pixel_y = 5
+/area/golden_arrow/prep_hallway)
+"aBL" = (
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ dir = 2;
+ name = "\improper Hangar Lockdown Blast Door";
+ id = "hangarlockdownnorth"
},
-/obj/item/trash/cigbutt{
- pixel_x = -4;
- pixel_y = 15
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"ml" = (
-/obj/structure/shuttle/part/dropship1/transparent/upper_left_wing{
- name = "\improper Tripoli"
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
/area/golden_arrow/hangar)
-"mp" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out";
- pixel_x = -1
- },
+"aBM" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 4;
+ id = "garrow_vehicle_elevator_one"
+ },
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "black";
+ dir = 4
},
-/area/golden_arrow/cryo_cells)
-"mr" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
+/area/golden_arrow/vehicle_shuttle/upper)
+"aBN" = (
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ dir = 2;
+ name = "\improper Hangar Lockdown Blast Door"
},
-/obj/structure/machinery/light,
/turf/open/floor/almayer,
/area/golden_arrow/prep_hallway)
-"mt" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
- },
-/obj/structure/machinery/door/poddoor/almayer{
- dir = 4;
- id = "bay2door";
- name = "\improper Weapons Bay Two Blast Door"
+"aBO" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "mono"
},
-/area/golden_arrow/hangar)
-"mu" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+/area/golden_arrow/motor_pool)
+"aBP" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
+/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/cable/heavyduty{
icon_state = "1-2"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"mv" = (
-/obj/structure/shuttle/part/dropship1/transparent/left_inner_bottom_wing{
- name = "\improper Tripoli"
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/platoonprep)
+"aBQ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
},
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"mx" = (
-/turf/closed/shuttle/midway{
- icon_state = "24";
- name = "\improper Tripoli"
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
/area/golden_arrow/hangar)
-"mz" = (
-/obj/structure/machinery/light{
- dir = 8
+"aBR" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "0-2"
},
/obj/structure/cable{
- icon_state = "1-4"
+ layer = 2.36
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoon_commander_rooms)
-"mA" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S";
- pixel_y = 1
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/shared_office)
+"aBU" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "cargo_arrow"
+/obj/item/trash/crushed_cup{
+ pixel_y = -10;
+ pixel_x = 6
},
-/area/golden_arrow/hangar)
-"mD" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/oil,
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+/turf/open/floor/almayer/edge{
+ dir = 4
},
-/obj/item/tool/wet_sign{
- pixel_x = -14;
- pixel_y = 14
+/area/golden_arrow/dorms)
+"aBV" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow2";
+ dir = 1
},
-/obj/item/tool/wet_sign{
- pixel_x = -17;
- pixel_y = 10
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
-/obj/item/tool/wet_sign{
- pixel_x = -13;
- pixel_y = 6
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
},
-/obj/item/tool/wet_sign{
- pixel_x = -15;
- pixel_y = 2
+/area/golden_arrow/motor_pool)
+"aBW" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
},
-/obj/item/tool/wet_sign{
- pixel_x = -13;
- pixel_y = -2
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2-8"
},
-/obj/item/tool/wet_sign{
- pixel_x = 1;
- pixel_y = 16
+/turf/open/floor/almayer,
+/area/golden_arrow/cryo_cells)
+"aBY" = (
+/obj/structure/cargo_container/kelland/left{
+ pixel_y = 9;
+ opacity = 0
},
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"aCe" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 2
},
-/area/golden_arrow/engineering)
-"mE" = (
-/obj/structure/platform{
+/obj/structure/pipes/vents/pump{
dir = 1
},
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"aCf" = (
/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+ icon_state = "door_warning"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
},
-/turf/open/shuttle/dropship{
- icon_state = "rasputin3"
+/area/golden_arrow/motor_pool)
+"aCh" = (
+/obj/effect/decal/siding{
+ icon_state = "siding4"
},
+/turf/open/floor/plating,
/area/golden_arrow/hangar)
-"mH" = (
+"aCi" = (
/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
+ icon_state = "N";
pixel_y = 1
},
-/obj/structure/machinery/power/apc/almayer{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "0-4";
- layer = 2.36
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonprep)
-"mI" = (
/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 9
- },
-/obj/structure/cable/heavyduty{
- icon_state = "1-8"
+ dir = 8
},
/turf/open/floor/almayer,
-/area/golden_arrow/platoonarmory)
-"mJ" = (
-/obj/structure/cable/heavyduty{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
/area/golden_arrow/hangar)
-"mN" = (
-/obj/structure/sign/safety/medical{
- pixel_x = 32;
- pixel_y = 6
+"aCj" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/item/stack/medical/bruise_pack{
+ pixel_y = 7;
+ pixel_x = -12
+ },
+/obj/item/stack/medical/ointment{
+ pixel_y = 12;
+ pixel_x = 2
},
/turf/open/floor/almayer{
- icon_state = "cargo_arrow"
+ icon_state = "dark_sterile"
},
-/area/golden_arrow/prep_hallway)
-"mO" = (
-/obj/structure/bed/chair/comfy,
-/obj/effect/decal/cleanable/dirt,
+/area/golden_arrow/medical)
+"aCl" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ pixel_x = -1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ layer = 2.5;
+ pixel_y = 1;
+ pixel_x = -1
+ },
+/turf/open/floor/almayer/edge/smooth/corner,
+/area/golden_arrow/hangar)
+"aCm" = (
/turf/open/floor/almayer,
-/area/golden_arrow/cryo_cells)
-"mP" = (
-/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass,
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
+/area/golden_arrow/prep_hallway)
+"aCp" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/hangar)
+"aCr" = (
+/obj/item/stack/catwalk{
+ pixel_x = 4
},
-/area/golden_arrow/cryo_cells)
-"mR" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 2
+/obj/item/stack/catwalk{
+ pixel_x = -3;
+ pixel_y = 6
},
-/obj/structure/machinery/light{
+/obj/structure/machinery/landinglight/ds1{
dir = 8
},
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/cryo_cells)
-"mT" = (
-/obj/structure/prop/invuln/lattice_prop{
- icon_state = "lattice3";
- pixel_x = 16;
- pixel_y = -15
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/dorms)
-"mU" = (
-/obj/effect/decal/siding{
- icon_state = "siding5"
- },
-/turf/open/floor/plating,
/area/golden_arrow/hangar)
-"mV" = (
-/obj/structure/platform_decoration{
- dir = 8
+"aCs" = (
+/obj/structure/machinery/gear{
+ id = "garrow_vehicle_elevator_one"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
},
/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "blackcorner"
},
-/turf/open/shuttle/dropship{
- icon_state = "rasputin3"
+/area/golden_arrow/vehicle_shuttle/upper)
+"aCt" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/hangar)
-"mX" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/surface/table/almayer,
-/obj/structure/machinery/light{
- dir = 1
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"mY" = (
-/obj/structure/machinery/door/airlock/multi_tile/elevator/research{
- name = "\improper Supply Elevator Hatch"
+"aCu" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"aCw" = (
+/obj/structure/bed/chair{
+ dir = 1
},
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "cargo"
},
-/area/golden_arrow/supply)
-"mZ" = (
-/obj/effect/decal/cleanable/dirt,
+/area/golden_arrow/briefing)
+"aCx" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/cable/heavyduty{
icon_state = "1-2"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/prep_hallway)
-"nb" = (
-/obj/structure/foamed_metal,
-/turf/open/floor/plating,
-/area/golden_arrow/medical)
-"ne" = (
-/obj/structure/machinery/camera/autoname/golden_arrow{
- dir = 8
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/golden_arrow/cryo_cells)
-"ng" = (
-/obj/structure/machinery/floodlight/landing/floor{
- pixel_x = -2
- },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/motor_pool)
+"aCy" = (
/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/golden_arrow/hangar)
-"nh" = (
-/obj/structure/surface/table/almayer,
-/obj/item/prop/almayer/comp_closed{
- pixel_x = -14;
- pixel_y = 13
+ icon_state = "test_floor5"
},
-/obj/item/reagent_container/food/drinks/coffee/marine,
-/obj/item/reagent_container/food/drinks/coffee/marine{
- pixel_x = -13;
- pixel_y = 16
+/area/golden_arrow/synthcloset)
+"aCz" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
},
-/obj/item/reagent_container/food/drinks/coffee/marine{
- pixel_x = 9;
- pixel_y = 9
+/obj/item/tool/warning_cone,
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 4
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"ni" = (
-/obj/structure/blocker/invisible_wall,
-/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"nj" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/computer/overwatch/almayer{
- pixel_y = 24
+"aCA" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/bed/chair/office/dark{
+/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoon_commander_rooms)
-"nl" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
+/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call{
+ pixel_y = 36;
+ pixel_x = 5;
+ shuttleId = "garrow_cargo_elevator";
+ dockId = "garrow_cargo_elevator_storage"
},
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 2
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
},
-/obj/structure/machinery/light{
+/area/golden_arrow/supply)
+"aCB" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/golden_arrow/cryo_cells)
-"nn" = (
-/obj/structure/closet/coffin/woodencrate,
-/obj/item/ammo_magazine/rifle/m4ra/pve,
-/obj/item/ammo_magazine/rifle/m4ra/pve,
-/obj/item/ammo_magazine/rifle/m4ra/pve,
-/obj/item/ammo_magazine/rifle/m4ra/pve,
-/obj/item/ammo_magazine/rifle/m4ra/pve,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/item/storage/fancy/cigarettes/lucky_strikes{
+ pixel_x = -7;
+ pixel_y = 9
},
-/area/golden_arrow/platoonprep)
-"nq" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/largecrate/random/case/double,
-/turf/open/floor/almayer{
- icon_state = "cargo"
+/obj/item/prop/magazine/dirty{
+ icon_state = "poster3";
+ pixel_y = 7;
+ pixel_x = 3;
+ name = "Playboy Magazine: Issue March 2182";
+ desc = "A copy of Playboy magazine. On the cover is photo of guitarist Sadie Summers, with the headline 'Sadie Summers tells ALL'. The article itself focuses on Sadie's many carnal exploits while on tour as well as her very public brawl at an LA nightclub that occured two years prior to the date of this issue. Flipping through the magazine you see article titles such as 'Jungle Mercenary: Life as an Ex-UPP commando', 'The whys and hows of choosing synthetic girls'."
},
-/area/golden_arrow/hangar)
-"ns" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S";
- pixel_x = -16
+/turf/open/floor/almayer,
+/area/golden_arrow/cryo_cells)
+"aCC" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
+/obj/structure/machinery/door_control/brbutton{
+ pixel_y = 28;
+ id = "squadblastdoor";
+ name = "hangar blast door control";
+ req_one_access_txt = "19;12"
},
-/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+/turf/open/floor/almayer/edge{
+ dir = 5
},
+/area/golden_arrow/platoonarmory)
+"aCE" = (
+/turf/closed/wall/almayer,
/area/golden_arrow/medical)
-"nv" = (
-/obj/structure/surface/table/almayer,
-/obj/item/hardpoint/support/flare_launcher{
- pixel_y = 11
+"aCH" = (
+/obj/effect/decal/strata_decals/grime/grime2,
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
},
-/area/golden_arrow/hangar)
-"nx" = (
-/obj/structure/machinery/landinglight/ds1/delaytwo{
+/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/golden_arrow/hangar)
-"ny" = (
-/obj/structure/machinery/light{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/golden_arrow/hangar)
-"nD" = (
-/obj/structure/surface/rack{
- pixel_y = 14;
- pixel_x = 4
- },
-/obj/structure/reagent_dispensers/water_cooler/stacks{
- density = 0;
- pixel_x = -10;
- pixel_y = 6
- },
-/obj/item/reagent_container/food/condiment/peppermill{
- pixel_y = 26;
- pixel_x = 1
+/obj/structure/cable/heavyduty{
+ icon_state = "node"
},
-/obj/item/reagent_container/food/condiment/saltshaker{
- pixel_y = 26;
- pixel_x = -3
+/turf/open/floor/almayer/edge{
+ dir = 1
},
-/obj/item/storage/box/drinkingglasses{
- pixel_x = 10;
- pixel_y = 28
+/area/golden_arrow/prep_hallway)
+"aCM" = (
+/obj/structure/closet/firecloset,
+/obj/structure/prop/invuln/overhead_pipe{
+ icon = 'icons/obj/structures/props/almayer_props.dmi';
+ icon_state = "wallpipe_3";
+ pixel_y = 22;
+ pixel_x = 12
},
-/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+/obj/structure/prop/invuln/overhead_pipe{
+ icon = 'icons/obj/structures/props/almayer_props.dmi';
+ icon_state = "wallpipe_3";
+ pixel_y = 22;
+ pixel_x = 6
},
-/area/golden_arrow/cryo_cells)
-"nE" = (
-/obj/structure/ship_ammo/rocket/widowmaker,
/turf/open/floor/almayer{
icon_state = "cargo"
},
-/area/golden_arrow/hangar)
-"nH" = (
+/area/golden_arrow/cryo_cells)
+"aCO" = (
/obj/effect/decal/warning_stripes{
- icon_state = "S"
+ icon_state = "E";
+ pixel_x = 1
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"nI" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "cargo_arrow"
+/obj/structure/surface/table/almayer,
+/obj/structure/prop{
+ icon = 'icons/obj/structures/props/almayer_props.dmi';
+ icon_state = "targeting_system";
+ name = "\improper Broken AN/AAQ-178 Weapon Targeting System";
+ desc = "A targeting system for dropships. It improves firing accuracy on laser targets. Far beyond repair.";
+ pixel_y = 3;
+ pixel_x = 7;
+ density = 1;
+ layer = 3.1
},
-/area/golden_arrow/engineering)
-"nK" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer/uscm{
- dir = 1;
- icon_state = "logo_directional1"
+/obj/item/prop/almayer/flight_recorder{
+ pixel_x = -8;
+ pixel_y = 9
+ },
+/obj/item/reagent_container/food/drinks/coffee/marine{
+ pixel_x = 7;
+ pixel_y = 15;
+ layer = 3.11
},
+/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"nM" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
+"aCR" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
},
-/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+/area/golden_arrow/hangar)
+"aCS" = (
+/obj/effect/landmark/nightmare{
+ insert_tag = "briefing"
},
-/area/golden_arrow/medical)
-"nO" = (
-/obj/vehicle/powerloader{
- dir = 4
+/turf/closed/wall/almayer/outer,
+/area/golden_arrow/briefing)
+"aCT" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/machinery/light{
- dir = 8
+/obj/structure/pipes/vents/pump{
+ dir = 1
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "mono"
},
/area/golden_arrow/hangar)
-"nP" = (
-/obj/structure/cable{
- icon_state = "4-8"
+"aCU" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/shared_office)
-"nR" = (
-/obj/structure/shuttle/part/dropship1/right_inner_wing_connector{
- name = "\improper Tripoli"
+/obj/item/hardpoint/locomotion/apc_wheels,
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/plating,
/area/golden_arrow/hangar)
-"nS" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/machinery/computer/emails{
- dir = 4
+"aCV" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/golden_arrow/shared_office)
-"nT" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- layer = 1.9
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
-/obj/structure/machinery/door/poddoor/almayer/open{
- closed_layer = 3.3;
- dir = 4;
- layer = 3.3;
- name = "Maintenance Bay Blast Door";
- open_layer = 3.3
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
+/area/golden_arrow/motor_pool)
+"aCW" = (
+/obj/structure/surface/table/almayer,
/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"nW" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
+/area/golden_arrow/supply)
+"aCY" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+/obj/structure/surface/table/almayer,
+/obj/item/facepaint/green{
+ pixel_y = 12;
+ pixel_x = 2
},
-/area/golden_arrow/cryo_cells)
-"nX" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "cargo_arrow"
+/obj/item/facepaint/black{
+ pixel_x = -7;
+ pixel_y = 7
+ },
+/obj/item/facepaint/brown{
+ pixel_x = -2;
+ pixel_y = 1
},
-/area/golden_arrow/prep_hallway)
-"nY" = (
-/obj/structure/pipes/standard/manifold/hidden/supply,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/hangar)
-"nZ" = (
-/obj/item/prop/almayer/box{
- pixel_y = 17
+/area/golden_arrow/platoonprep)
+"aCZ" = (
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
},
-/turf/open/shuttle/dropship{
- icon_state = "rasputin14"
+/area/golden_arrow/motor_pool)
+"aDd" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/hangar)
-"od" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 1
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
-/obj/structure/cable{
- icon_state = "0-2"
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/golden_arrow/cryo_cells)
-"oe" = (
-/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
- dir = 1;
- name = "\improper Dorms"
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/prep_hallway)
+"aDe" = (
+/obj/item/tool/wet_sign{
+ pixel_y = 14;
+ pixel_x = -14
},
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- layer = 1.9
+/obj/item/tool/wet_sign{
+ pixel_y = 10;
+ pixel_x = -17
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/obj/item/tool/wet_sign{
+ pixel_y = 6;
+ pixel_x = -13
},
-/area/golden_arrow/dorms)
-"og" = (
-/turf/closed/wall/almayer,
-/area/golden_arrow/cryo_cells)
-"oh" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S";
- pixel_x = -8
+/obj/item/tool/wet_sign{
+ pixel_y = 2;
+ pixel_x = -15
+ },
+/obj/item/tool/wet_sign{
+ pixel_y = -2;
+ pixel_x = -13
+ },
+/obj/item/tool/wet_sign{
+ pixel_y = 16;
+ pixel_x = 1
},
-/obj/structure/machinery/light,
/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+ dir = 5;
+ icon_state = "plating"
},
-/area/golden_arrow/medical)
-"oi" = (
-/obj/structure/machinery/light{
- dir = 4
+/area/golden_arrow/engineering)
+"aDg" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/machinery/computer/cryopod{
- pixel_x = 6;
- pixel_y = -2
+/turf/open/floor/almayer/edge{
+ dir = 1
+ },
+/area/golden_arrow/platoonarmory)
+"aDh" = (
+/turf/closed/wall/almayer/outer,
+/area/space)
+"aDi" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "mono"
},
/area/golden_arrow/cryo_cells)
-"oj" = (
-/obj/effect/spawner/prop_gun/anti_tank{
- anchored = 1
+"aDj" = (
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/turf/closed/wall/almayer/outer,
+/turf/open/floor/almayer,
/area/golden_arrow/briefing)
-"ol" = (
+"aDk" = (
/obj/effect/decal/warning_stripes{
- icon_state = "S";
- layer = 3.3
+ icon_state = "E";
+ pixel_x = 1
},
/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+ icon_state = "W"
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"oo" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/atm{
- pixel_y = 26
- },
-/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"os" = (
+"aDm" = (
/obj/effect/decal/warning_stripes{
- icon_state = "S"
+ icon_state = "E";
+ pixel_x = 1
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"oy" = (
-/obj/structure/machinery/light{
- dir = 8
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/plating_catwalk,
/area/golden_arrow/hangar)
-"oB" = (
-/obj/structure/machinery/door/poddoor/almayer,
-/turf/open/floor/almayer,
-/area/golden_arrow/prep_hallway)
-"oD" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/machinery/door/poddoor/almayer/locked{
- dir = 2;
- name = "\improper Hangar Lockdown Blast Door"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+"aDr" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning";
+ dir = 1
},
-/area/golden_arrow/hangar)
-"oF" = (
-/obj/structure/stairs/perspective,
-/obj/structure/platform{
- dir = 8;
- layer = 2.7
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/motor_pool)
+"aDs" = (
+/obj/structure/barricade/handrail{
+ dir = 4
},
-/turf/open/shuttle/dropship{
- icon_state = "rasputin3"
+/obj/structure/barricade/handrail{
+ dir = 8
},
-/area/golden_arrow/hangar)
-"oH" = (
-/obj/structure/surface/table/almayer,
-/obj/item/device/megaphone{
- pixel_x = 11;
- pixel_y = 7
+/obj/structure/closet/secure_closet,
+/turf/open/floor/almayer/edge{
+ dir = 1
},
-/obj/item/prop/tableflag/uscm{
- pixel_x = -12;
- pixel_y = -1
+/area/golden_arrow/dorms)
+"aDt" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer,
-/area/golden_arrow/briefing)
-"oI" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
/obj/structure/cable/heavyduty{
icon_state = "4-8"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/platoonarmory)
-"oJ" = (
-/obj/structure/largecrate/random/case/double,
-/obj/structure/largecrate/random/case/small{
- layer = 3.1;
- pixel_x = 18;
- pixel_y = 18
- },
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"oK" = (
-/obj/item/storage/box/guncase/pumpshotgun/special{
- pixel_y = 4
- },
-/obj/item/storage/box/guncase/flamer/special{
- layer = 3.1;
- pixel_y = 10
- },
-/obj/structure/surface/rack,
/turf/open/floor/almayer,
-/area/golden_arrow/platoonarmory)
-"oM" = (
-/obj/structure/filingcabinet{
- density = 0;
- pixel_x = -8;
- pixel_y = 18
+/area/golden_arrow/platoon_commander_rooms)
+"aDu" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/filingcabinet{
- density = 0;
- pixel_x = 8;
- pixel_y = 16
+/obj/structure/disposalpipe/segment{
+ dir = 8
},
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/engineering)
-"oP" = (
-/obj/effect/decal/strata_decals/grime/grime4,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"oR" = (
-/obj/structure/pipes/vents/pump,
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
/turf/open/floor/almayer,
+/area/golden_arrow/motor_pool)
+"aDw" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
/area/golden_arrow/hangar)
-"oS" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
+"aDx" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
+ },
+/area/golden_arrow/motor_pool)
+"aDy" = (
+/obj/structure/machinery/landinglight/ds1/delayone{
+ dir = 1
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/oil,
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"oU" = (
-/obj/structure/closet/secure_closet/marine_personal{
- pixel_x = -7
- },
-/obj/structure/closet/secure_closet/marine_personal{
- pixel_x = 8
+"aDz" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "cargo"
},
-/area/golden_arrow/cryo_cells)
-"oW" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/largecrate/random/case{
- pixel_y = 11
+/area/golden_arrow/hangar)
+"aDE" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
},
-/obj/item/reagent_container/food/drinks/coffee/marine{
- layer = 3.11;
- pixel_x = 4;
- pixel_y = 15
+/obj/structure/pipes/vents/pump{
+ dir = 4
},
/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"oX" = (
+"aDG" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/toolbox/mechanical/green{
+ pixel_y = 12
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/golden_arrow/motor_pool)
+"aDH" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
pixel_x = 1
},
/obj/effect/decal/warning_stripes{
- icon_state = "W"
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/item/storage/toolbox/mechanical/green{
+ pixel_y = 10
},
-/obj/effect/decal/cleanable/blood/oil,
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"oY" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
- },
-/obj/structure/machinery/door_control{
- id = "synthbay";
- name = "storage bay door-control";
- pixel_y = -19
+"aDJ" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
},
/turf/open/floor/almayer,
/area/golden_arrow/synthcloset)
-"pa" = (
-/obj/structure/ship_ammo/rocket/widowmaker,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "cargo"
+"aDL" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = -29
},
-/area/golden_arrow/hangar)
-"pb" = (
-/obj/structure/machinery/light{
- dir = 4
+/turf/open/floor/almayer/edge{
+ dir = 6
},
-/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+/area/golden_arrow/platoonarmory)
+"aDM" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"aDO" = (
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"aDQ" = (
+/turf/closed/wall/almayer/outer,
+/area/golden_arrow/platoonprep)
+"aDR" = (
+/obj/structure/machinery/door_control{
+ id = "cargobay1";
+ name = "cargobay1";
+ pixel_y = 23;
+ pixel_x = -7;
+ needs_power = 0
},
-/area/golden_arrow/medical)
-"pc" = (
/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- pixel_x = -1;
- pixel_y = 2
+ icon_state = "cargo_arrow";
+ color = "#E10600";
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/golden_arrow/hangar)
+"aDS" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/cryo_cells)
+"aDU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/cable/heavyduty{
+ icon_state = "1-8"
},
-/area/golden_arrow/cryo_cells)
-"pd" = (
-/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer,
+/area/golden_arrow/motor_pool)
+"aDW" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
- id = "weapons_conny";
- name = "\improper Squad Two Weapons Locker";
- pixel_y = -4
+ name = "\improper Equipment Locker";
+ id = "squadarmory"
},
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
/area/golden_arrow/platoonarmory)
-"pf" = (
-/obj/structure/machinery/door_control{
- id = "cargolock";
- name = "GM cargo lock control";
- pixel_x = -7;
- pixel_y = 11
- },
-/obj/structure/machinery/door_control{
- id = "bay1door";
- name = "GM north weapon bay control";
- pixel_x = 8;
- pixel_y = 11
- },
-/obj/structure/machinery/door_control{
- id = "bay2door";
- name = "GM south weapon bay control";
- pixel_x = 8;
- pixel_y = 1
+"aDX" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/plating,
-/area/golden_arrow/supply)
-"pg" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/cable{
- icon_state = "1-8"
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow";
+ dir = 1
},
-/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"pl" = (
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 2;
+ id = "garrow_elevator_upper"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/shared_office)
-"po" = (
-/obj/structure/machinery/recharge_station,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"pq" = (
-/obj/structure/machinery/door/airlock/maintenance/colony{
- dir = 1;
- name = "\improper Supply Launch Bay";
- req_one_access = null
+/turf/open/floor/almayer/edge{
+ dir = 1
},
-/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"pr" = (
-/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"pt" = (
-/obj/structure/machinery/door/poddoor/railing{
- dir = 8;
- id = "apcbayrailing1"
+/area/golden_arrow/cargo_shuttle/upper)
+"aDZ" = (
+/obj/structure/machinery/light/double/blue{
+ dir = 1
},
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
- dir = 8;
- icon_state = "black"
- },
-/area/golden_arrow/hangar)
-"pu" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/machinery/light,
-/obj/structure/prop{
- density = 1;
- desc = "An electronic device linked to the dropship's camera system that lets you observe your landing zone. This thing probably never even worked.";
- icon = 'icons/obj/structures/props/almayer_props.dmi';
- icon_state = "lz_detector";
- layer = 3.1;
- name = "\improper Damaged AN/AVD-60 LZ detector"
+ icon_state = "plate"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"py" = (
+/area/golden_arrow/motor_pool)
+"aEa" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
pixel_x = 1
},
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/cryo_cells)
-"pz" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W";
- layer = 3.3
+/area/golden_arrow/hangar)
+"aEb" = (
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 1
},
+/area/golden_arrow/motor_pool)
+"aEc" = (
/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
+ icon_state = "NW-out";
pixel_y = 1
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
+/obj/structure/machinery/floodlight/landing/floor{
+ color = "#dae2ff";
+ light_color = "#dae2ff"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
/area/golden_arrow/hangar)
-"pB" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 10
+"aEd" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/cable{
- icon_state = "2-8"
+/obj/structure/pipes/vents/pump{
+ dir = 1
},
-/turf/open/floor/almayer,
-/area/golden_arrow/cryo_cells)
-"pE" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ icon = 'icons/obj/structures/props/almayer_props.dmi';
+ icon_state = "wallpipe_2";
+ pixel_y = 22;
+ pixel_x = -14
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ icon = 'icons/obj/structures/props/almayer_props.dmi';
+ icon_state = "wallpipe_2";
+ pixel_y = -1;
+ pixel_x = -14;
+ dir = 1
+ },
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/prep_hallway)
+"aEe" = (
/obj/structure/closet/secure_closet/marine_personal{
- job = "Smartgunner";
- pixel_x = 8
+ pixel_x = -7;
+ job = "Smartgunner"
},
/obj/structure/closet/secure_closet/marine_personal{
- job = "Squad Sergeant";
- pixel_x = -7
+ pixel_x = 8;
+ job = "Squad Sergeant"
},
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/cryo_cells)
-"pF" = (
-/obj/structure/sign/safety/galley{
- pixel_y = 28
+"aEf" = (
+/turf/open/floor/almayer{
+ icon_state = "cargo"
},
-/obj/structure/sign/safety/cryo{
- name = "hypersleep semiotic";
- pixel_x = 15;
+/area/golden_arrow/hangar)
+"aEg" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
pixel_y = 28
},
-/turf/open/floor/almayer,
-/area/golden_arrow/prep_hallway)
-"pI" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 6
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "cargo_arrow"
+ },
+/area/golden_arrow/hangar)
+"aEh" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/structure/machinery/recharger{
+ pixel_x = -8;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/golden_arrow/medical)
+"aEi" = (
+/obj/structure/sign/banners/united_americas_flag{
+ pixel_x = -30;
+ pixel_y = 31
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/vending/dinnerware,
+/obj/item/ashtray/glass{
+ pixel_x = -3;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer/edge{
+ dir = 4
+ },
+/area/golden_arrow/cryo_cells)
+"aEl" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/holohoop{
+ dir = 4;
+ id = "basketball";
+ side = "left"
+ },
+/obj/structure/machinery/light/double/blue{
+ dir = 8;
+ light_color = "#dae2ff"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/hangar)
+"aEo" = (
+/obj/structure/platform_decoration{
+ dir = 8
+ },
+/obj/structure/machinery/light/double/blue{
+ dir = 8;
+ light_color = "#dae2ff"
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer/edge/smooth/endcap_left,
+/area/golden_arrow/briefing)
+"aEp" = (
+/obj/effect/decal/siding{
+ icon_state = "siding10"
+ },
+/turf/open/floor/plating,
+/area/golden_arrow/hangar)
+"aEq" = (
+/obj/structure/platform,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/motor_pool)
+"aEr" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 8;
+ pixel_x = 16
},
-/obj/structure/cable/heavyduty{
- icon_state = "2-4"
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonarmory)
-"pK" = (
-/obj/item/prop/colony/canister{
- pixel_x = 3;
- pixel_y = 19
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/effect/decal/strata_decals/grime/grime2,
-/obj/item/tool/mop{
- pixel_x = -10;
- pixel_y = 20
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
},
-/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"pL" = (
+/area/golden_arrow/briefing)
+"aEs" = (
/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 5
+ dir = 8
},
-/obj/structure/cable{
- icon_state = "1-4"
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
},
-/obj/structure/sign/safety/terminal{
- pixel_x = 1;
- pixel_y = -26
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "cargo_arrow"
+/turf/open/floor/almayer/edge{
+ dir = 1
},
/area/golden_arrow/prep_hallway)
-"pN" = (
-/obj/structure/prop/dam/crane{
- bound_height = 32;
- climbable = 1;
- layer = 3.5;
- pixel_y = -23
+"aEt" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"pR" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-4"
+/obj/structure/surface/table/reinforced/almayer_B{
+ pixel_x = 14;
+ layer = 2.01
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoon_commander_rooms)
-"pT" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/door/poddoor/railing{
- dir = 8;
- id = "apcbayrailing1"
+/obj/item/ashtray/plastic{
+ pixel_y = -3;
+ pixel_x = 10
},
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "black"
+/obj/item/device/megaphone{
+ pixel_x = 11;
+ pixel_y = 7
},
-/area/golden_arrow/hangar)
-"pU" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/cable{
- icon_state = "1-2"
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
},
-/turf/open/floor/plating/plating_catwalk,
/area/golden_arrow/platoon_commander_rooms)
-"pW" = (
-/obj/structure/pipes/vents/pump,
-/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"pX" = (
-/turf/closed/shuttle/midway/transparent{
- icon_state = "27";
- name = "\improper Tripoli"
+"aEu" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
/area/golden_arrow/hangar)
-"qc" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/door/poddoor/railing{
- id = "apcbayrailing2"
+"aEv" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 4
+ },
+/area/golden_arrow/supply)
+"aEw" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 8
},
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "black"
+ icon_state = "mono"
},
/area/golden_arrow/hangar)
-"qh" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 1
+"aEx" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+/turf/open/floor/almayer,
+/area/golden_arrow/prep_hallway)
+"aEy" = (
+/obj/structure/bed/bedroll{
+ pixel_y = -8;
+ pixel_x = 3;
+ layer = 3.1
},
-/obj/structure/largecrate/random/case/double{
- layer = 3.1;
- pixel_y = 9
+/obj/item/clothing/head/cmcap{
+ layer = 4.2;
+ pixel_y = 6;
+ pixel_x = 4
},
-/turf/open/floor/almayer,
+/turf/closed/wall/almayer/outer,
/area/golden_arrow/hangar)
-"qi" = (
-/obj/structure/machinery/cm_vending/gear/synth,
-/turf/open/floor/almayer,
-/area/golden_arrow/synthcloset)
-"qk" = (
+"aEA" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "cargo_arrow"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonarmory)
-"qm" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+/area/golden_arrow/hangar)
+"aEB" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/machinery/door/poddoor/almayer/locked{
- dir = 4;
- name = "\improper Hangar Lockdown Blast Door"
+/obj/structure/cargo_container/wy/left{
+ opacity = 0
},
-/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"qn" = (
-/obj/structure/pipes/vents/scrubber{
- dir = 8
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/hangar)
+"aEC" = (
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/hangar)
+"aED" = (
+/obj/docking_port/stationary/marine_dropship/golden_arrow_hangar,
+/turf/open/floor/plating,
+/area/golden_arrow/hangar)
+"aEE" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
},
+/obj/effect/decal/cleanable/liquid_fuel,
/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"qq" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out"
+"aEF" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/door/poddoor/almayer{
+ dir = 2;
+ name = "\improper Storage Bay Blast Door"
},
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
/area/golden_arrow/hangar)
-"qr" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/machinery/photocopier{
- pixel_y = 16
- },
-/obj/item/reagent_container/food/drinks/coffeecup/uscm{
- pixel_x = 7;
- pixel_y = -7
- },
-/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"qt" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
+"aEG" = (
+/turf/open/space/basic,
+/area/space)
+"aEH" = (
+/obj/structure/machinery/camera/autoname/golden_arrow{
+ dir = 8
},
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"qv" = (
-/obj/structure/surface/table/almayer,
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"qw" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E"
+"aEI" = (
+/obj/effect/landmark/start/marine/leader/alpha,
+/obj/effect/landmark/late_join/alpha,
+/obj/effect/landmark/late_join,
+/turf/open/floor/almayer/edge{
+ dir = 5
+ },
+/area/golden_arrow/cryo_cells)
+"aEK" = (
+/obj/structure/machinery/door/poddoor/almayer{
+ id = "cargolock";
+ name = "\improper Cargo Elevator Blast Door"
},
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
-/area/golden_arrow/hangar)
-"qx" = (
+/area/golden_arrow/prep_hallway)
+"aEM" = (
/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_y = 1
+ icon_state = "E";
+ pixel_x = 1
},
-/obj/structure/cable{
- icon_state = "4-8"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/sign/safety/conference_room{
- pixel_y = 29
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonprep)
-"qD" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/cable/heavyduty{
- icon_state = "1-2"
+/area/golden_arrow/hangar)
+"aEN" = (
+/obj/structure/barricade/handrail{
+ dir = 4
},
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/platoonprep)
-"qE" = (
-/obj/structure/machinery/door/poddoor/shutters/almayer{
- id = "equipment_conny";
- name = "\improper Squad One Equipment Locker"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/turf/open/floor/almayer/edge{
+ dir = 4
},
-/area/golden_arrow/platoonarmory)
-"qH" = (
-/obj/structure/shuttle/part/dropship1/lower_left_wall{
- name = "\improper Tripoli"
+/area/golden_arrow/dorms)
+"aEO" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning";
+ dir = 1
},
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"qJ" = (
-/turf/closed/shuttle/elevator{
- dir = 6
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
-/area/golden_arrow/supply)
-"qK" = (
-/turf/closed/shuttle/elevator/button/research,
-/area/golden_arrow/supply)
-"qL" = (
-/obj/effect/decal/cleanable/blood/oil,
-/obj/effect/decal/strata_decals/grime/grime3,
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"qM" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/landinglight/ds1/delaythree{
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/motor_pool)
+"aER" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
},
-/area/golden_arrow/hangar)
-"qQ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 8
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/prep_hallway)
+"aES" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
/area/golden_arrow/hangar)
-"qW" = (
-/obj/structure/closet/secure_closet/platoon_sergeant,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "plate"
+"aEW" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
},
-/area/golden_arrow/platoonprep)
-"ra" = (
-/obj/item/tool/mop{
- pixel_x = -1;
- pixel_y = 20
+/obj/structure/machinery/gear{
+ id = "garrow_vehicle_elevator_one"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/prep_hallway)
-"rb" = (
-/obj/structure/surface/table/almayer,
-/obj/item/trash/USCMtray{
- pixel_y = 9
+/turf/open/floor/almayer{
+ icon_state = "blackcorner";
+ dir = 8
},
-/obj/item/reagent_container/food/snacks/cracker{
- pixel_x = -2;
- pixel_y = 7
+/area/golden_arrow/vehicle_shuttle/upper)
+"aEX" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 8
},
-/obj/item/reagent_container/food/snacks/cracker{
- pixel_y = 9
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
},
+/area/golden_arrow/platoonprep)
+"aEY" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"rd" = (
-/obj/structure/machinery/door/poddoor/shutters/almayer{
- dir = 4;
- id = "squadarmory";
- name = "\improper Gear Lockers"
+/area/golden_arrow/cryo_cells)
+"aEZ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
},
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "plate"
},
-/area/golden_arrow/platoonprep)
-"rg" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/prop/invuln/lattice_prop{
- icon_state = "lattice3";
- pixel_x = 16;
- pixel_y = -15
+/area/golden_arrow/cryo_cells)
+"aFa" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"rk" = (
-/obj/effect/decal/strata_decals/grime/grime1{
- dir = 1
+/obj/structure/machinery/photocopier{
+ pixel_y = 4
},
-/obj/effect/decal/strata_decals/grime/grime1{
+/obj/structure/machinery/power/apc/almayer{
dir = 1
},
-/obj/structure/prop/invuln/lattice_prop{
- icon_state = "lattice1";
- pixel_x = 16;
- pixel_y = -15
+/obj/structure/cable{
+ icon_state = "0-2"
},
/turf/open/floor/almayer,
-/area/golden_arrow/prep_hallway)
-"rl" = (
+/area/golden_arrow/platoon_commander_rooms)
+"aFb" = (
/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+ icon_state = "SW-out";
+ pixel_x = -1
},
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ layer = 2.5;
+ pixel_y = 1;
+ pixel_x = -1
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonarmory)
-"rm" = (
/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/golden_arrow/supply)
-"ro" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
+ icon_state = "dark_sterile"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/synthcloset)
-"rr" = (
-/obj/structure/machinery/cm_vending/sorted/marine_food,
+/area/golden_arrow/medical)
+"aFc" = (
+/obj/item/hardpoint/locomotion/apc_wheels/arc,
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 5;
+ icon_state = "plating"
},
-/area/golden_arrow/cryo_cells)
-"rv" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
+/area/golden_arrow/motor_pool)
+"aFd" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2-8"
},
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_x = 1;
- pixel_y = 1
+/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"ry" = (
-/obj/structure/pipes/vents/pump{
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/platoonarmory)
+"aFf" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
-/obj/structure/machinery/door/poddoor/railing{
- id = "apcbayrailing2"
- },
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "black"
+ icon_state = "plate"
},
/area/golden_arrow/hangar)
-"rA" = (
+"aFh" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/motor_pool)
+"aFj" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ layer = 2.5;
+ pixel_y = 1;
+ pixel_x = -1
+ },
+/turf/open/floor/almayer/edge/smooth/corner{
dir = 8
},
-/obj/structure/cable{
- icon_state = "4-8"
+/area/golden_arrow/hangar)
+"aFm" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/disposalpipe/segment{
+/obj/item/stool{
+ pixel_y = 20;
+ pixel_x = 1
+ },
+/turf/open/floor/almayer/edge/smooth{
dir = 4
},
+/area/golden_arrow/platoonprep)
+"aFo" = (
+/obj/structure/closet/secure_closet/marine_personal{
+ job = "Platoon Commander"
+ },
+/obj/item/clothing/under/marine/officer/boiler,
+/obj/item/clothing/suit/storage/jacket/marine/service,
+/obj/item/clothing/suit/storage/jacket/marine/dress/officer/bomber,
+/obj/item/clothing/under/marine/officer/bridge,
/turf/open/floor/almayer{
- dir = 4;
- icon_state = "cargo_arrow"
+ icon_state = "plate"
},
-/area/golden_arrow/dorms)
-"rF" = (
-/obj/effect/decal/cleanable/dirt,
+/area/golden_arrow/cryo_cells)
+"aFr" = (
/obj/effect/decal/warning_stripes{
- icon_state = "S"
+ icon_state = "cargo_arrow";
+ dir = 4
},
-/obj/structure/machinery/light{
- dir = 1
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
+/turf/open/floor/almayer/edge{
+ dir = 4
},
-/area/golden_arrow/engineering)
-"rH" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/oil,
-/obj/structure/largecrate/random/case/small,
-/turf/open/floor/almayer{
- icon_state = "cargo"
+/area/golden_arrow/motor_pool)
+"aFt" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/hangar)
-"rI" = (
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer,
-/area/golden_arrow/platoonprep)
-"rJ" = (
-/obj/structure/cable{
- icon_state = "4-8"
+/area/golden_arrow/dorms)
+"aFu" = (
+/obj/structure/surface/table/almayer,
+/obj/item/trash/wy_chips_pepper{
+ pixel_y = 5;
+ pixel_x = -5
},
/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"rP" = (
-/turf/closed/wall/almayer/outer,
-/area/golden_arrow/shared_office)
-"rQ" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
- },
-/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+"aFv" = (
+/obj/structure/machinery/door_control{
+ id = "cargolock";
+ name = "GM cargo lock control";
+ pixel_y = 23;
+ pixel_x = -7;
+ needs_power = 0
},
-/area/golden_arrow/cryo_cells)
-"rS" = (
-/obj/structure/machinery/door/poddoor/railing{
- dir = 8
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow";
+ color = "#E10600";
+ dir = 1
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/turf/open/space/basic,
+/area/space)
+"aFx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1
},
-/area/golden_arrow/engineering)
-"rT" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/cable{
+/obj/structure/cable/heavyduty{
icon_state = "1-2"
},
-/turf/open/floor/almayer{
- icon_state = "cargo_arrow"
+/turf/open/floor/almayer,
+/area/golden_arrow/motor_pool)
+"aFy" = (
+/obj/effect/landmark/start/marine/tl/alpha,
+/obj/effect/landmark/late_join/alpha,
+/obj/effect/landmark/late_join,
+/turf/open/floor/almayer/edge{
+ dir = 5
},
-/area/golden_arrow/prep_hallway)
-"rU" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
+/area/golden_arrow/cryo_cells)
+"aFz" = (
+/turf/open/floor/almayer/uscm{
+ icon_state = "logo_directional1";
dir = 8
},
-/obj/structure/machinery/door/poddoor/almayer/locked{
- dir = 4;
- name = "\improper Hangar Lockdown Blast Door"
+/area/golden_arrow/hangar)
+"aFA" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/structure/machinery/computer/med_data/laptop{
+ dir = 8;
+ pixel_x = -3
},
/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/golden_arrow/hangar)
-"rV" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
+ icon_state = "dark_sterile"
},
-/obj/structure/pipes/vents/scrubber{
- dir = 4
+/area/golden_arrow/medical)
+"aFF" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoon_commander_rooms)
-"rY" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/cable/heavyduty{
- icon_state = "1-2"
+ icon_state = "1-8"
},
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer,
-/area/golden_arrow/prep_hallway)
-"rZ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/secure_closet/engineering_welding,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/turf/open/floor/almayer/edge/smooth/corner,
+/area/golden_arrow/hangar)
+"aFG" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
+/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"sa" = (
+"aFH" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
pixel_x = 1
},
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
/obj/effect/decal/warning_stripes{
- icon_state = "W"
+ icon_state = "NW-out";
+ layer = 2.5;
+ pixel_y = 1
},
-/obj/structure/largecrate/supply/supplies/sandbags{
- layer = 4.2;
- pixel_y = 7
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 8
+ },
+/area/golden_arrow/hangar)
+"aFI" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 8;
+ icon_state = "cargo_arrow"
},
/area/golden_arrow/hangar)
-"sb" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 5
+"aFK" = (
+/obj/structure/machinery/light/double/blue{
+ dir = 4;
+ light_color = "#dae2ff"
},
-/obj/structure/cable/heavyduty{
- icon_state = "1-4"
+/obj/structure/machinery/computer/cryopod{
+ pixel_x = 6;
+ pixel_y = -2
},
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/platoonprep)
-"sc" = (
-/obj/structure/pipes/vents/scrubber{
- dir = 8
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
},
-/obj/structure/machinery/door/poddoor/railing{
- dir = 2;
- id = "apcbayrailing2"
+/area/golden_arrow/cryo_cells)
+"aFL" = (
+/obj/structure/machinery/door_control{
+ id = "motorpoollocks";
+ needs_power = 0;
+ pixel_y = 28
},
-/turf/open/floor/almayer{
- icon_state = "black"
+/turf/open/floor/almayer,
+/area/golden_arrow/motor_pool)
+"aFO" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/hangar)
-"sg" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/item/tool/warning_cone{
- pixel_x = -6;
- pixel_y = 16
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"aFR" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"sh" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/landinglight/ds1/delaythree{
- dir = 4
+"aFS" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
},
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"sk" = (
-/obj/effect/landmark/start/marine/leader/alpha,
-/obj/effect/landmark/late_join/alpha,
-/obj/effect/landmark/late_join,
+"aFT" = (
+/obj/structure/machinery/light/double/blue{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/motor_pool)
+"aFU" = (
+/obj/structure/sign/safety/bulkhead_door{
+ pixel_y = -29
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_x = 14;
+ pixel_y = -29
+ },
/turf/open/floor/almayer{
dir = 4;
icon_state = "cargo_arrow"
},
-/area/golden_arrow/cryo_cells)
-"sl" = (
-/obj/structure/machinery/gear{
- id = "supply_elevator_gear"
- },
-/obj/effect/decal/cleanable/dirt,
+/area/golden_arrow/hangar)
+"aFW" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- pixel_y = 1
+ icon_state = "door_warning"
},
/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/golden_arrow/cryo_cells)
+"aFX" = (
+/obj/structure/machinery/light/double/blue{
dir = 1;
- icon_state = "blackcorner"
+ light_color = "#dae2ff"
},
-/area/golden_arrow/hangar)
-"sn" = (
-/obj/structure/machinery/floodlight/landing/floor{
- pixel_x = -2
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
-/obj/structure/machinery/landinglight/ds1{
- dir = 4
+/obj/structure/sign/safety/bathunisex{
+ pixel_y = 28
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/sign/safety/water{
+ pixel_x = 15;
+ pixel_y = 28
},
-/area/golden_arrow/hangar)
-"sp" = (
-/obj/effect/decal/cleanable/blood/oil,
-/obj/structure/largecrate/random/case/double,
-/obj/item/toy/beach_ball/holoball{
- pixel_x = -2;
- pixel_y = 15
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
},
-/obj/structure/machinery/light{
+/turf/open/floor/almayer/edge/smooth/corner{
dir = 1
},
-/turf/open/floor/almayer{
- icon_state = "cargo"
+/area/golden_arrow/cryo_cells)
+"aFY" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
},
-/area/golden_arrow/hangar)
-"sq" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
},
-/obj/item/tool/wirecutters{
- pixel_x = -8;
- pixel_y = 18
+/area/golden_arrow/platoonprep)
+"aGa" = (
+/obj/structure/platform{
+ dir = 4;
+ layer = 2.7
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"sr" = (
-/obj/structure/machinery/light,
-/turf/open/floor/almayer,
-/area/golden_arrow/platoon_commander_rooms)
-"ss" = (
-/obj/structure/largecrate/random/case/small,
-/turf/open/floor/almayer{
- icon_state = "cargo"
+/obj/structure/platform{
+ dir = 8;
+ layer = 2.7
},
-/area/golden_arrow/hangar)
-"su" = (
-/obj/structure/bed/chair/comfy{
- dir = 4
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer,
-/area/golden_arrow/cryo_cells)
-"sv" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out";
- pixel_x = -1
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
},
-/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- pixel_x = -1;
- pixel_y = 2
+/area/golden_arrow/motor_pool)
+"aGb" = (
+/obj/structure/reagent_dispensers/fueltank{
+ layer = 2.97
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/cryo_cells)
-"sy" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W";
- layer = 3.3
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+/area/golden_arrow/hangar)
+"aGc" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
+/obj/structure/surface/table/almayer,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "mono"
},
/area/golden_arrow/hangar)
-"sz" = (
+"aGf" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
+ },
+/area/golden_arrow/motor_pool)
+"aGg" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
pixel_x = 1
},
-/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
/turf/open/floor/plating/plating_catwalk,
/area/golden_arrow/hangar)
-"sA" = (
-/obj/structure/closet/secure_closet/smartgunner{
- name = "squad one smartgunner locker";
- req_access_txt = "14;39";
- req_one_access = list()
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "plate"
+"aGh" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
},
-/area/golden_arrow/platoonprep)
-"sF" = (
-/obj/structure/largecrate/random/case/double,
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"sG" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/door/poddoor/railing{
- id = "apcbayrailing1"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
+/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "black"
- },
-/area/golden_arrow/hangar)
-"sH" = (
-/turf/open/shuttle/dropship{
- icon_state = "rasputin3"
+ icon_state = "cargo_arrow"
},
/area/golden_arrow/hangar)
-"sI" = (
-/obj/effect/decal/cleanable/dirt,
+"aGi" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
- },
-/turf/open/floor/almayer{
+/obj/structure/machinery/door/poddoor/almayer{
dir = 4;
- icon_state = "cargo_arrow"
+ name = "\improper Vehicle Bay One Blast Door";
+ id = "vehiclebay1"
},
-/area/golden_arrow/platoonarmory)
-"sM" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
},
-/obj/effect/decal/strata_decals/grime/grime2,
-/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"sN" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
+"aGl" = (
+/obj/structure/surface/table/almayer,
+/obj/item/prop{
+ icon = 'icons/obj/items/paper.dmi';
+ icon_state = "newspaper";
+ name = "The Marine Corps Gazette";
+ desc = "An issue of The Marine Corps Gazette, the official newspaper of the United States Colonial Marines.";
+ pixel_y = -2;
+ pixel_x = -1
+ },
+/obj/item/reagent_container/food/condiment/peppermill{
+ pixel_x = 1;
+ pixel_y = 12
},
-/obj/effect/decal/cleanable/blood/oil,
/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"sO" = (
-/obj/structure/prop{
- can_buckle = 1;
- desc = "A regular case you'd sit on. The label says it's full of steel sheets. Probably empty now.";
- icon = 'icons/obj/structures/crates.dmi';
- icon_state = "case";
- layer = 3.6;
- name = "\improper uncomfy case"
+/area/golden_arrow/cryo_cells)
+"aGm" = (
+/obj/item/ammo_magazine/shotgun/buckshot{
+ pixel_x = -5;
+ pixel_y = 13
+ },
+/obj/item/ammo_magazine/shotgun/buckshot{
+ pixel_x = -5;
+ pixel_y = 4
+ },
+/obj/item/ammo_magazine/shotgun{
+ pixel_x = 12;
+ pixel_y = 11
},
+/obj/item/ammo_magazine/shotgun{
+ pixel_x = 12;
+ pixel_y = 2
+ },
+/obj/structure/surface/table/reinforced/almayer_B,
/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"sQ" = (
-/obj/structure/fence,
-/obj/structure/machinery/door/poddoor/almayer/open{
- closed_layer = 3.3;
- dir = 4;
- id = "squadblastdoor";
- layer = 3.3;
- name = "First Platoon Ready Bay Blast Door";
- open_layer = 3.3
+/area/golden_arrow/platoonarmory)
+"aGo" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- layer = 1.9
+/obj/structure/machinery/door/poddoor/almayer{
+ dir = 4;
+ name = "\improper Weapons Bay Two Blast Door";
+ id = "weaponsbay2"
},
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/golden_arrow/platoonarmory)
-"sR" = (
+/area/golden_arrow/hangar)
+"aGr" = (
+/turf/open/floor/almayer/edge{
+ dir = 5
+ },
+/area/golden_arrow/cryo_cells)
+"aGt" = (
+/obj/structure/sign/safety/bulkhead_door{
+ pixel_y = 27
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_x = 14;
+ pixel_y = 27
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
/turf/open/floor/almayer{
dir = 8;
icon_state = "cargo_arrow"
},
-/area/golden_arrow/engineering)
-"sT" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
+/area/golden_arrow/hangar)
+"aGu" = (
+/obj/structure/prop/almayer/computers/sensor_computer2{
+ pixel_y = 15;
+ density = 0;
+ pixel_x = 4;
+ layer = 2.97
},
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_x = 1;
- pixel_y = 1
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- pixel_y = 1
+/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call{
+ dockId = "garrow_vehicle_elevator_one_storage";
+ shuttleId = "garrow_vehicle_elevator_one";
+ pixel_y = 28;
+ pixel_x = -1;
+ name = "\improper vehicle elevator one control panel"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call{
+ dockId = "garrow_vehicle_elevator_two_storage";
+ shuttleId = "garrow_vehicle_elevator_two";
+ pixel_y = 28;
+ pixel_x = 14;
+ name = "\improper vehicle elevator two control panel"
},
+/turf/open/floor/almayer,
+/area/golden_arrow/motor_pool)
+"aGv" = (
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 5;
+ icon_state = "plating"
},
-/area/golden_arrow/briefing)
-"sW" = (
-/obj/structure/closet/wardrobe{
- name = "PT uniform"
+/area/golden_arrow/motor_pool)
+"aGx" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/item/clothing/under/shorts/blue,
-/obj/item/clothing/under/shorts/red,
-/obj/item/clothing/under/shorts/blue,
-/obj/item/clothing/head/headband/red,
-/obj/item/clothing/under/shorts/red,
-/obj/structure/barricade/handrail{
- layer = 3.1;
- pixel_y = -1
+/obj/structure/machinery/camera/autoname/golden_arrow{
+ dir = 8
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/turf/open/floor/almayer/edge{
+ dir = 4
+ },
+/area/golden_arrow/dorms)
+"aGB" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/cryo_cells)
-"sX" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
- dir = 4;
- icon_state = "cargo_arrow"
+ icon_state = "plate"
},
-/area/golden_arrow/cryo_cells)
-"sY" = (
+/area/golden_arrow/supply)
+"aGC" = (
/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+ icon_state = "W";
+ layer = 3.3;
+ pixel_x = -1
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"sZ" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/machinery/light{
- dir = 1
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
},
-/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"ta" = (
+"aGD" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/prep_hallway)
+"aGE" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
+/obj/structure/machinery/door/poddoor/almayer{
dir = 4;
- icon_state = "cargo_arrow"
+ name = "\improper Storage Bay Two Blast Door";
+ id = "cargobay2"
},
-/area/golden_arrow/hangar)
-"tb" = (
/turf/open/floor/almayer{
- icon_state = "cargo_arrow"
+ icon_state = "test_floor4"
},
/area/golden_arrow/hangar)
-"td" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out";
- pixel_x = -1
+"aGF" = (
+/obj/structure/machinery/landinglight/ds1/delaythree{
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/heavyduty{
- icon_state = "1-2"
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"tg" = (
-/obj/structure/surface/table/almayer,
-/obj/item/prop/almayer/comp_open{
- pixel_x = -6;
- pixel_y = 9
+"aGJ" = (
+/obj/structure/machinery/door/poddoor/almayer{
+ dir = 4;
+ name = "\improper Vehicle Bay Two Blast Door";
+ id = "vehiclebay2"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
},
-/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"th" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W";
- layer = 3.3
+"aGK" = (
+/turf/open/floor/almayer{
+ icon_state = "mono"
},
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+/area/space)
+"aGN" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"tl" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/golden_arrow/platoon_commander_rooms)
-"tn" = (
-/obj/structure/shuttle/part/dropship1/transparent/middle_left_wing{
- name = "\improper Tripoli"
+/obj/structure/cable/heavyduty{
+ icon_state = "1-8"
},
-/turf/open/floor/plating,
+/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"tp" = (
-/obj/structure/machinery/door/airlock/almayer/secure{
- dir = 1;
- name = "\improper Assembly Room";
- req_access = list();
- req_one_access_txt = "19;12"
- },
-/obj/structure/cable{
- icon_state = "1-2"
+"aGO" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S";
+ pixel_y = 1
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ dir = 1;
+ icon_state = "cargo_arrow"
},
-/area/golden_arrow/briefing)
-"tr" = (
-/obj/structure/machinery/camera/autoname/golden_arrow{
- dir = 4;
- name = "ship-grade camera"
+/area/golden_arrow/hangar)
+"aGR" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/sign/safety/storage{
- pixel_x = -18;
- pixel_y = -7
+/turf/open/floor/almayer/edge/smooth/corner,
+/area/golden_arrow/supply)
+"aGS" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ layer = 3.3
},
-/obj/structure/sign/safety/two{
- pixel_x = -18;
- pixel_y = 7
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonprep)
-"ts" = (
-/obj/structure/machinery/light,
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"tt" = (
+"aGT" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/structure/machinery/light/double/blue{
+ dir = 4;
+ light_color = "#dae2ff"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/prep_hallway)
+"aGU" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
pixel_y = 1
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
- },
+/obj/structure/pipes/vents/pump,
/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"tu" = (
-/obj/structure/machinery/autodoc_console{
- dir = 1;
- pixel_y = 6
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+"aGX" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
},
-/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- layer = 2.5;
- pixel_x = -1;
- pixel_y = 1
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
-/obj/structure/sign/safety/autodoc{
- pixel_x = -17
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"aGY" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/item/device/radio/intercom{
- freerange = 1;
- name = "General Listening Channel";
- pixel_y = -29
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ name = "\improper Equipment Locker";
+ id = "squadarmory"
},
/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+ icon_state = "test_floor4"
},
-/area/golden_arrow/medical)
-"tv" = (
-/obj/effect/decal/cleanable/blood/oil,
-/obj/structure/closet/coffin/woodencrate{
- name = "gym equipment"
+/area/golden_arrow/platoonarmory)
+"aGZ" = (
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ name = "\improper Hangar Lockdown Blast Door";
+ id = "cargolockswest";
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
-/obj/item/clothing/gloves/boxing,
-/obj/item/clothing/gloves/boxing/blue,
-/obj/item/clothing/gloves/boxing/green,
-/obj/item/clothing/gloves/boxing/yellow,
/turf/open/floor/almayer{
- icon_state = "cargo"
+ icon_state = "test_floor4"
},
-/area/golden_arrow/hangar)
-"tx" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer,
-/area/golden_arrow/platoon_commander_rooms)
-"tA" = (
+/area/golden_arrow/supply)
+"aHa" = (
/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- layer = 2.5;
- pixel_y = 1
+ icon_state = "E";
+ pixel_x = 1
},
-/obj/effect/decal/strata_decals/grime/grime1{
- dir = 4
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
},
-/obj/structure/machinery/firealarm{
- dir = 8;
- pixel_x = -24
+/obj/structure/largecrate/supply/supplies/mre{
+ layer = 3.1
},
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"tB" = (
-/obj/structure/bed/chair/comfy,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/cable{
- icon_state = "1-2"
+"aHb" = (
+/turf/open/floor/almayer/uscm{
+ icon_state = "logo_directional1";
+ dir = 4
},
-/turf/open/floor/almayer,
-/area/golden_arrow/cryo_cells)
-"tC" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
+/area/golden_arrow/hangar)
+"aHc" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/largecrate/supply/supplies/flares{
- pixel_x = -3;
- pixel_y = 9
+/turf/open/floor/almayer/edge{
+ dir = 8
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/area/golden_arrow/prep_hallway)
+"aHd" = (
+/obj/structure/toilet{
+ dir = 1
},
-/area/golden_arrow/hangar)
-"tJ" = (
-/obj/structure/machinery/medical_pod/bodyscanner{
- pixel_y = 6
+/obj/structure/barricade/metal{
+ dir = 8;
+ pixel_x = -1
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/obj/structure/barricade/metal{
+ dir = 4;
+ pixel_x = 1
+ },
+/obj/structure/barricade/metal{
+ dir = 8;
+ pixel_y = 8;
+ pixel_x = -1
+ },
+/obj/structure/barricade/metal{
+ dir = 4;
+ pixel_y = 8;
+ pixel_x = 1
+ },
+/obj/structure/curtain/red,
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/cryo_cells)
+"aHh" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/medical)
-"tK" = (
+/obj/structure/machinery/disposal,
/obj/effect/decal/warning_stripes{
- icon_state = "S"
+ icon_state = "N";
+ pixel_y = 1
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/disposalpipe/trunk{
+ dir = 8
},
-/area/golden_arrow/hangar)
-"tL" = (
-/obj/structure/machinery/alarm/almayer{
+/turf/open/floor/almayer/edge/smooth/endcap_left{
dir = 1
},
-/obj/structure/prop/invuln/lattice_prop{
- icon_state = "lattice3";
- pixel_x = 16;
- pixel_y = -15
+/area/golden_arrow/briefing)
+"aHk" = (
+/obj/structure/surface/table/almayer,
+/obj/item/toy/deck/uno,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/dorms)
+"aHl" = (
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 2;
+ id = "garrow_vehicle_elevator_one"
},
-/obj/structure/prop/invuln/lattice_prop{
- icon_state = "lattice2";
- pixel_x = 16;
- pixel_y = 16
+/turf/open/floor/almayer{
+ icon_state = "black"
},
-/obj/structure/pipes/vents/scrubber{
- dir = 8
+/area/golden_arrow/vehicle_shuttle/upper)
+"aHn" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
},
-/obj/structure/machinery/disposal{
- density = 0;
- layer = 3.2;
- pixel_y = 16
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 4
},
-/obj/structure/disposalpipe/trunk{
- dir = 8
+/area/golden_arrow/hangar)
+"aHp" = (
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/golden_arrow/medical)
+"aHr" = (
+/obj/structure/cable{
+ icon_state = "4-8"
},
/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"aHs" = (
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
/area/golden_arrow/dorms)
-"tO" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{
- density = 0;
- pixel_y = 19
+"aHt" = (
+/obj/structure/closet/secure_closet/engineering_electrical{
+ req_one_access = null
},
/turf/open/floor/almayer,
/area/golden_arrow/engineering)
-"tP" = (
-/obj/structure/surface/table/almayer,
-/obj/item/storage/box/co2_knife{
- pixel_x = 3;
- pixel_y = 13
+"aHu" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/item/ammo_box/magazine/misc/flares/empty{
- pixel_x = -14;
- pixel_y = 16
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"aHw" = (
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/golden_arrow/platoon_commander_rooms)
+"aHx" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/item/storage/box/pdt_kit/advanced,
-/obj/structure/machinery/alarm/almayer{
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2-4"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/prep_hallway)
+"aHz" = (
+/obj/structure/platform_decoration,
+/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonprep)
-"tS" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
+/obj/structure/machinery/light/small{
+ light_color = "#C02526";
+ color = "#C02526";
+ dir = 1
},
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/motor_pool)
+"aHB" = (
/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- pixel_y = 1
+ icon_state = "W"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"tT" = (
-/obj/structure/machinery/light{
+/turf/open/floor/almayer/edge/smooth/corner{
dir = 1
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/largecrate/random/secure,
-/obj/item/reagent_container/food/drinks/cans/waterbottle{
- pixel_x = 7;
- pixel_y = 13
- },
-/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"tU" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+"aHC" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/machinery/door/poddoor/almayer{
- dir = 4;
- name = "\improper Storage Bay Blast Door"
+/obj/structure/bed/bedroll{
+ pixel_x = -2;
+ color = "#333333";
+ name = "gym mat";
+ buckle_lying = null;
+ can_buckle = 0;
+ foldabletype = null;
+ desc = "A black gym mat, useful if you don't want to use the cold hard floor for exercise."
},
/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/golden_arrow/hangar)
-"tV" = (
-/obj/structure/machinery/door/poddoor/almayer{
dir = 4;
- name = "\improper Storage Bay Blast Door"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "cargo_arrow"
},
/area/golden_arrow/hangar)
-"tX" = (
-/obj/structure/machinery/power/smes/buildable,
-/obj/effect/decal/cleanable/dirt,
+"aHF" = (
/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/golden_arrow/engineering)
-"ua" = (
-/obj/structure/sign/safety/ladder{
- pixel_y = 29
- },
-/obj/effect/decal/cleanable/cobweb,
-/obj/structure/ladder{
- height = -1;
- id = "enginorth"
+ icon_state = "dark_sterile"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"ub" = (
+/area/golden_arrow/cryo_cells)
+"aHG" = (
+/obj/structure/pipes/vents/pump,
/obj/effect/decal/warning_stripes{
- icon_state = "W";
- layer = 3.3;
- pixel_x = -1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/bed/bedroll{
- buckle_lying = null;
- can_buckle = 0;
- color = "#333333";
- desc = "A black gym mat, useful if you don't want to use the cold hard floor for exercise.";
- foldabletype = null;
- name = "gym mat";
- pixel_x = 1
+ icon_state = "cargo"
},
/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"ud" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/light,
-/turf/open/floor/almayer{
- icon_state = "cargo"
+"aHI" = (
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
},
/area/golden_arrow/hangar)
-"uf" = (
+"aHJ" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/machinery/door/poddoor/railing{
- dir = 8;
- id = "apcbayrailing2"
+ dir = 4;
+ id = "garrow_vehicle_elevator_two"
},
/turf/open/floor/almayer{
- dir = 8;
- icon_state = "black"
+ icon_state = "black";
+ dir = 4
},
-/area/golden_arrow/hangar)
-"uh" = (
-/turf/closed/wall/almayer/outer,
-/area/golden_arrow/prep_hallway)
-"ui" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
+/area/golden_arrow/vehicle_shuttle/two/upper)
+"aHM" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
-/obj/structure/machinery/gear{
- id = "supply_elevator_gear"
+/obj/structure/cable{
+ icon_state = "1-4"
},
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "dark_sterile"
},
-/area/golden_arrow/engineering)
-"uj" = (
-/obj/structure/surface/table/almayer,
-/obj/item/prop/colony/game{
- pixel_x = 15;
- pixel_y = 10
+/area/golden_arrow/medical)
+"aHP" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
},
+/obj/structure/pipes/vents/scrubber,
/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"uk" = (
-/turf/open/floor/almayer,
-/area/golden_arrow/platoon_commander_rooms)
-"ul" = (
-/obj/effect/decal/cleanable/dirt,
+/area/golden_arrow/hangar)
+"aHQ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 8
+ },
+/area/golden_arrow/cryo_cells)
+"aHR" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/medical)
+"aHU" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/plating/plating_catwalk,
/area/golden_arrow/hangar)
-"uo" = (
-/obj/effect/decal/cleanable/dirt,
+"aHV" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "cargo_arrow"
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
},
-/area/golden_arrow/hangar)
-"uq" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/vents/pump,
-/obj/structure/machinery/disposal{
- density = 0;
- layer = 3.2;
- pixel_y = 16
+/area/golden_arrow/platoonprep)
+"aHX" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"ur" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+/turf/open/floor/almayer{
+ icon_state = "plating_striped"
},
-/obj/effect/decal/strata_decals/grime/grime3,
-/turf/open/floor/almayer,
+/area/golden_arrow/engineering)
+"aHZ" = (
+/turf/closed/wall/almayer/outer,
/area/golden_arrow/platoonarmory)
-"ut" = (
-/obj/structure/barricade/handrail{
- dir = 4
+"aIb" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/barricade/handrail{
+/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
-/obj/structure/closet/secure_closet,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/prop/invuln/lattice_prop{
- icon_state = "lattice3";
- pixel_x = 16;
- pixel_y = -15
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning";
+ dir = 8
},
-/obj/structure/prop/invuln/lattice_prop{
- icon_state = "lattice2";
- pixel_x = 16;
- pixel_y = 16
+/turf/open/floor/almayer/edge{
+ dir = 8
+ },
+/area/golden_arrow/platoonarmory)
+"aIc" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/vents/scrubber{
+ dir = 8
},
/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"uv" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/machinery/door/poddoor/almayer{
- dir = 2;
- name = "\improper Storage Bay Blast Door"
+/area/golden_arrow/hangar)
+"aIf" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ name = "\improper Storage Bay One Blast Door";
+ id = "cargobay1"
},
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
/area/golden_arrow/hangar)
-"uw" = (
-/obj/structure/machinery/door/poddoor/railing{
- id = "apcbayrailing2"
- },
+"aIg" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "black"
+ icon_state = "cargo"
},
/area/golden_arrow/hangar)
-"uy" = (
-/obj/structure/surface/table/almayer,
-/obj/item/reagent_container/food/drinks/coffee/marine{
- pixel_x = 5;
- pixel_y = 2
+"aIh" = (
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
},
-/obj/structure/machinery/reagentgrinder/industrial{
- pixel_y = 8
+/area/golden_arrow/motor_pool)
+"aIk" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"uz" = (
-/turf/closed/shuttle/midway{
- icon_state = "69";
- name = "\improper Tripoli"
+/obj/structure/machinery/light/double/blue{
+ dir = 1
},
-/area/golden_arrow/hangar)
-"uA" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/disposal,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/motor_pool)
+"aIl" = (
/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+ icon_state = "E"
},
-/obj/structure/disposalpipe/trunk{
+/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/briefing)
-"uC" = (
-/obj/item/storage/toolbox/mechanical{
- pixel_x = 3;
- pixel_y = -7
+/area/golden_arrow/hangar)
+"aIm" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/shuttle/dropship{
- icon_state = "rasputin14"
+/obj/structure/disposalpipe/segment{
+ dir = 1
},
-/area/golden_arrow/hangar)
-"uD" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W";
- layer = 3.3
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/motor_pool)
+"aIn" = (
+/turf/open/floor/almayer/edge{
+ dir = 1
},
+/area/golden_arrow/supply)
+"aIo" = (
/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+ icon_state = "E"
},
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 8
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"uE" = (
-/obj/structure/pipes/vents/scrubber{
- dir = 4
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/prep_hallway)
-"uF" = (
-/obj/structure/sink{
- layer = 3.1;
- pixel_y = 24
+/area/golden_arrow/hangar)
+"aIp" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
-/obj/structure/mirror{
- pixel_x = -1;
- pixel_y = 35
+/obj/structure/machinery/door/poddoor/almayer{
+ dir = 4;
+ name = "\improper Vehicle Bay Two Blast Door";
+ id = "vehiclebay2"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoon_commander_rooms)
-"uI" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"uK" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 4
+"aIr" = (
+/turf/closed/wall/almayer,
+/area/golden_arrow/platoonprep)
+"aIs" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/cable{
- icon_state = "1-8"
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "plating_striped"
},
-/obj/structure/cable{
- icon_state = "2-8"
+/area/golden_arrow/engineering)
+"aIu" = (
+/obj/structure/sign/safety/rewire{
+ pixel_x = 32
},
-/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer,
-/area/golden_arrow/cryo_cells)
-"uM" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
+/area/golden_arrow/briefing)
+"aIv" = (
+/obj/structure/ladder{
+ id = "engisouth"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/sign/safety/ladder{
+ pixel_x = -17
},
/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"uR" = (
-/obj/structure/sign/safety/hazard{
- pixel_x = -20;
- pixel_y = -7
+/area/golden_arrow/hangar)
+"aIw" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
},
-/obj/structure/sign/safety/bulkhead_door{
- pixel_x = -20;
- pixel_y = 7
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
- icon_state = "cargo_arrow"
+ icon_state = "dark_sterile"
},
-/area/golden_arrow/prep_hallway)
-"uS" = (
+/area/golden_arrow/medical)
+"aIx" = (
/obj/effect/decal/warning_stripes{
- icon_state = "NE-out"
- },
-/obj/structure/machinery/light{
- dir = 4
+ icon_state = "E";
+ pixel_x = 1
},
-/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/blood/oil,
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"uW" = (
-/obj/effect/decal/cleanable/dirt,
+"aIy" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/largecrate/random/case/double,
+/obj/item/storage/box/cups{
+ pixel_x = -1;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/hangar)
+"aIz" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/heavyduty{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"uX" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/surface/table/almayer,
-/obj/item/storage/belt/utility/full{
- pixel_y = 12
- },
-/obj/item/storage/belt/utility/full{
- pixel_x = 2;
- pixel_y = 2
- },
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
- },
-/area/golden_arrow/engineering)
-"uY" = (
-/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
- name = "\improper Cryo Bay"
- },
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/prep_hallway)
+"aIB" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
},
-/area/golden_arrow/cryo_cells)
-"uZ" = (
/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/machinery/prop/almayer/CICmap{
- density = 0;
- icon_state = "shuttle";
- layer = 2.97;
- name = "Tactical Map Display";
- pixel_y = 21
- },
-/obj/structure/noticeboard{
- pixel_x = -21;
- pixel_y = 30
+ icon_state = "0-8";
+ layer = 2.36
},
/turf/open/floor/almayer,
/area/golden_arrow/briefing)
-"va" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cargo_container/wy/mid{
- opacity = 0
- },
-/obj/structure/sign/poster{
- desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE.";
- icon_state = "poster11";
- name = "YOU ALWAYS KNOW A WORKING JOE.";
- pixel_x = -22;
- pixel_y = 3;
- serial_number = 11
- },
-/obj/structure/sign/poster{
- desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that.";
- icon_state = "poster16";
- name = "'Miss July' Pinup";
- serial_number = 16
- },
-/obj/structure/sign/poster{
- desc = "One of those hot, tanned babes back the beaches of good ol' Earth.";
- icon_state = "poster12";
- name = "Beach Babe Pinup";
- pixel_x = 6;
- pixel_y = 8;
- serial_number = 12
- },
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"vb" = (
+"aIC" = (
/turf/closed/wall/almayer/outer,
-/area/golden_arrow/dorms)
-"vf" = (
-/obj/structure/barricade/handrail{
- dir = 4
+/area/golden_arrow/engineering)
+"aIG" = (
+/obj/structure/sign/safety/bulkhead_door{
+ pixel_y = 38
},
-/obj/structure/barricade/handrail{
- dir = 8
+/obj/structure/sign/safety/hazard{
+ pixel_x = 14;
+ pixel_y = 38
},
-/obj/structure/closet/secure_closet,
-/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"vg" = (
-/obj/structure/machinery/light{
- dir = 8
+/obj/structure/sign/safety/ammunition{
+ pixel_y = 26
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 8;
+ icon_state = "cargo_arrow"
},
/area/golden_arrow/hangar)
-"vk" = (
-/obj/structure/machinery/door/poddoor/almayer{
- dir = 4;
- id = "bay2door";
- name = "\improper Weapons Bay Two Blast Door"
+"aIK" = (
+/obj/structure/surface/table/almayer,
+/obj/item/clothing/suit/storage/jacket/marine/service{
+ pixel_x = 11
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/obj/item/prop/magazine/dirty/torn{
+ pixel_x = -6;
+ pixel_y = 6
},
-/area/golden_arrow/hangar)
-"vl" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out"
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/dorms)
+"aIN" = (
+/obj/structure/machinery/light/double/blue{
+ dir = 8;
+ light_color = "#dae2ff"
},
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"vm" = (
-/obj/structure/shuttle/part/dropship1/left_inner_wing_connector{
- name = "\improper Tripoli"
- },
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"vn" = (
-/obj/structure/cable/heavyduty{
- icon_state = "2-4"
+"aIP" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"vo" = (
/obj/effect/decal/warning_stripes{
- icon_state = "N";
+ icon_state = "NW-out";
pixel_y = 1
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"vp" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
- },
-/obj/structure/machinery/door/poddoor/railing{
- dir = 2;
- id = "apcbayrailing2"
+/obj/structure/machinery/gear{
+ id = "garrow_vehicle_elevator_one"
},
/turf/open/floor/almayer{
- icon_state = "black"
+ icon_state = "blackcorner";
+ dir = 1
},
-/area/golden_arrow/hangar)
-"vq" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 4
+/area/golden_arrow/vehicle_shuttle/upper)
+"aIQ" = (
+/obj/structure/machinery/light/double/blue{
+ dir = 1;
+ light_color = "#dae2ff"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/hangar)
-"vs" = (
+/obj/structure/machinery/cm_vending/sorted/marine_food,
/turf/open/floor/almayer{
- dir = 4;
- icon_state = "cargo_arrow"
+ icon_state = "plate"
},
-/area/golden_arrow/platoonarmory)
-"vt" = (
-/obj/structure/machinery/light{
- dir = 4
+/area/golden_arrow/cryo_cells)
+"aIR" = (
+/obj/structure/sign/safety/medical{
+ pixel_x = 32;
+ pixel_y = 6
},
-/turf/open/floor/almayer{
- icon_state = "mono"
+/turf/open/floor/almayer/edge{
+ dir = 6
},
-/area/golden_arrow/supply)
-"vu" = (
-/obj/structure/bed/chair{
- dir = 8
+/area/golden_arrow/prep_hallway)
+"aIS" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/golden_arrow/platoon_commander_rooms)
-"vv" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/device/radio/intercom{
- freerange = 1;
- name = "General Listening Channel";
- pixel_y = 28
+/obj/effect/decal/cleanable/blood/oil,
+/obj/structure/machinery/door/poddoor/railing{
+ id = "garrow_vehicle_elevator_one"
},
/turf/open/floor/almayer{
- dir = 8;
- icon_state = "cargo_arrow"
+ icon_state = "black";
+ dir = 1
+ },
+/area/golden_arrow/vehicle_shuttle/upper)
+"aIT" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ layer = 2.5;
+ pixel_y = 1;
+ pixel_x = -1
+ },
+/obj/effect/decal/cleanable/blood/oil,
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 8
},
/area/golden_arrow/hangar)
-"vw" = (
-/obj/structure/machinery/cm_vending/clothing/synth/snowflake,
-/turf/open/floor/almayer{
- icon_state = "test_floor5"
+"aIU" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
-/area/golden_arrow/synthcloset)
-"vx" = (
-/obj/vehicle/powerloader{
- dir = 4
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
},
/turf/open/floor/plating/plating_catwalk,
/area/golden_arrow/hangar)
-"vy" = (
-/obj/structure/machinery/firealarm{
- dir = 8;
- pixel_x = -24
+"aIV" = (
+/obj/structure/platform{
+ dir = 4;
+ layer = 2.7
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/stairs/perspective,
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/area/golden_arrow/hangar)
-"vz" = (
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"aIW" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/cable/heavyduty{
icon_state = "4-8"
},
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/heavyduty{
+ icon_state = "0-2"
+ },
/turf/open/floor/plating/plating_catwalk,
/area/golden_arrow/hangar)
-"vD" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/largecrate/random/case/small,
-/obj/structure/machinery/light{
- dir = 1
+"aIX" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
},
/turf/open/floor/almayer{
- icon_state = "cargo"
+ icon_state = "mono"
},
-/area/golden_arrow/hangar)
-"vF" = (
-/obj/structure/machinery/door/poddoor/almayer,
+/area/golden_arrow/platoonarmory)
+"aIY" = (
+/obj/structure/machinery/door_control{
+ id = "hangarlockdownsouth";
+ name = "hangarlockdownsouth";
+ pixel_x = -23;
+ needs_power = 0
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow";
+ color = "#E10600";
+ dir = 8
+ },
+/turf/open/space/basic,
+/area/space)
+"aIZ" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/cable/heavyduty{
+/obj/structure/cable{
icon_state = "1-2"
},
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "dark_sterile"
},
-/area/golden_arrow/prep_hallway)
-"vG" = (
-/obj/structure/largecrate/random/secure,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/area/golden_arrow/medical)
+"aJa" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
},
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"vK" = (
-/obj/structure/machinery/door/poddoor/almayer/open{
- dir = 8
+"aJc" = (
+/obj/structure/machinery/light/double/blue{
+ dir = 8;
+ light_color = "#dae2ff"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"vN" = (
-/obj/structure/pipes/vents/scrubber{
- dir = 8
+/obj/structure/cable/heavyduty{
+ icon_state = "0-4"
},
-/obj/structure/machinery/light{
- dir = 4
+/obj/structure/cable{
+ layer = 2.36
},
-/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+/turf/open/floor/almayer,
+/area/golden_arrow/platoon_commander_rooms)
+"aJe" = (
+/obj/structure/machinery/floodlight/landing/floor{
+ color = "#dae2ff";
+ light_color = "#dae2ff"
},
-/area/golden_arrow/cryo_cells)
-"vP" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/computer/cameras/almayer/vehicle{
- dir = 8;
- network = list("Golden Arrow","Vehicle","Midway");
- pixel_x = 17
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/obj/structure/machinery/prop/almayer/CICmap{
- density = 0;
- dir = 8;
- icon_state = "shuttle";
- layer = 2.97;
- name = "Tactical Map Display";
- pixel_x = 17;
- pixel_y = 14
+/area/golden_arrow/hangar)
+"aJf" = (
+/obj/structure/sign/safety/bulkhead_door{
+ pixel_y = 27
},
-/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{
- dir = 8;
- icon_state = "cameras_old";
- name = "Midway Remote Control Console";
- pixel_x = 17;
- pixel_y = -14;
- shuttleId = "dropship_midway"
+/obj/structure/sign/safety/hazard{
+ pixel_x = 14;
+ pixel_y = 27
},
-/obj/structure/surface/table/reinforced/almayer_B{
- layer = 2.01;
- pixel_x = 14
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/machinery/light{
- dir = 1
+/obj/structure/reagent_dispensers/water_cooler/stacks{
+ pixel_y = 18;
+ layer = 3.6;
+ density = 0
},
-/obj/item/clothing/glasses/hud/health{
- pixel_x = 7;
- pixel_y = 5
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "cargo_arrow"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoon_commander_rooms)
-"vQ" = (
+/area/golden_arrow/hangar)
+"aJg" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/cable/heavyduty{
- icon_state = "1-2"
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 4
},
-/obj/structure/machinery/light{
+/turf/open/floor/almayer/edge/smooth{
dir = 4
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/prep_hallway)
-"vR" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/bed/bedroll{
- buckle_lying = null;
- can_buckle = 0;
- color = "#333333";
- desc = "A black gym mat, useful if you don't want to use the cold hard floor for exercise.";
- foldabletype = null;
- name = "gym mat";
- pixel_x = -2
+/area/golden_arrow/hangar)
+"aJh" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
},
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "cargo_arrow"
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/largecrate/random/case/double{
+ pixel_y = 9;
+ layer = 3.1
+ },
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 4
},
/area/golden_arrow/hangar)
-"vS" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 8
+"aJi" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
},
-/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"vZ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
+"aJj" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge/smooth{
dir = 1
},
+/area/golden_arrow/hangar)
+"aJk" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"wd" = (
-/obj/structure/machinery/power/terminal,
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/engineering)
-"we" = (
+/area/golden_arrow/shared_office)
+"aJl" = (
/obj/effect/decal/warning_stripes{
- icon_state = "S"
+ icon_state = "E";
+ pixel_x = 1
},
/obj/effect/decal/warning_stripes{
- icon_state = "N";
+ icon_state = "NW-out";
pixel_y = 1
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"wf" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
+/obj/structure/machinery/gear{
+ id = "supply_elevator_gear"
},
-/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
-/area/golden_arrow/medical)
-"wg" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W";
- layer = 3.3
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 8
},
+/area/golden_arrow/hangar)
+"aJn" = (
/obj/effect/decal/warning_stripes{
- icon_state = "E"
+ icon_state = "cargo"
},
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+/obj/structure/cargo_container/grant/left,
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
+/area/golden_arrow/motor_pool)
+"aJp" = (
+/obj/structure/machinery/camera/autoname/golden_arrow{
+ dir = 4
},
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"wh" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/trash/crushed_cup{
- pixel_x = 6;
- pixel_y = -10
+"aJq" = (
+/obj/structure/machinery/light/double/blue{
+ dir = 1;
+ light_color = "#dae2ff"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"wi" = (
-/obj/structure/ship_ammo/minirocket,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/ship_ammo/minirocket{
- layer = 3.1;
- pixel_y = 9
+/turf/open/floor/almayer/edge{
+ dir = 1
},
-/turf/open/floor/almayer{
- dir = 10;
- icon_state = "cargo"
+/area/golden_arrow/prep_hallway)
+"aJs" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/roller{
+ pixel_y = 17
},
-/area/golden_arrow/hangar)
-"wj" = (
-/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/engineering)
-"wm" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+/obj/item/roller{
+ pixel_y = 23
},
-/obj/structure/cargo_container/wy/mid{
- opacity = 0;
- pixel_y = -17
+/obj/item/storage/firstaid/regular{
+ pixel_y = 1;
+ pixel_x = -2
},
/turf/open/floor/almayer{
- icon_state = "cargo"
+ icon_state = "dark_sterile"
},
-/area/golden_arrow/hangar)
-"wn" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- pixel_y = 1
+/area/golden_arrow/medical)
+"aJu" = (
+/turf/open/floor/almayer/edge{
+ dir = 8
+ },
+/area/golden_arrow/supply)
+"aJv" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
},
-/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"wr" = (
-/obj/structure/machinery/floodlight/landing/floor{
+"aJw" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/ammo_box/magazine/mk1{
+ layer = 3.1;
+ pixel_y = 13;
pixel_x = 3
},
-/obj/structure/machinery/landinglight/ds1{
- dir = 8
+/obj/item/facepaint/sunscreen_stick{
+ pixel_y = 2;
+ pixel_x = -2;
+ layer = 3.2
+ },
+/obj/structure/sign/poster{
+ desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE.";
+ icon_state = "poster11";
+ name = "YOU ALWAYS KNOW A WORKING JOE.";
+ pixel_x = 24;
+ serial_number = 11
+ },
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
},
/turf/open/floor/almayer{
icon_state = "plate"
},
+/area/golden_arrow/platoonprep)
+"aJz" = (
+/obj/structure/cargo_container/seegson/mid,
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo"
+ },
+/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"wu" = (
+"aJA" = (
+/obj/structure/machinery/door_control{
+ id = "lowercargolocks";
+ name = "lowercargolocks";
+ needs_power = 0;
+ pixel_y = 32
+ },
/obj/effect/decal/warning_stripes{
- icon_state = "S"
+ icon_state = "cargo_arrow";
+ color = "#E10600";
+ dir = 1
},
-/obj/structure/machinery/light{
- dir = 8
+/turf/open/space/basic,
+/area/space)
+"aJB" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
/area/golden_arrow/cryo_cells)
-"ww" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+"aJD" = (
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 4
},
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
+/area/golden_arrow/motor_pool)
+"aJF" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/prop/almayer/computer/PC{
+ dir = 4
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/platoonprep)
-"wx" = (
+/turf/open/floor/almayer,
+/area/golden_arrow/engineering)
+"aJM" = (
+/obj/structure/largecrate/supply/ammo/m41amk1,
+/obj/structure/largecrate/supply/ammo/m41amk1{
+ pixel_x = 3;
+ pixel_y = 10
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/platoonarmory)
+"aJN" = (
/obj/effect/decal/warning_stripes{
icon_state = "SW-out"
},
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+/obj/structure/machinery/floodlight/landing/floor{
+ color = "#dae2ff";
+ light_color = "#dae2ff"
},
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"wy" = (
-/obj/structure/machinery/door_control/brbutton{
- id = "apc1blastdoor";
- name = "vehicle bay blast door control";
- pixel_y = 28
- },
-/obj/structure/machinery/door_control/brbutton{
- id = "apcbayrailing1";
- name = "vehicle bay railing control";
- pixel_x = 13;
- pixel_y = 28
+"aJP" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
+/obj/structure/largecrate/random/case/double,
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"wB" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/machinery/door/poddoor/almayer/locked{
- dir = 2;
- name = "\improper Hangar Lockdown Blast Door"
+"aJQ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
-/obj/structure/cable/heavyduty{
- icon_state = "1-2"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"aJR" = (
+/obj/structure/largecrate/supply/ammo/m41amk1,
+/obj/structure/largecrate/supply/ammo/m41amk1{
+ pixel_x = -3;
+ pixel_y = 10
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/platoonarmory)
+"aJS" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
},
-/area/golden_arrow/hangar)
-"wC" = (
/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 1
+ icon_state = "door_warning";
+ dir = 8
},
-/obj/structure/machinery/floodlight/landing/floor,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
},
-/area/golden_arrow/hangar)
-"wD" = (
-/obj/structure/machinery/door/airlock/almayer/generic{
- dir = 1;
- name = "Bathroom"
+/area/golden_arrow/platoon_commander_rooms)
+"aJU" = (
+/obj/structure/largecrate/random/secure,
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
+/turf/open/floor/almayer/edge{
+ dir = 10
+ },
+/area/golden_arrow/dorms)
+"aJV" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ dir = 5;
+ icon_state = "plating"
},
-/area/golden_arrow/cryo_cells)
-"wE" = (
-/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{
- req_access = list();
- req_one_access_txt = "8;12;39;40"
+/area/golden_arrow/engineering)
+"aJX" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonprep)
-"wF" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/platform/stair_cut,
-/obj/structure/stairs/perspective{
- dir = 8;
- icon_state = "p_stair_full"
+/turf/open/floor/almayer/edge{
+ dir = 4
},
-/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"wG" = (
-/obj/structure/cargo_container/wy/mid{
- pixel_y = 5
+/area/golden_arrow/platoonarmory)
+"aJY" = (
+/obj/item/reagent_container/food/drinks/coffeecup/wy{
+ desc = "A matte gray coffee mug bearing the Weyland-Yutani logo on its front. Looks like someone spat in it.";
+ name = "dip cup";
+ pixel_x = -5;
+ pixel_y = 18
},
-/obj/structure/blocker/invisible_wall,
+/obj/structure/gun_rack/m41/unloaded,
/turf/open/floor/almayer,
+/area/golden_arrow/platoonarmory)
+"aJZ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
+ },
/area/golden_arrow/hangar)
-"wH" = (
-/obj/vehicle/powerloader{
- dir = 1
+"aKa" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
- icon_state = "cargo"
+ icon_state = "plate"
},
/area/golden_arrow/hangar)
-"wJ" = (
-/obj/structure/machinery/light{
+"aKb" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo"
+ },
+/obj/structure/barricade/handrail{
dir = 4
},
-/obj/structure/cable{
- icon_state = "1-8"
+/obj/vehicle/powerloader,
+/obj/structure/machinery/light/small{
+ light_color = "#C02526";
+ color = "#C02526";
+ dir = 1
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/shared_office)
-"wP" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/machinery/door/poddoor/railing{
+/obj/structure/prop{
+ icon = 'icons/obj/structures/props/platforms.dmi';
+ icon_state = "platform";
+ name = "powerloader dock";
+ desc = "A square metal surface resting on four legs.";
dir = 4;
- id = "apcbayrailing1"
+ layer = 2.97
},
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "black"
+/obj/structure/prop{
+ icon = 'icons/obj/structures/props/platforms.dmi';
+ icon_state = "platform";
+ name = "powerloader dock";
+ desc = "A square metal surface resting on four legs.";
+ dir = 8;
+ layer = 2.97
},
-/area/golden_arrow/hangar)
-"wQ" = (
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonarmory)
-"wU" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/surface/table/almayer,
-/obj/item/tool/screwdriver{
- icon_state = "screwdriver4";
- pixel_x = 1
+/obj/structure/barricade/handrail{
+ dir = 8;
+ pixel_x = -1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/obj/item/prop/helmetgarb/gunoil{
- pixel_x = -14;
- pixel_y = 15
+/area/golden_arrow/supply)
+"aKd" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
-/obj/structure/machinery/camera/autoname/golden_arrow{
- dir = 1
+/obj/structure/bed/chair/comfy{
+ dir = 4
},
/turf/open/floor/almayer,
-/area/golden_arrow/platoonprep)
-"wV" = (
-/obj/structure/machinery/door/poddoor/almayer/locked{
- dir = 4;
- name = "\improper Hangar Lockdown Blast Door"
+/area/golden_arrow/cryo_cells)
+"aKi" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
-/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"wX" = (
-/obj/structure/machinery/door/poddoor/almayer/open{
+/obj/structure/machinery/door/poddoor/almayer{
dir = 4;
- name = "\improper Storage Bay One Blast Door"
+ name = "\improper Weapons Bay One Blast Door";
+ id = "weaponsbay1"
},
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
/area/golden_arrow/hangar)
-"wY" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/closed/wall/almayer/outer,
-/area/golden_arrow/hangar)
-"xa" = (
-/obj/structure/machinery/door/poddoor/almayer/locked{
- dir = 2;
- name = "\improper Hangar Lockdown Blast Door"
+"aKj" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ name = "\improper Weapons Locker";
+ id = "squadarmory";
+ pixel_y = -4
},
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/golden_arrow/hangar)
-"xc" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
+/area/golden_arrow/platoonarmory)
+"aKk" = (
+/obj/structure/bed/chair/comfy,
+/turf/open/floor/almayer,
+/area/golden_arrow/cryo_cells)
+"aKl" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
},
+/area/golden_arrow/supply)
+"aKn" = (
/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/hangar)
-"xi" = (
-/obj/structure/bed{
- can_buckle = 0
+/area/golden_arrow/engineering)
+"aKo" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall/almayer/outer,
+/area/golden_arrow/dorms)
+"aKq" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/item/bedsheet/rd,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/prop/magazine/book/theartofwar{
- layer = 4.1;
- pixel_x = -1
+/obj/effect/decal/cleanable/blood/oil,
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoon_commander_rooms)
-"xl" = (
/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
+ icon_state = "cargo"
},
+/obj/structure/cargo_container/horizontal/blue/top,
/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"xp" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W";
- pixel_x = -1;
- pixel_y = 1
+"aKr" = (
+/obj/effect/landmark/start/marine/alpha,
+/obj/effect/landmark/late_join/alpha,
+/obj/effect/landmark/late_join,
+/turf/open/floor/almayer/edge{
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 6
+/area/golden_arrow/cryo_cells)
+"aKs" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/structure/machinery/light_switch{
+ pixel_x = -24
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "cargo"
},
-/area/golden_arrow/cryo_cells)
-"xs" = (
-/turf/open/floor/almayer/uscm{
- icon_state = "logo_directional1"
+/area/golden_arrow/briefing)
+"aKt" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S";
+ layer = 3.3
},
-/area/golden_arrow/hangar)
-"xy" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "cargo_arrow"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/prep_hallway)
+"aKu" = (
+/obj/structure/machinery/light/double/blue{
+ dir = 1;
+ light_color = "#dae2ff"
},
-/area/golden_arrow/hangar)
-"xz" = (
-/obj/structure/machinery/floodlight/landing/floor,
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"xA" = (
+"aKv" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
pixel_x = 1
},
+/turf/open/floor/almayer/edge/smooth/corner,
+/area/golden_arrow/hangar)
+"aKw" = (
/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- pixel_y = 1
+ icon_state = "E";
+ pixel_x = 1
},
-/obj/effect/decal/cleanable/dirt,
-/obj/item/storage/toolbox/mechanical/green{
- pixel_y = 10
+/obj/structure/cable{
+ icon_state = "0-8";
+ layer = 2.36
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/machinery/light/small/blue{
+ dir = 1;
+ light_color = "#dae2ff";
+ light_power = 0.5
},
-/area/golden_arrow/hangar)
-"xB" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
+/turf/open/floor/almayer/edge{
dir = 1
},
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/golden_arrow/platoonarmory)
+"aKx" = (
+/obj/structure/pipes/vents/pump,
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer,
-/area/golden_arrow/prep_hallway)
-"xI" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W";
- layer = 3.3
+/area/golden_arrow/shared_office)
+"aKz" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
},
+/area/golden_arrow/cryo_cells)
+"aKD" = (
/obj/effect/decal/warning_stripes{
- icon_state = "SE-out"
+ icon_state = "cargo"
+ },
+/obj/structure/cargo_container/horizontal/blue/middle{
+ pixel_x = 16
},
/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"xJ" = (
-/obj/structure/pipes/standard/manifold/hidden/supply,
+"aKF" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/sign/safety/bulkhead_door{
+ pixel_y = -29
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_x = 14;
+ pixel_y = -29
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "cargo_arrow"
+ },
+/area/golden_arrow/hangar)
+"aKG" = (
/obj/structure/cable/heavyduty{
icon_state = "1-2"
},
-/turf/open/floor/almayer,
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
/area/golden_arrow/hangar)
-"xN" = (
-/obj/effect/landmark/observer_start,
-/turf/open/floor/almayer,
+"aKH" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ pixel_x = -1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 2;
+ pixel_x = -1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/camera/autoname/golden_arrow{
+ dir = 8
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
/area/golden_arrow/cryo_cells)
-"xP" = (
-/obj/structure/machinery/door/poddoor/railing,
-/obj/item/tool/warning_cone,
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"xR" = (
-/obj/structure/machinery/door/poddoor/almayer{
- dir = 4;
- id = "apc2blastdoor";
- name = "\improper Vehicle Bay Two Blast Door"
+"aKI" = (
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ dir = 2;
+ name = "\improper Hangar Lockdown Blast Door";
+ id = "hangarlockdownnorth"
},
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
/area/golden_arrow/hangar)
-"xV" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
+"aKL" = (
+/turf/open/floor/almayer/edge{
+ dir = 1
},
-/obj/effect/decal/strata_decals/grime/grime1,
-/obj/effect/decal/strata_decals/grime/grime4,
-/obj/structure/pipes/vents/pump{
- dir = 4
+/area/golden_arrow/prep_hallway)
+"aKM" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/prep_hallway)
+"aKN" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 1
},
-/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"xY" = (
-/obj/structure/pipes/vents/scrubber,
-/turf/open/floor/almayer,
+"aKQ" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/largecrate/random/secure{
+ pixel_y = 10
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
/area/golden_arrow/hangar)
-"xZ" = (
-/obj/structure/machinery/cm_vending/clothing/synth,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/golden_arrow/synthcloset)
-"yb" = (
+"aKS" = (
/obj/effect/decal/warning_stripes{
- icon_state = "E";
+ icon_state = "W";
+ layer = 3.3;
+ pixel_x = -1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
pixel_x = 1
},
-/obj/structure/machinery/light{
- dir = 8
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
},
-/obj/effect/decal/cleanable/dirt,
+/area/golden_arrow/medical)
+"aKV" = (
+/obj/effect/decal/cleanable/blood/oil,
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"aKW" = (
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "dark_sterile"
},
+/area/golden_arrow/medical)
+"aKX" = (
+/turf/open/floor/almayer/edge/smooth/corner,
/area/golden_arrow/hangar)
-"yc" = (
+"aKY" = (
/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_x = 1;
- pixel_y = 1
+ icon_state = "door_warning";
+ dir = 1
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+/turf/open/floor/almayer/edge{
+ dir = 5
},
-/obj/structure/cable{
- icon_state = "4-8"
+/area/golden_arrow/prep_hallway)
+"aKZ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning";
+ dir = 1
},
-/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
- pixel_y = 25
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
},
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "cargo_arrow"
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/supply)
+"aLb" = (
+/obj/structure/machinery/light/double/blue{
+ dir = 8;
+ light_color = "#dae2ff"
},
-/area/golden_arrow/cryo_cells)
-"ye" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/vents/scrubber{
+/turf/open/floor/almayer/edge/smooth{
dir = 8
},
-/turf/open/floor/almayer,
+/area/golden_arrow/cryo_cells)
+"aLd" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
+ },
/area/golden_arrow/hangar)
-"yg" = (
-/obj/structure/platform_decoration{
- dir = 4
+"aLe" = (
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
},
-/obj/structure/machinery/light{
- dir = 4
+/area/golden_arrow/supply)
+"aLi" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
+/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call{
+ dockId = "garrow_vehicle_elevator_two";
+ shuttleId = "garrow_vehicle_elevator_two";
+ pixel_y = 35;
+ name = "\improper vehicle elevator two control panel"
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/briefing)
-"yh" = (
-/obj/structure/largecrate/supply/supplies/flares{
- layer = 2.9;
- pixel_x = -7
+/area/golden_arrow/hangar)
+"aLj" = (
+/obj/effect/decal/cleanable/blood/oil,
+/obj/structure/largecrate/random/case/double,
+/obj/item/toy/beach_ball/holoball{
+ pixel_y = 15;
+ pixel_x = -2
},
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
icon_state = "cargo"
},
/area/golden_arrow/hangar)
-"ym" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/oil,
-/obj/structure/machinery/door/poddoor/railing{
- id = "apcbayrailing1"
+"aLk" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "black"
+/turf/open/floor/almayer/edge{
+ dir = 8
+ },
+/area/golden_arrow/platoonarmory)
+"aLm" = (
+/obj/effect/decal/siding{
+ icon_state = "siding2"
},
+/turf/open/floor/plating,
/area/golden_arrow/hangar)
-"yr" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+"aLp" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 10
+/obj/structure/pipes/vents/pump{
+ dir = 4
},
-/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+/turf/open/floor/almayer/edge{
+ dir = 8
},
-/area/golden_arrow/medical)
-"ys" = (
-/obj/item/storage/toolbox/mechanical/green{
- pixel_x = 2;
- pixel_y = -14
+/area/golden_arrow/platoonarmory)
+"aLs" = (
+/obj/structure/platform{
+ dir = 1
},
-/obj/structure/prop{
- density = 1;
- desc = "A fuel enhancement system for dropships. It improves the thrust produced by the fuel combustion for faster travels. Full of bullet holes and probably needs to be replaced. The label says it was manufactured in 2171";
- icon = 'icons/obj/structures/props/almayer_props64.dmi';
- icon_state = "fuel_enhancer";
- name = "Damaged FS/FES-3 fuel enhancer";
- pixel_y = 1
+/obj/structure/disposalpipe/segment{
+ dir = 8
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/hangar)
-"yt" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S";
- layer = 3.3
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
+/turf/open/floor/almayer,
+/area/golden_arrow/motor_pool)
+"aLu" = (
/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_x = 1;
- pixel_y = 1
+ icon_state = "S"
},
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"yx" = (
+"aLv" = (
/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 1
+ icon_state = "door_warning";
+ dir = 4
},
-/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
-/area/golden_arrow/hangar)
-"yA" = (
-/obj/structure/machinery/landinglight/ds1/delayone,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "mono"
},
-/area/golden_arrow/hangar)
-"yB" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W";
- layer = 3.3
+/area/golden_arrow/motor_pool)
+"aLw" = (
+/obj/structure/bed/chair/comfy{
+ dir = 1
},
-/obj/effect/decal/warning_stripes{
- icon_state = "E"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer,
+/area/golden_arrow/cryo_cells)
+"aLy" = (
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/turf/open/floor/plating/plating_catwalk,
/area/golden_arrow/hangar)
-"yF" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 1
+"aLz" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 1
+/turf/open/floor/almayer,
+/area/golden_arrow/cryo_cells)
+"aLA" = (
+/obj/structure/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
},
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"yK" = (
-/obj/structure/machinery/floodlight/landing,
-/turf/open/floor/almayer{
- icon_state = "plate"
+"aLB" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/hangar)
-"yQ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply{
+/obj/structure/disposalpipe/segment{
dir = 8
},
-/turf/open/floor/almayer,
-/area/golden_arrow/cryo_cells)
-"yR" = (
-/obj/structure/machinery/light{
- dir = 4
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/cable/heavyduty{
- icon_state = "1-2"
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/platoonprep)
-"yS" = (
-/turf/open/floor/plating,
-/area/golden_arrow/engineering)
-"yT" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/golden_arrow/hangar)
-"yW" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
- },
-/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"yX" = (
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"za" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
+ icon_state = "mono"
},
+/area/golden_arrow/motor_pool)
+"aLD" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"zf" = (
-/obj/structure/bed/chair{
- dir = 1
+/obj/structure/machinery/light/double/blue{
+ dir = 8;
+ light_color = "#dae2ff"
},
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
- icon_state = "cargo"
- },
-/area/golden_arrow/briefing)
-"zg" = (
-/turf/open/floor/almayer/uscm{
dir = 4;
- icon_state = "logo_directional1"
+ icon_state = "cargo_arrow"
},
/area/golden_arrow/hangar)
-"zj" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 1
+"aLE" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/cable/heavyduty{
- icon_state = "2-4"
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning"
},
-/obj/structure/cable{
- icon_state = "0-8";
- layer = 2.36
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/platoonprep)
+"aLF" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
},
-/obj/item/device/radio/intercom{
- freerange = 1;
- name = "General Listening Channel";
- pixel_y = 28
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 4
},
-/obj/structure/disposalpipe/segment{
+/turf/open/floor/almayer/edge/smooth{
dir = 4
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/prep_hallway)
-"zk" = (
-/obj/structure/gun_rack/m41,
-/obj/item/reagent_container/food/drinks/coffeecup/wy{
- desc = "A matte gray coffee mug bearing the Weyland-Yutani logo on its front. Looks like someone spat in it.";
- name = "dip cup";
- pixel_x = -5;
- pixel_y = 18
+/area/golden_arrow/hangar)
+"aLG" = (
+/obj/structure/machinery/door_control{
+ id = "cargolockswest";
+ name = "cargolockswest";
+ needs_power = 0;
+ pixel_y = 32
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonarmory)
-"zm" = (
/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+ icon_state = "cargo_arrow";
+ color = "#E10600";
+ dir = 1
},
-/obj/structure/surface/table/almayer,
-/obj/item/tool/screwdriver{
- layer = 3.03;
- pixel_x = -4;
- pixel_y = 7
+/turf/open/space/basic,
+/area/space)
+"aLK" = (
+/turf/open/floor/almayer/edge/smooth/endcap_left{
+ dir = 8
},
-/obj/item/tool/wirecutters{
- pixel_y = -7
+/area/golden_arrow/cryo_cells)
+"aLL" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"zq" = (
-/obj/structure/machinery/shower{
+"aLM" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning";
dir = 8
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/cryo_cells)
-"zs" = (
-/turf/closed/wall/almayer/outer,
-/area/golden_arrow/briefing)
-"zt" = (
-/obj/structure/cargo_container/kelland/left{
- layer = 3;
- opacity = 0
+/turf/open/floor/almayer{
+ icon_state = "mono"
},
-/obj/structure/cargo_container/kelland/left{
- opacity = 0;
- pixel_y = 22
+/area/golden_arrow/motor_pool)
+"aLN" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning";
+ dir = 8
},
/turf/open/floor/almayer{
- icon_state = "cargo"
+ icon_state = "mono"
},
-/area/golden_arrow/hangar)
-"zw" = (
-/obj/structure/window/framed/almayer,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/cable/heavyduty{
- icon_state = "1-2"
+/area/golden_arrow/motor_pool)
+"aLP" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
},
-/turf/open/floor/plating,
-/area/golden_arrow/platoonprep)
-"zx" = (
-/obj/structure/window/framed/almayer,
-/turf/open/floor/plating,
-/area/golden_arrow/cryo_cells)
-"zy" = (
-/obj/structure/cable/heavyduty{
- icon_state = "2-8"
+/obj/structure/largecrate/random/case{
+ pixel_y = 5
+ },
+/obj/structure/largecrate/random/case/double{
+ pixel_y = 15
+ },
+/obj/structure/largecrate/random/case{
+ pixel_y = -5
+ },
+/obj/structure/largecrate/random/mini/small_case{
+ pixel_x = 8;
+ layer = 3.1;
+ pixel_y = 14
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"zz" = (
-/obj/structure/surface/table/almayer,
-/obj/item/prop/almayer/flight_recorder{
- pixel_y = 3
+"aLR" = (
+/obj/structure/machinery/door_control/brbutton{
+ pixel_y = 28;
+ id = "vehiclebay1";
+ name = "vehicle bay blast door control"
},
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"zB" = (
-/obj/structure/closet/crate/trashcart{
- pixel_y = 11
+"aLS" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 9
},
+/area/golden_arrow/supply)
+"aLT" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
pixel_x = 1
},
-/obj/structure/sign/safety/coffee{
- pixel_x = 13;
- pixel_y = 29
+/obj/structure/largecrate/supply/ammo{
+ pixel_y = 11;
+ name = "smoke grenades case";
+ fill_from_loc = 1
},
-/obj/item/trash/candy,
-/obj/item/trash/burger,
-/obj/item/trash/cigbutt,
+/obj/item/explosive/grenade/smokebomb,
+/obj/item/explosive/grenade/smokebomb,
+/obj/item/explosive/grenade/smokebomb,
+/obj/item/explosive/grenade/smokebomb,
+/obj/item/explosive/grenade/smokebomb,
+/obj/item/explosive/grenade/smokebomb,
+/obj/item/explosive/grenade/smokebomb,
+/obj/item/explosive/grenade/smokebomb,
+/obj/item/explosive/grenade/smokebomb,
+/obj/item/explosive/grenade/smokebomb,
+/obj/item/explosive/grenade/smokebomb,
+/obj/item/explosive/grenade/smokebomb,
+/obj/item/explosive/grenade/smokebomb,
+/obj/item/explosive/grenade/smokebomb,
+/obj/item/explosive/grenade/smokebomb,
+/obj/item/explosive/grenade/smokebomb,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/cryo_cells)
-"zC" = (
-/obj/structure/machinery/door/poddoor/almayer/locked{
- dir = 4;
- name = "\improper Hangar Lockdown Blast Door"
+/area/golden_arrow/hangar)
+"aLV" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ icon = 'icons/obj/structures/props/almayer_props.dmi';
+ icon_state = "wallpipe_2";
+ pixel_y = 22;
+ pixel_x = -14
},
-/area/golden_arrow/hangar)
-"zD" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
+/area/golden_arrow/prep_hallway)
+"aLW" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 4
+ },
/area/golden_arrow/hangar)
-"zF" = (
+"aLY" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
+ },
+/area/golden_arrow/motor_pool)
+"aLZ" = (
/obj/structure/cable/heavyduty{
icon_state = "1-2"
},
-/turf/open/floor/plating/plating_catwalk,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer/edge/smooth,
/area/golden_arrow/hangar)
-"zG" = (
-/obj/structure/machinery/vending/cigarette{
- pixel_x = 4;
- pixel_y = 14
+"aMb" = (
+/obj/item/tool/warning_cone,
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer,
+/area/golden_arrow/engineering)
+"aMc" = (
+/obj/item/stack/catwalk{
+ pixel_x = -6;
+ pixel_y = 4
},
/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+ dir = 1;
+ icon_state = "plating_striped"
},
-/area/golden_arrow/cryo_cells)
-"zH" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+/area/golden_arrow/engineering)
+"aMe" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/obj/structure/cable{
icon_state = "4-8"
},
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
+ },
+/area/golden_arrow/hangar)
+"aMg" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 1
},
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"aMi" = (
+/obj/structure/machinery/landinglight/ds1,
/turf/open/floor/almayer{
- dir = 8;
- icon_state = "cargo_arrow"
+ icon_state = "plate"
},
-/area/golden_arrow/prep_hallway)
-"zL" = (
-/obj/structure/largecrate/random/case/double,
-/turf/open/floor/almayer{
- icon_state = "cargo"
+/area/golden_arrow/hangar)
+"aMl" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
},
+/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"zP" = (
-/obj/structure/machinery/medical_pod/autodoc{
- pixel_y = 6
+"aMo" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/obj/structure/machinery/light/double/blue{
+ dir = 8;
+ light_color = "#dae2ff"
},
-/area/golden_arrow/medical)
-"zS" = (
-/obj/structure/machinery/door/poddoor/almayer{
- dir = 2;
- name = "\improper Storage Bay Blast Door"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/obj/structure/pipes/vents/pump{
+ dir = 4
},
-/area/golden_arrow/hangar)
-"zX" = (
-/obj/structure/bed/chair,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 5
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"zY" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
+/area/golden_arrow/cryo_cells)
+"aMp" = (
+/obj/structure/bed/chair{
dir = 1
},
+/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
- dir = 10;
icon_state = "cargo"
},
-/area/golden_arrow/hangar)
-"Aa" = (
-/obj/effect/landmark/start/marine/tl/alpha,
-/obj/effect/landmark/late_join/alpha,
-/obj/effect/landmark/late_join,
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "cargo_arrow"
- },
-/area/golden_arrow/cryo_cells)
-"Ab" = (
-/obj/structure/cable{
- layer = 2.45;
- pixel_x = 7;
- pixel_y = 1
- },
-/obj/structure/prop{
- color = "#b30000";
- icon = 'icons/obj/pipes/power_cond_white.dmi';
- icon_state = "0-8";
- name = "cable";
- pixel_x = 2;
- pixel_y = 2
+/area/golden_arrow/briefing)
+"aMq" = (
+/obj/structure/sign/safety/airlock{
+ pixel_y = 1;
+ pixel_x = 8
},
-/turf/open/shuttle/dropship{
- icon_state = "rasputin14"
+/obj/effect/decal/warning_stripes{
+ icon = 'icons/obj/structures/machinery/bolt_terminal.dmi';
+ icon_state = "closed";
+ name = "non-functional maintenance airlock"
},
+/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"Af" = (
+"aMw" = (
/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
+ icon_state = "W";
+ layer = 3.3
},
-/obj/structure/machinery/light,
+/obj/effect/decal/strata_decals/grime/grime4,
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"Ah" = (
-/obj/effect/decal/strata_decals/grime/grime1{
- dir = 8
+"aMx" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
},
-/obj/structure/machinery/camera/autoname/golden_arrow{
- dir = 8
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
-/area/golden_arrow/medical)
-"Ai" = (
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"aMy" = (
/obj/structure/sign/safety/bulkhead_door{
- pixel_y = 38
+ pixel_y = 27
},
/obj/structure/sign/safety/hazard{
pixel_x = 14;
- pixel_y = 38
+ pixel_y = 27
},
-/obj/structure/sign/safety/ammunition{
- pixel_y = 26
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/largecrate/random/case/small,
+/obj/structure/largecrate/random/mini/small_case{
+ pixel_y = 11
},
/turf/open/floor/almayer{
dir = 8;
icon_state = "cargo_arrow"
},
/area/golden_arrow/hangar)
-"Ao" = (
-/obj/effect/decal/strata_decals/grime/grime3,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/cable/heavyduty{
- icon_state = "1-2"
+"aMz" = (
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/golden_arrow/hangar)
+"aMA" = (
+/obj/structure/prop/dam/crane,
+/turf/open/floor/almayer,
+/area/golden_arrow/motor_pool)
+"aMD" = (
+/obj/item/prop/magazine/book/starshiptroopers{
+ layer = 4.1;
+ pixel_y = 47
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"aME" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/prop/almayer/CICmap{
+ pixel_y = 5;
+ pixel_x = -1;
+ layer = 4
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"aMI" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow"
+ },
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/supply)
+"aMK" = (
+/obj/structure/surface/table/almayer,
+/obj/item/prop/tableflag/uscm{
+ pixel_y = 2;
+ pixel_x = -3
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"aMO" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
+ },
+/area/golden_arrow/hangar)
+"aMP" = (
+/obj/structure/machinery/light/double/blue{
+ dir = 1;
+ light_color = "#dae2ff"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"aMQ" = (
+/obj/structure/bed/chair,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"aMS" = (
+/obj/effect/decal/strata_decals/grime/grime1,
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/obj/structure/machinery/disposal{
+ density = 0;
+ layer = 3.2;
+ pixel_y = 12
+ },
+/obj/structure/sign/poster{
+ pixel_y = 6;
+ pixel_x = -27;
+ icon_state = "poster15";
+ name = "pulse rifle pinup";
+ desc = "The Armat Battlefield Systems Model 41 Derivative 'A' Pulse Rifle Mark One. The only pinup you'll ever need.";
+ serial_number = 15
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 9
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/prep_hallway)
-"Aq" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/machinery/recharger{
- pixel_x = 5;
- pixel_y = -10
+/area/golden_arrow/platoonprep)
+"aMV" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
},
-/obj/item/smartgun_battery{
- pixel_x = 4;
- pixel_y = -5
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
},
-/obj/item/prop/magazine{
- desc = "A copy of Soldier of Fortune magazine. On the cover is a stylized imagine of a motion tracker in use, with the headline 'Combat Awareness in the 22nd Century'. The article covers the advancement in sensor technology that has made combat between peer nations like the UA and UPP increasingly lethal to those on the ground. Flipping through the magazine you see article titles such as 'Arsenal: The M2C Heavy Machinegun', and 'The Future War: advancements in Cyberdyne Systems combat AI'. At the back of the magazine is an extensive list of advertisements for private contractors and wares.";
- icon_state = "poster8";
- name = "Soldier Of Fortune: Issue March 2182";
- pixel_x = 7;
- pixel_y = 15
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
},
-/obj/item/clipboard{
- pixel_x = -7;
- pixel_y = 8
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"aMW" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/door/poddoor/railing{
+ id = "garrow_vehicle_elevator_two";
+ dir = 8
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "black";
+ dir = 8
},
-/area/golden_arrow/platoonprep)
-"As" = (
-/obj/structure/pipes/vents/pump,
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+/area/golden_arrow/vehicle_shuttle/two/upper)
+"aMY" = (
+/obj/structure/machinery/cm_vending/gear/medic_chemical,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/cryo_cells)
-"Au" = (
-/obj/structure/largecrate/supply/ammo/m41amk1,
-/obj/structure/largecrate/supply/ammo/m41amk1{
- pixel_y = 10
+/area/golden_arrow/medical)
+"aNa" = (
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ name = "\improper Vehicle Bay One Blast Door";
+ id = "lowervehiclebay1";
+ dir = 8
},
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "cargo_arrow"
+ icon_state = "test_floor4"
},
-/area/golden_arrow/hangar)
-"Aw" = (
-/obj/structure/bed{
- can_buckle = 0;
- desc = "A lightweight support lattice.";
- icon = 'icons/obj/structures/structures.dmi';
- icon_state = "latticefull";
- layer = 2.1;
- name = "lattice"
+/area/golden_arrow/motor_pool)
+"aNc" = (
+/obj/structure/machinery/door_control{
+ id = "lowervehiclebay1";
+ needs_power = 0;
+ pixel_y = 28;
+ name = "lowervehiclebay1"
},
-/obj/structure/cable/heavyduty{
- icon_state = "1-2";
- pixel_x = -8
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow";
+ dir = 1;
+ color = "#E10600"
},
-/obj/structure/cable/heavyduty{
- icon_state = "1-2";
- pixel_x = 2
+/turf/open/floor/almayer{
+ icon_state = "mono"
},
-/obj/structure/cable/heavyduty{
- icon_state = "node";
- pixel_x = -3
+/area/space)
+"aNd" = (
+/obj/structure/machinery/gear{
+ id = "garrow_vehicle_elevator_two"
},
-/obj/structure/girder/displaced,
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"Ax" = (
-/obj/structure/surface/table/almayer,
-/obj/item/tool/kitchen/tray{
- pixel_x = 6;
- pixel_y = 3
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
},
-/obj/item/storage/box/cups{
- pixel_x = 2;
- pixel_y = 4
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1;
+ pixel_x = 1
},
-/obj/item/reagent_container/food/condiment/hotsauce/tabasco{
- pixel_x = 14;
- pixel_y = 7
+/turf/open/floor/almayer{
+ icon_state = "blackcorner";
+ dir = 4
},
-/turf/open/floor/almayer,
-/area/golden_arrow/cryo_cells)
-"Ay" = (
-/obj/structure/foamed_metal,
-/turf/open/floor/plating,
-/area/golden_arrow/platoon_commander_rooms)
-"AC" = (
+/area/golden_arrow/vehicle_shuttle/two/upper)
+"aNf" = (
/obj/effect/decal/warning_stripes{
- icon_state = "W";
- layer = 3.3
+ icon_state = "cargo"
+ },
+/obj/structure/cargo_container/horizontal/blue/bottom{
+ pixel_x = 16
},
/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"AD" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/largecrate/random/case/double,
-/obj/structure/machinery/light{
- dir = 4
+"aNh" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
},
/area/golden_arrow/hangar)
-"AJ" = (
-/obj/structure/machinery/landinglight/ds1{
+"aNj" = (
+/obj/structure/machinery/camera/autoname/golden_arrow{
dir = 8
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "dark_sterile"
},
-/area/golden_arrow/hangar)
-"AK" = (
-/obj/structure/machinery/cryopod,
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/cryo_cells)
-"AL" = (
+/area/golden_arrow/medical)
+"aNk" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
pixel_y = 1
},
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 1
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/machinery/gear{
- id = "supply_elevator_gear"
+/obj/structure/pipes/vents/scrubber{
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"AM" = (
-/obj/structure/machinery/door/airlock/maintenance/colony{
- dir = 1;
- name = "\improper Power Substation";
- req_one_access = null
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_x = 1;
- pixel_y = 1
+"aNl" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ name = "\improper Hangar Lockdown Blast Door";
+ dir = 4
},
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/golden_arrow/engineering)
-"AN" = (
-/obj/structure/sign/safety/storage{
- pixel_x = -18
- },
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonprep)
-"AQ" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/machinery/faxmachine/uscm/command/capt{
- pixel_y = 7
+/area/golden_arrow/hangar)
+"aNm" = (
+/obj/structure/cargo_container/wy/right{
+ pixel_y = -17;
+ opacity = 0;
+ layer = 2.9
},
-/turf/open/floor/almayer,
-/area/golden_arrow/shared_office)
-"AU" = (
/obj/effect/decal/warning_stripes{
- icon_state = "S"
+ icon_state = "E";
+ pixel_x = 1
},
/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 2
+ icon_state = "W"
+ },
+/obj/item/device/flashlight/lamp/on{
+ layer = 4.2;
+ pixel_y = 19;
+ pixel_x = 3
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/cryo_cells)
-"AV" = (
-/obj/item/reagent_container/food/condiment/sugar,
-/obj/item/reagent_container/food/condiment/enzyme,
-/obj/item/reagent_container/food/snacks/flour,
-/obj/item/reagent_container/food/snacks/flour,
-/obj/item/reagent_container/food/snacks/flour,
-/obj/item/reagent_container/food/snacks/flour,
-/obj/structure/closet{
- desc = "It's a fancy storage unit for long-life foodstuffs.";
- name = "long-life foodstuff storage"
+/area/golden_arrow/hangar)
+"aNn" = (
+/obj/structure/bed/chair/comfy{
+ dir = 1
},
-/obj/item/storage/box/powderedmilk,
-/obj/item/reagent_container/food/condiment/juice/egg,
-/obj/item/reagent_container/food/snacks/flour,
-/obj/item/reagent_container/food/snacks/flour,
-/obj/item/reagent_container/food/snacks/flour,
-/obj/item/reagent_container/food/snacks/flour,
/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+ icon_state = "mono"
},
/area/golden_arrow/cryo_cells)
-"AY" = (
-/obj/structure/foamed_metal,
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"AZ" = (
-/obj/structure/surface/table/almayer,
-/obj/item/paper_bin/uscm{
- pixel_x = -12;
- pixel_y = 7
+"aNp" = (
+/obj/structure/pipes/vents/scrubber,
+/turf/open/floor/almayer,
+/area/golden_arrow/cryo_cells)
+"aNr" = (
+/obj/structure/bed/chair{
+ dir = 4
},
-/obj/item/tool/pen{
- pixel_x = -14;
- pixel_y = 4
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoon_commander_rooms)
-"Ba" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 5
+/obj/structure/machinery/camera/autoname/golden_arrow{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer/edge{
+ dir = 10
+ },
+/area/golden_arrow/dorms)
+"aNw" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/obj/structure/cable/heavyduty{
- icon_state = "1-4"
+ icon_state = "1-2"
},
+/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
-/area/golden_arrow/platoonarmory)
-"Bf" = (
-/obj/structure/prop/invuln/lattice_prop{
- icon_state = "lattice3";
- pixel_x = 16;
- pixel_y = -15
+/area/golden_arrow/hangar)
+"aNx" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/space)
+"aNz" = (
+/obj/structure/machinery/microwave{
+ density = 0;
+ pixel_y = 9
+ },
+/obj/item/reagent_container/food/drinks/coffee/marine{
+ pixel_x = 9;
+ pixel_y = -3
+ },
+/obj/item/storage/box/donkpockets{
+ pixel_x = 4;
+ pixel_y = 22
+ },
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/golden_arrow/cryo_cells)
+"aNC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/structure/pipes/vents/pump,
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+/area/golden_arrow/motor_pool)
+"aNE" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
+ },
+/area/golden_arrow/platoon_commander_rooms)
+"aNI" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
},
-/turf/open/floor/almayer,
-/area/golden_arrow/prep_hallway)
-"Bg" = (
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "cargo_arrow"
+ icon_state = "dark_sterile"
},
-/area/golden_arrow/hangar)
-"Bh" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 10
+/area/golden_arrow/medical)
+"aNK" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ pixel_x = -1
},
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/pipes/standard/manifold/hidden/supply,
/obj/structure/cable{
icon_state = "1-8"
},
/turf/open/floor/almayer{
- dir = 8;
- icon_state = "cargo_arrow"
+ icon_state = "dark_sterile"
},
-/area/golden_arrow/shared_office)
-"Bk" = (
-/turf/open/floor/almayer,
-/area/golden_arrow/cryo_cells)
-"Bl" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 8
+/area/golden_arrow/medical)
+"aNL" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
-/area/golden_arrow/engineering)
-"Br" = (
-/obj/structure/machinery/computer/station_alert{
- dir = 8;
- pixel_x = 15;
- pixel_y = 2
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
},
-/obj/item/stool,
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+/area/golden_arrow/hangar)
+"aNN" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer,
-/area/golden_arrow/synthcloset)
-"Bs" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/secure_closet/surgical{
- pixel_x = 30
+/obj/structure/machinery/landinglight/ds1/delaytwo{
+ dir = 8
},
/turf/open/floor/almayer{
- icon_state = "test_floor5"
+ icon_state = "plate"
},
-/area/golden_arrow/synthcloset)
-"By" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/largecrate/random/case/small,
-/turf/open/floor/plating/plating_catwalk,
/area/golden_arrow/hangar)
-"Bz" = (
+"aNO" = (
/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- layer = 2.5;
- pixel_y = 1
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/largecrate/random/case/small{
+ pixel_y = 35;
+ layer = 3.1;
+ pixel_x = 3
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
},
+/obj/effect/decal/cleanable/blood/oil,
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"BA" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/door/poddoor/railing{
- dir = 8;
- id = "apcbayrailing2"
+"aNP" = (
+/obj/structure/prop/dam/crane{
+ bound_height = 32;
+ climbable = 1;
+ layer = 3.5;
+ pixel_y = -23
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
+ },
+/area/golden_arrow/hangar)
+"aNR" = (
+/obj/structure/largecrate/supply/weapons/m56d{
+ pixel_x = 9;
+ pixel_y = 10
+ },
+/obj/structure/largecrate/supply/weapons/m56d{
+ pixel_x = 9;
+ pixel_y = 25
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
},
/turf/open/floor/almayer{
- dir = 8;
- icon_state = "black"
+ icon_state = "plate"
},
/area/golden_arrow/hangar)
-"BC" = (
-/obj/structure/flora/pottedplant{
- icon_state = "pottedplant_21"
+"aNS" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning";
+ dir = 8
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoon_commander_rooms)
-"BD" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/pipes/standard/simple/hidden/supply{
+/turf/open/floor/almayer/edge{
dir = 8
},
-/obj/item/reagent_container/food/drinks/coffeecup/wy{
- desc = "A matte gray coffee mug bearing the Weyland-Yutani logo on its front. Looks like someone spat in it.";
- name = "dip cup";
- pixel_x = 5;
- pixel_y = 7
+/area/golden_arrow/platoonarmory)
+"aNT" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge{
+ dir = 6
},
-/turf/open/floor/almayer,
/area/golden_arrow/cryo_cells)
-"BF" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/effect/decal/cleanable/dirt,
+"aNV" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/landinglight/ds1,
/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"aNY" = (
+/obj/structure/machinery/medical_pod/sleeper{
+ pixel_y = 6
},
-/area/golden_arrow/medical)
-"BH" = (
-/obj/effect/landmark/start/marine/medic/alpha,
-/obj/effect/landmark/late_join/alpha,
-/obj/effect/landmark/late_join,
/turf/open/floor/almayer{
- dir = 4;
- icon_state = "cargo_arrow"
+ icon_state = "test_floor4"
},
-/area/golden_arrow/cryo_cells)
-"BJ" = (
+/area/golden_arrow/medical)
+"aOd" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
pixel_y = 1
},
-/obj/structure/pipes/standard/manifold/hidden/supply,
-/obj/structure/cable{
- icon_state = "4-8"
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/hangar)
+"aOe" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "0-4"
},
/turf/open/floor/almayer{
icon_state = "mono"
},
-/area/golden_arrow/cryo_cells)
-"BQ" = (
+/area/golden_arrow/platoonprep)
+"aOi" = (
+/obj/structure/machinery/power/terminal{
+ dir = 4
+ },
+/obj/item/tool/warning_cone{
+ pixel_y = 3;
+ pixel_x = -7
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/engineering)
+"aOk" = (
/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+ icon_state = "W"
+ },
+/obj/structure/prop/dam/crane,
+/obj/structure/prop{
+ icon = 'icons/obj/structures/props/almayer_props64.dmi';
+ icon_state = "cooling_system";
+ name = "Damaged FS/ACS-9 cooling system";
+ desc = "A cooling system for the Tripoli. It produces additional cooling reducing delays between launch. The pipes are crooked and bent, hoses are sliced open, and that's not even mentioning the bullet holes. Looks to be an older model as well.";
+ density = 1;
+ pixel_y = 16;
+ layer = 3.1
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"aOm" = (
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
+ },
+/area/golden_arrow/supply)
+"aOn" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/prep_hallway)
+"aOp" = (
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/supply)
+"aOq" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning";
+ dir = 4
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "mono"
+ },
+/area/golden_arrow/motor_pool)
+"aOr" = (
+/obj/structure/machinery/door_control{
+ id = "cargobay4";
+ name = "cargobay4";
+ pixel_y = -23;
+ pixel_x = -7;
+ needs_power = 0
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow";
+ color = "#E10600"
},
+/turf/open/floor/plating,
/area/golden_arrow/hangar)
-"BS" = (
+"aOs" = (
/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
+ icon_state = "W";
pixel_x = -1;
- pixel_y = 2
+ pixel_y = 1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/cryo_cells)
-"BT" = (
-/turf/closed/shuttle/midway/transparent{
- icon_state = "86";
- name = "\improper Tripoli"
+"aOt" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/platoonarmory)
+"aOu" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/golden_arrow/cryo_cells)
+"aOw" = (
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ name = "\improper Vehicle Bay Two Blast Door";
+ id = "lowervehiclebay2";
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
},
+/area/golden_arrow/motor_pool)
+"aOx" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/blocker/invisible_wall,
+/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"BZ" = (
-/obj/item/tool/screwdriver{
- icon_state = "screwdriver3";
- layer = 3.03;
- pixel_x = -4;
- pixel_y = 7
+"aOA" = (
+/obj/structure/prop{
+ name = "\improper seat-like case";
+ desc = "It's a case made into an impromptu seat.";
+ icon_state = "case";
+ icon = 'icons/obj/structures/crates.dmi';
+ can_buckle = 1;
+ pixel_y = -2;
+ layer = 3.6
},
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
},
/area/golden_arrow/hangar)
-"Ca" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S";
- layer = 3.3
+"aOC" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/golden_arrow/prep_hallway)
-"Cb" = (
-/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{
- req_one_access = list();
- req_one_access_txt = "8;12;39;40"
+/obj/structure/machinery/landinglight/ds1{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonprep)
-"Cc" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/cable{
- icon_state = "1-2"
+/area/golden_arrow/hangar)
+"aOE" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 2;
+ pixel_x = -1
},
-/obj/structure/machinery/firealarm{
- dir = 4;
- pixel_x = 21
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoon_commander_rooms)
-"Cd" = (
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
- dir = 4;
- icon_state = "cargo_arrow"
+ icon_state = "plate"
},
-/area/golden_arrow/platoonprep)
-"Ce" = (
+/area/golden_arrow/cryo_cells)
+"aOG" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
- pixel_y = 2
+ pixel_y = 1
},
-/obj/structure/pipes/vents/pump{
- dir = 1
+/obj/effect/decal/strata_decals/grime/grime3,
+/obj/structure/largecrate/supply/ammo{
+ name = "materials crate";
+ fill_from_loc = 1
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"Cg" = (
-/obj/structure/machinery/door/poddoor/railing{
- dir = 2;
- id = "apcbayrailing2"
+/obj/item/stack/sheet/metal/large_stack,
+/obj/item/stack/sheet/plasteel{
+ amount = 40;
+ pixel_x = 7;
+ pixel_y = 6
},
/turf/open/floor/almayer{
- icon_state = "black"
+ icon_state = "plate"
},
/area/golden_arrow/hangar)
-"Ch" = (
-/obj/effect/decal/siding{
- icon_state = "siding4"
+"aOH" = (
+/obj/structure/platform_decoration{
+ dir = 1
},
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"Ck" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 4
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/cable/heavyduty{
- icon_state = "1-2-8"
+/obj/structure/closet/medical_wall{
+ pixel_y = 32
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/platoonarmory)
-"Cm" = (
-/turf/open/floor/almayer,
-/area/golden_arrow/prep_hallway)
-"Cn" = (
-/obj/structure/pipes/vents/scrubber{
- dir = 8
+/turf/open/floor/almayer/edge/smooth/corner,
+/area/golden_arrow/motor_pool)
+"aOK" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/space/basic,
+/area/space)
+"aOM" = (
+/turf/open/floor/almayer/edge{
+ dir = 10
},
-/obj/structure/machinery/door/poddoor/railing,
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"Co" = (
-/obj/structure/machinery/power/terminal{
+/area/golden_arrow/cryo_cells)
+"aOO" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/obj/structure/janitorialcart,
+/turf/open/floor/almayer/edge{
dir = 1
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/engineering)
-"Cp" = (
+/area/golden_arrow/prep_hallway)
+"aOQ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
/obj/structure/cable/heavyduty{
icon_state = "4-8"
},
-/turf/open/floor/plating/plating_catwalk,
+/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"Cq" = (
-/turf/closed/shuttle/elevator{
- dir = 9
- },
-/area/golden_arrow/supply)
-"Cr" = (
-/obj/item/stack/catwalk{
- pixel_x = 4
+"aOR" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "2-4"
},
-/obj/item/stack/catwalk{
- pixel_x = -3;
- pixel_y = 6
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/hangar)
+"aOS" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/machinery/landinglight/ds1{
+/turf/open/floor/almayer/edge/smooth{
dir = 8
},
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/golden_arrow/hangar)
-"Cu" = (
-/obj/structure/bed/chair{
- dir = 8
+/area/golden_arrow/platoonprep)
+"aOT" = (
+/obj/structure/closet/secure_closet,
+/obj/structure/machinery/prop{
+ desc = "This stylized recruitment poster for the USCM depicts a the head of a screaming eagle breaking into orbit, surrounded by flames. Death from above.";
+ icon = 'icons/obj/structures/props/posters.dmi';
+ icon_state = "poster41";
+ name = "USCM recruitment poster";
+ layer = 3.5;
+ pixel_y = 34;
+ pixel_x = -1
},
/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"Cv" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonarmory)
-"Cw" = (
-/obj/structure/bed/chair{
- dir = 1
+/area/golden_arrow/platoon_commander_rooms)
+"aOV" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer{
- icon_state = "cargo"
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice3";
+ pixel_x = 16;
+ pixel_y = -15
},
-/area/golden_arrow/briefing)
-"Cy" = (
/turf/open/floor/almayer{
- icon_state = "test_floor5"
+ icon_state = "mono"
},
-/area/golden_arrow/synthcloset)
-"CD" = (
+/area/golden_arrow/dorms)
+"aOW" = (
/obj/effect/decal/warning_stripes{
- icon_state = "S";
- layer = 3.3
+ icon_state = "SE-out"
},
/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- layer = 2.5;
- pixel_x = -1;
+ icon_state = "N";
pixel_y = 1
},
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"CE" = (
-/turf/closed/wall/almayer,
-/area/golden_arrow/medical)
-"CF" = (
-/obj/structure/machinery/gear{
- id = "supply_elevator_gear"
+"aOY" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
},
+/area/golden_arrow/hangar)
+"aPa" = (
/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
+ icon_state = "NE-out";
+ pixel_x = 1;
pixel_y = 1
},
-/turf/open/floor/almayer{
+/obj/structure/machinery/light/double/blue{
dir = 1;
- icon_state = "blackcorner"
+ light_color = "#dae2ff"
},
-/area/golden_arrow/hangar)
-"CG" = (
-/obj/effect/decal/cleanable/blood/oil/streak,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"CI" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer/uscm{
+/turf/open/floor/almayer/edge{
dir = 1
},
-/area/golden_arrow/hangar)
-"CJ" = (
-/obj/structure/barricade/handrail{
- dir = 4
+/area/golden_arrow/prep_hallway)
+"aPb" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/vents/pump,
-/obj/structure/machinery/light{
+/turf/open/floor/almayer/edge/smooth{
dir = 1
},
-/turf/open/floor/almayer,
+/area/golden_arrow/supply)
+"aPf" = (
+/turf/open/floor/almayer/edge{
+ dir = 8
+ },
+/area/golden_arrow/cryo_cells)
+"aPg" = (
+/obj/structure/machinery/light/double/blue{
+ light_color = "#dae2ff"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
/area/golden_arrow/hangar)
-"CK" = (
-/turf/closed/shuttle/midway/transparent{
- icon_state = "35";
- name = "\improper Tripoli"
+"aPh" = (
+/turf/open/floor/almayer,
+/area/space)
+"aPk" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S";
+ pixel_y = 1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
},
/area/golden_arrow/hangar)
-"CL" = (
-/obj/structure/machinery/light{
+"aPl" = (
+/obj/structure/machinery/landinglight/ds1/delayone{
dir = 8
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/cryo_cells)
-"CM" = (
-/obj/structure/closet/firecloset,
-/obj/structure/prop/invuln/lattice_prop{
- icon_state = "lattice2";
- pixel_x = 16;
- pixel_y = 16
+/area/golden_arrow/hangar)
+"aPm" = (
+/obj/structure/machinery/cm_vending/sorted/medical/blood{
+ req_access = list();
+ pixel_y = 24;
+ density = 0
},
-/obj/structure/prop/invuln/lattice_prop{
- icon_state = "lattice3";
- pixel_x = 16;
- pixel_y = -15
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer{
- icon_state = "cargo"
+ icon_state = "test_floor5"
+ },
+/area/golden_arrow/medical)
+"aPn" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ layer = 1.9
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ name = "Maintenance Bay Blast Door";
+ closed_layer = 3.3;
+ layer = 3.3;
+ open_layer = 3.3
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"aPo" = (
+/obj/structure/machinery/light/double/blue{
+ light_color = "#dae2ff"
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
},
/area/golden_arrow/cryo_cells)
-"CN" = (
+"aPp" = (
+/obj/structure/bed{
+ can_buckle = 0
+ },
+/obj/structure/bed{
+ buckling_y = 13;
+ layer = 3.5;
+ pixel_y = 13
+ },
+/obj/item/bedsheet/brown{
+ layer = 3.4
+ },
+/obj/item/bedsheet/brown{
+ pixel_y = 13
+ },
+/turf/open/floor/almayer/edge{
+ dir = 1
+ },
+/area/golden_arrow/dorms)
+"aPq" = (
/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+ icon_state = "door_warning";
+ dir = 1
},
-/obj/structure/largecrate/random/case/small{
- layer = 3.1;
- pixel_x = 3;
- pixel_y = 35
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/golden_arrow/motor_pool)
+"aPs" = (
+/obj/structure/machinery/camera/autoname/golden_arrow{
+ dir = 1
+ },
+/obj/structure/sign/safety/ammunition{
+ pixel_y = -26
+ },
+/turf/open/floor/almayer/edge{
+ dir = 10
+ },
+/area/golden_arrow/platoonarmory)
+"aPt" = (
+/obj/structure/machinery/autodoc_console{
+ dir = 1;
+ pixel_y = 6
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
},
/obj/effect/decal/warning_stripes{
- icon_state = "W"
+ icon_state = "NW-out";
+ layer = 2.5;
+ pixel_y = 1;
+ pixel_x = -1
},
-/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/sign/safety/autodoc{
+ pixel_x = -17
},
-/area/golden_arrow/hangar)
-"CP" = (
-/obj/structure/machinery/floodlight/landing/floor{
- pixel_x = 3
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = -29
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "dark_sterile"
},
-/area/golden_arrow/hangar)
-"CQ" = (
-/turf/closed/shuttle/midway{
- icon_state = "94";
- name = "\improper Tripoli"
+/area/golden_arrow/medical)
+"aPv" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
},
-/area/golden_arrow/hangar)
-"CX" = (
-/obj/structure/gun_rack/m41,
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonarmory)
-"Da" = (
-/obj/structure/bed/chair/comfy{
- dir = 1
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/golden_arrow/cryo_cells)
-"Db" = (
-/obj/structure/cargo_container/kelland/right{
- opacity = 0
+/turf/open/floor/almayer{
+ icon_state = "mono"
},
-/obj/structure/cargo_container/kelland/right{
- opacity = 0;
- pixel_y = 22
+/area/golden_arrow/platoonprep)
+"aPw" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "mono"
},
+/area/golden_arrow/hangar)
+"aPx" = (
/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 1
+ icon_state = "W";
+ layer = 3.3
},
/obj/effect/decal/warning_stripes{
- icon_state = "W"
+ icon_state = "NE-out";
+ pixel_y = 1
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge/smooth/endcap_right{
+ dir = 8
},
/area/golden_arrow/hangar)
-"Dc" = (
-/obj/structure/machinery/door/poddoor/shutters/almayer{
- id = "equipment_conny";
- name = "\improper Squad Two Equipment Locker"
+"aPy" = (
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ dir = 8;
+ name = "\improper Hangar Lockdown Blast Door"
},
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/golden_arrow/platoonarmory)
-"Df" = (
-/obj/structure/largecrate/random/case/double{
- pixel_x = 4;
- pixel_y = 5
+/area/golden_arrow/supply)
+"aPz" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning";
+ dir = 1
},
-/obj/structure/largecrate/random/case/double{
- layer = 3.1;
- pixel_x = 6;
- pixel_y = -7
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
-/obj/structure/largecrate/random/mini/small_case{
- layer = 3.1;
- pixel_x = 14;
- pixel_y = 24
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/supply)
+"aPA" = (
+/obj/structure/machinery/landinglight/ds1/delaytwo{
+ dir = 4
},
/turf/open/floor/almayer{
- icon_state = "cargo"
+ icon_state = "plate"
},
/area/golden_arrow/hangar)
-"Dj" = (
-/obj/structure/cable{
- icon_state = "1-2"
+"aPB" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_y = 19;
+ pixel_x = -9
},
-/turf/open/floor/almayer,
-/area/golden_arrow/briefing)
-"Dl" = (
-/obj/structure/shuttle/part/dropship1/transparent/engine_left_exhaust{
- name = "\improper Tripoli"
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_y = 19;
+ pixel_x = 16
},
-/turf/open/floor/plating,
+/obj/structure/curtain/red{
+ pixel_y = 6
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo"
+ },
+/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"Dn" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/stack/medical/ointment{
- pixel_x = 2;
- pixel_y = 34
+"aPC" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
},
-/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
},
-/area/golden_arrow/cryo_cells)
-"Do" = (
-/obj/structure/surface/table/almayer,
-/obj/item/device/camera{
- pixel_x = -7;
- pixel_y = 9
+/area/golden_arrow/hangar)
+"aPD" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
},
-/obj/item/device/camera_film{
- pixel_y = 4
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/dorms)
-"Dp" = (
-/turf/closed/shuttle/dropship1{
- icon_state = "97";
- name = "\improper Tripoli"
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
},
+/obj/effect/decal/cleanable/cobweb2,
+/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"Dq" = (
-/obj/structure/sign/banners/maximumeffort{
- desc = "A large banner strung up on the wall intended to give the marines a boost in confidence.";
- pixel_y = -5
+"aPE" = (
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 8
},
-/turf/closed/wall/almayer,
-/area/golden_arrow/cryo_cells)
-"Dv" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/heavyduty{
- icon_state = "1-2"
+/area/golden_arrow/motor_pool)
+"aPG" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo"
},
-/obj/structure/pipes/standard/manifold/hidden/supply{
+/obj/structure/barricade/handrail{
dir = 4
},
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/platoonprep)
-"Dy" = (
-/obj/structure/machinery/landinglight/ds1/delayone{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/barricade/handrail{
+ dir = 8;
+ pixel_x = -1
},
-/area/golden_arrow/hangar)
-"DA" = (
-/turf/closed/wall/almayer,
-/area/golden_arrow/engineering)
-"DB" = (
-/obj/structure/bed/chair{
+/obj/structure/machinery/light/small{
+ light_color = "#C02526";
+ color = "#C02526";
dir = 1
},
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 8
- },
-/turf/open/floor/almayer{
- icon_state = "cargo"
- },
-/area/golden_arrow/briefing)
-"DC" = (
-/obj/structure/sign/banners/united_americas_flag{
- pixel_x = -30;
- pixel_y = 31
+/obj/structure/prop{
+ icon = 'icons/obj/structures/props/platforms.dmi';
+ icon_state = "platform";
+ name = "powerloader dock";
+ desc = "A square metal surface resting on four legs.";
+ dir = 4;
+ layer = 2.97
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/vending/dinnerware,
-/obj/item/ashtray/glass{
- pixel_x = -3;
- pixel_y = 13
+/obj/structure/prop{
+ icon = 'icons/obj/structures/props/platforms.dmi';
+ icon_state = "platform";
+ name = "powerloader dock";
+ desc = "A square metal surface resting on four legs.";
+ dir = 8;
+ layer = 2.97
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/cryo_cells)
-"DD" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/almayer,
-/area/golden_arrow/prep_hallway)
-"DE" = (
+/area/golden_arrow/supply)
+"aPL" = (
/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+ icon_state = "N";
+ pixel_y = 2
},
-/obj/structure/pipes/vents/pump{
- dir = 4
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"DF" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/cable/heavyduty{
- icon_state = "1-2"
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/platoonprep)
-"DI" = (
-/obj/structure/surface/table/almayer,
-/turf/open/floor/almayer,
/area/golden_arrow/cryo_cells)
-"DJ" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 1
+"aPM" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer,
-/area/golden_arrow/synthcloset)
-"DK" = (
/obj/structure/surface/table/almayer,
-/obj/item/prop{
- desc = "An issue of The Marine Corps Gazette, the official newspaper of the United States Colonial Marines.";
- icon = 'icons/obj/items/paper.dmi';
- icon_state = "newspaper";
- name = "The Marine Corps Gazette";
- pixel_x = 6;
- pixel_y = 18
+/obj/item/storage/toolbox/mechanical,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoon_commander_rooms)
-"DL" = (
-/obj/item/device/radio/intercom{
- freerange = 1;
- name = "General Listening Channel";
- pixel_y = -29
+/area/golden_arrow/motor_pool)
+"aPO" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
+/obj/structure/closet/secure_closet/engineering_welding,
/turf/open/floor/almayer{
- dir = 4;
- icon_state = "cargo_arrow"
- },
-/area/golden_arrow/platoonarmory)
-"DM" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 5
+ icon_state = "plate"
},
-/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"DN" = (
-/obj/structure/shuttle/part/dropship1/transparent/nose_top_left{
- name = "\improper Tripoli"
+"aPQ" = (
+/obj/structure/platform_decoration{
+ dir = 4
},
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"DO" = (
-/obj/structure/surface/table/almayer,
-/turf/open/floor/almayer,
+/obj/structure/machinery/light/double/blue{
+ dir = 4;
+ light_color = "#dae2ff"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer/edge/smooth/endcap_right,
/area/golden_arrow/briefing)
-"DP" = (
-/obj/structure/machinery/power/terminal,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/engineering)
-"DQ" = (
-/turf/closed/wall/almayer/outer,
-/area/golden_arrow/platoonprep)
-"DT" = (
+"aPS" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/machinery/door/poddoor/railing{
- dir = 4;
- id = "apcbayrailing1"
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/dorms)
+"aPU" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 4
},
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "black"
+/area/golden_arrow/motor_pool)
+"aQa" = (
+/obj/docking_port/stationary/marine_dropship/golden_arrow_hangar{
+ name = "Hangar Bay Aft";
+ id = "golden arrow lz2";
+ roundstart_template = null
},
+/turf/open/floor/plating,
/area/golden_arrow/hangar)
-"DV" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/machinery/door/poddoor/almayer{
- id = "synthbay";
- name = "\improper Synthetic Storage Bay"
+"aQb" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"DY" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/vents/pump{
+/obj/structure/machinery/disposal{
+ density = 0;
+ layer = 3.2;
+ pixel_y = 16
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/almayer/edge{
dir = 1
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"Ea" = (
+/area/golden_arrow/prep_hallway)
+"aQc" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
pixel_x = 1
},
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
+/turf/open/floor/plating/plating_catwalk,
/area/golden_arrow/hangar)
-"Ef" = (
-/turf/open/floor/almayer{
- icon_state = "cargo"
+"aQd" = (
+/turf/open/floor/almayer/edge/smooth/endcap_right{
+ dir = 4
},
-/area/golden_arrow/hangar)
-"Eg" = (
-/obj/item/device/radio/intercom{
- freerange = 1;
- name = "General Listening Channel";
- pixel_y = 28
+/area/golden_arrow/cryo_cells)
+"aQe" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2-4"
},
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "cargo_arrow"
+/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/hangar)
-"Eh" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/structure/machinery/recharger{
- pixel_x = -8;
- pixel_y = 3
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/platoonarmory)
+"aQf" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
+/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+ icon_state = "plate"
},
-/area/golden_arrow/medical)
-"Ej" = (
-/obj/effect/decal/cleanable/dirt,
+/area/golden_arrow/supply)
+"aQh" = (
/obj/structure/surface/table/almayer,
-/obj/item/ammo_box/magazine/mk1{
- layer = 3.1;
- pixel_x = 3;
- pixel_y = 13
+/obj/item/storage/bible{
+ desc = "As the legendary US Army chaplain once said, 'There are no Athiests in fancy offices'.";
+ name = "Holy Bible";
+ pixel_x = -5;
+ pixel_y = 4
},
-/obj/item/facepaint/sunscreen_stick{
- layer = 3.2;
- pixel_x = -2;
+/obj/item/device/flashlight/lamp/on{
+ pixel_y = 14;
+ pixel_x = 5
+ },
+/obj/item/ashtray/plastic{
+ icon_state = "ashtray_full_bl";
+ pixel_x = 9;
pixel_y = 2
},
-/obj/structure/sign/poster{
- desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE.";
- icon_state = "poster11";
- name = "YOU ALWAYS KNOW A WORKING JOE.";
- pixel_x = 24;
- serial_number = 11
+/obj/item/trash/cigbutt{
+ pixel_y = 10;
+ pixel_x = 1;
+ randpixel = 0
},
+/turf/open/floor/almayer,
+/area/golden_arrow/shared_office)
+"aQk" = (
+/obj/structure/largecrate/random/secure,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "cargo"
+ },
+/area/golden_arrow/hangar)
+"aQl" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/platoonprep)
-"Ek" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/cable/heavyduty{
- icon_state = "4-8"
+ icon_state = "1-2"
},
-/turf/open/floor/plating/plating_catwalk,
+/turf/open/floor/almayer/edge/smooth,
/area/golden_arrow/hangar)
-"Em" = (
-/obj/structure/pipes/standard/manifold/hidden/supply,
-/obj/structure/cable{
- icon_state = "4-8"
+"aQm" = (
+/obj/structure/bed/chair/comfy{
+ dir = 1
},
-/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer,
/area/golden_arrow/cryo_cells)
-"En" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/power/apc/almayer{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/structure/closet/crate/trashcart{
- pixel_y = 11
- },
-/obj/item/prop/colony/usedbandage,
-/obj/item/prop/colony/usedbandage{
- dir = 4
+"aQr" = (
+/turf/open/floor/almayer{
+ icon_state = "mono"
},
-/obj/item/prop/colony/usedbandage{
- dir = 6;
- pixel_y = 6
+/area/golden_arrow/cryo_cells)
+"aQv" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
},
-/obj/item/prop/colony/usedbandage{
- dir = 10;
- pixel_y = 13
+/obj/structure/machinery/firealarm{
+ dir = 4;
+ pixel_x = 21
},
-/obj/item/storage/pill_bottle,
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
/area/golden_arrow/medical)
-"Ep" = (
-/obj/effect/decal/siding{
- icon_state = "siding10"
- },
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"Ez" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
+"aQw" = (
+/obj/effect/decal/strata_decals/grime/grime4,
+/obj/effect/decal/strata_decals/grime/grime2{
+ dir = 1
},
/turf/open/floor/almayer{
- dir = 4;
- icon_state = "cargo_arrow"
+ icon_state = "dark_sterile"
},
/area/golden_arrow/cryo_cells)
-"EA" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "cargo_arrow"
+"aQF" = (
+/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{
+ req_one_access_txt = "8;12;39;40";
+ req_access = list()
},
-/area/golden_arrow/hangar)
-"ED" = (
-/obj/docking_port/stationary/marine_dropship/golden_arrow_hangar,
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"EE" = (
+/turf/open/floor/almayer,
+/area/golden_arrow/platoonprep)
+"aQI" = (
/obj/effect/decal/warning_stripes{
- icon_state = "W"
+ icon_state = "E"
},
-/obj/effect/decal/cleanable/liquid_fuel,
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"EG" = (
-/turf/open/space/basic,
-/area/space)
-"EH" = (
-/obj/structure/machinery/camera/autoname/golden_arrow{
- dir = 8
+/obj/structure/bed/bedroll{
+ pixel_y = -4;
+ color = "#333333";
+ name = "gym mat";
+ buckle_lying = null;
+ can_buckle = 0;
+ foldabletype = null;
+ desc = "A black gym mat, useful if you don't want to use the cold hard floor for exercise."
},
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"EJ" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
- },
-/obj/structure/machinery/door/poddoor/railing{
- id = "apcbayrailing2"
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "black"
- },
-/area/golden_arrow/hangar)
-"EK" = (
-/obj/structure/machinery/door/poddoor/almayer{
- id = "cargolock";
- name = "\improper Cargo Elevator Blast Door"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/golden_arrow/supply)
-"EL" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/golden_arrow/prep_hallway)
-"EP" = (
-/obj/structure/bed/chair/dropship/pilot{
- dir = 1
- },
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
-/area/golden_arrow/hangar)
-"EQ" = (
-/obj/structure/machinery/door/airlock/hatch/cockpit{
- locked = 1
- },
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
-/area/golden_arrow/hangar)
-"ER" = (
+"aQJ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
/obj/structure/cable/heavyduty{
icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/prep_hallway)
-"ES" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/hangar)
-"ET" = (
-/obj/structure/machinery/washing_machine,
-/obj/structure/machinery/washing_machine{
- layer = 3.5;
- pixel_y = 15
- },
-/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"EU" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "cargo_arrow"
- },
-/area/golden_arrow/engineering)
-"EV" = (
+/area/golden_arrow/platoonarmory)
+"aQL" = (
/obj/effect/decal/warning_stripes{
- icon_state = "W"
- },
-/obj/item/stack/cable_coil{
- pixel_x = 7
- },
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"EY" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+ icon_state = "SE-out";
+ pixel_x = 1
},
-/turf/open/floor/almayer,
-/area/golden_arrow/cryo_cells)
-"EZ" = (
/obj/effect/decal/warning_stripes{
- icon_state = "S"
+ icon_state = "SW-out"
},
+/obj/structure/pipes/vents/scrubber,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/cryo_cells)
-"Fe" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/surface/table/almayer,
-/obj/item/weapon/gun/rifle/m4ra/pve{
- pixel_y = 8
+/area/golden_arrow/hangar)
+"aQQ" = (
+/obj/effect/landmark/start/marine/medic/alpha,
+/obj/effect/landmark/late_join/alpha,
+/obj/effect/landmark/late_join,
+/turf/open/floor/almayer/edge{
+ dir = 4
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/area/golden_arrow/cryo_cells)
+"aQR" = (
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
},
-/area/golden_arrow/platoonprep)
-"Ff" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
+/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/cable/heavyduty{
+ icon_state = "2-4"
},
-/area/golden_arrow/hangar)
-"Fg" = (
-/obj/structure/pipes/vents/pump,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/golden_arrow/shared_office)
-"Fi" = (
-/obj/structure/pipes/vents/pump,
-/obj/structure/machinery/light{
- dir = 1
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/dorms)
+"aQS" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
},
-/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"Fk" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/light{
- dir = 8
+/obj/structure/cable/heavyduty{
+ icon_state = "1-8"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/prep_hallway)
-"Fl" = (
-/obj/structure/surface/table/almayer,
-/obj/item/tool/kitchen/tray{
- pixel_x = -3;
- pixel_y = 3
+/obj/structure/cable{
+ icon_state = "0-4";
+ layer = 2.36
},
-/obj/item/reagent_container/food/condiment/hotsauce/tabasco{
- pixel_x = 12;
- pixel_y = 18
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
-/obj/item/trash/plate{
- pixel_x = -5;
- pixel_y = 3
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/prep_hallway)
+"aQT" = (
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ dir = 2;
+ name = "\improper Hangar Lockdown Blast Door";
+ id = "motorpoollocks"
},
-/obj/item/trash/plate{
- pixel_x = -3;
- pixel_y = 5
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
-/obj/item/reagent_container/food/condiment/hotsauce/tabasco{
- pixel_y = 18;
- pixel_x = 2
+/turf/open/floor/almayer,
+/area/golden_arrow/motor_pool)
+"aQU" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ layer = 1.9
},
-/obj/item/trash/plate{
- pixel_x = -4;
- pixel_y = 7
+/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{
+ dir = 1;
+ name = "\improper Prep Lockers"
},
/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+ icon_state = "test_floor4"
},
-/area/golden_arrow/cryo_cells)
-"Fn" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S";
- layer = 3.3
+/area/golden_arrow/platoonprep)
+"aQW" = (
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"aQY" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 4
},
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"aQZ" = (
/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+ icon_state = "SW-out";
+ pixel_x = -1
},
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
},
-/area/golden_arrow/hangar)
-"Fo" = (
-/obj/structure/closet/secure_closet/marine_personal{
- job = "Platoon Commander"
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning";
+ dir = 1
},
-/obj/item/clothing/under/marine/officer/boiler,
-/obj/item/clothing/suit/storage/jacket/marine/service,
-/obj/item/clothing/suit/storage/jacket/marine/dress/officer/bomber,
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/cryo_cells)
-"Fp" = (
-/obj/structure/platform_decoration{
- dir = 8
+"aRd" = (
+/obj/structure/barricade/handrail{
+ dir = 4
},
-/obj/structure/machinery/light{
- dir = 8
+/turf/open/floor/almayer,
+/area/golden_arrow/dorms)
+"aRe" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-4"
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/hangar)
+"aRf" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
},
/obj/effect/decal/warning_stripes{
- icon_state = "S"
+ icon_state = "cargo"
},
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"aRg" = (
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/briefing)
-"Fq" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+/area/golden_arrow/motor_pool)
+"aRk" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/cable{
- icon_state = "4-8"
+/obj/structure/machinery/light/double/blue{
+ dir = 4;
+ light_color = "#dae2ff"
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/cryo_cells)
-"Fs" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 1
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_x = 1;
- pixel_y = 1
- },
-/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"Fw" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_x = 1;
- pixel_y = 1
+"aRl" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
},
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
+/obj/structure/cable/heavyduty{
+ icon_state = "2-8"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/synthcloset)
-"FA" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/structure/machinery/computer/med_data/laptop{
- dir = 8;
- pixel_x = -3
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/platoon_commander_rooms)
+"aRm" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+ icon_state = "mono"
},
-/area/golden_arrow/medical)
-"FB" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/cable{
- icon_state = "1-2"
+/area/golden_arrow/hangar)
+"aRo" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/food/condiment/saltshaker{
+ pixel_x = -7;
+ pixel_y = 13
},
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "cargo_arrow"
+/obj/item/reagent_container/food/condiment/peppermill{
+ pixel_x = -11;
+ pixel_y = 5
},
-/area/golden_arrow/prep_hallway)
-"FC" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W";
- layer = 3.3
+/obj/item/clothing/head/cmcap{
+ pixel_x = 1;
+ pixel_y = -3
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/cryo_cells)
+"aRp" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
},
/obj/effect/decal/warning_stripes{
- icon_state = "E"
+ icon_state = "NE-out";
+ pixel_y = 1;
+ pixel_x = 1
+ },
+/obj/structure/machinery/gear{
+ id = "garrow_vehicle_elevator_one"
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "blackcorner";
+ dir = 4
},
-/area/golden_arrow/hangar)
-"FD" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/reagent_container/food/drinks/coffee/marine{
- pixel_x = -4;
- pixel_y = 14
+/area/golden_arrow/vehicle_shuttle/upper)
+"aRq" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
},
-/obj/item/ashtray/plastic{
- pixel_x = -10;
- pixel_y = 3
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+/obj/structure/sign/safety/ammunition{
+ pixel_y = -26
},
-/area/golden_arrow/medical)
-"FE" = (
+/obj/structure/machinery/light/small/blue{
+ light_color = "#dae2ff";
+ light_power = 0.5
+ },
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/platoonarmory)
+"aRr" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
pixel_x = 1
},
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"FJ" = (
-/obj/structure/machinery/door/poddoor/almayer{
- dir = 4;
- name = "\improper Storage Bay Two Blast Door"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
+/obj/effect/decal/cleanable/blood/oil,
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "plate"
},
/area/golden_arrow/hangar)
-"FM" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/safety/ammunition{
- pixel_x = 32
+"aRt" = (
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/structure/sign/banners/colonial_marines_flag_worn{
+ pixel_y = 28;
+ desc = "A well worn flag of the USCM recovered from the original USS Golden Arrow. Nobody knows who recovered it, and whoever did has yet to step forth."
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
},
-/turf/open/floor/almayer,
/area/golden_arrow/platoonprep)
-"FN" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 10
+"aRv" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8
},
-/obj/structure/cable{
- icon_state = "2-8"
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/prep_hallway)
-"FP" = (
-/turf/closed/shuttle/midway{
- icon_state = "25";
- name = "\improper Tripoli"
+/area/golden_arrow/supply)
+"aRw" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/plating_catwalk,
/area/golden_arrow/hangar)
-"FQ" = (
-/turf/closed/shuttle/midway{
- icon_state = "77";
- name = "\improper Tripoli"
+"aRx" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
},
/area/golden_arrow/hangar)
-"FS" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+"aRy" = (
+/obj/docking_port/stationary/trijent_elevator/shipmap_elevator/two{
+ id = "garrow_vehicle_elevator_two";
+ name = "Vehicle Elevator Two Upper";
+ elevator_network = "ArrowVehicleTwo";
+ airlock_area = /area/golden_arrow/vehicle_shuttle/two/upper
},
-/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- pixel_y = 1
+/turf/open/floor/almayer/empty/golden_arrow/vehicle_two,
+/area/golden_arrow/vehicle_shuttle/two/upper)
+"aRz" = (
+/obj/structure/machinery/shower{
+ dir = 4
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/cryo_cells)
+"aRA" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
-/area/golden_arrow/hangar)
-"FU" = (
-/obj/structure/sign/safety/bulkhead_door{
- pixel_y = -29
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
},
-/obj/structure/sign/safety/hazard{
- pixel_x = 14;
- pixel_y = -29
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/platoonprep)
+"aRB" = (
+/obj/structure/prop{
+ name = "\improper cozy case";
+ desc = "A rather cozy case you can sit on. The label says it's full of pillows - though it's probably empty.";
+ icon_state = "case";
+ icon = 'icons/obj/structures/crates.dmi';
+ can_buckle = 1;
+ pixel_y = 6
},
/turf/open/floor/almayer{
- dir = 4;
- icon_state = "cargo_arrow"
+ icon_state = "mono"
},
/area/golden_arrow/hangar)
-"FV" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+"aRC" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 4;
+ id = "squadarmory";
+ name = "\improper Gear Lockers"
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
+ },
+/area/golden_arrow/platoonprep)
+"aRD" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
/obj/structure/cable/heavyduty{
- icon_state = "1-8"
+ icon_state = "4-8"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"FY" = (
/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
+ layer = 1.9
},
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
/area/golden_arrow/platoonprep)
-"FZ" = (
-/obj/structure/surface/table/almayer,
-/obj/item/tool/soap/deluxe{
- pixel_x = -7;
- pixel_y = 10
+"aRE" = (
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 1
},
-/turf/open/floor/almayer,
/area/golden_arrow/cryo_cells)
-"Gb" = (
-/obj/structure/reagent_dispensers/fueltank{
- layer = 2.97
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
+"aRF" = (
+/obj/structure/bed/chair{
+ dir = 4
},
+/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"Gd" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/vents/scrubber{
- dir = 1
+"aRG" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
-/obj/structure/machinery/door/poddoor/shutters/almayer{
- id = "equipment_conny";
- name = "\improper Squad One Equipment Locker"
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/hangar)
+"aRI" = (
+/obj/structure/machinery/medical_pod/autodoc{
+ dir = 1;
+ pixel_y = 6
},
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/golden_arrow/platoonarmory)
-"Ge" = (
+/area/golden_arrow/medical)
+"aRJ" = (
+/turf/open/floor/almayer/empty/golden_arrow,
+/area/golden_arrow/cargo_shuttle/upper)
+"aRK" = (
/obj/effect/decal/warning_stripes{
- icon_state = "E"
+ icon_state = "E";
+ pixel_x = 1
},
-/obj/structure/bed/bedroll{
- buckle_lying = null;
- can_buckle = 0;
- color = "#333333";
- desc = "A black gym mat, useful if you don't want to use the cold hard floor for exercise.";
- foldabletype = null;
- name = "gym mat";
- pixel_y = -4
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/largecrate/supply/supplies/sandbags{
+ pixel_y = 7;
+ layer = 4.2
},
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"Gg" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+"aRL" = (
+/obj/docking_port/stationary/trijent_elevator/shipmap_elevator/two{
+ id = "garrow_vehicle_elevator_two_storage";
+ roundstart_template = /datum/map_template/shuttle/trijent_elevator/golden_arrow/vehicletwo;
+ name = "Vehicle Elevator Two Storage";
+ elevator_network = "ArrowVehicleTwo"
+ },
+/turf/open/floor/corsat,
+/area/golden_arrow/motor_pool)
+"aRN" = (
+/obj/structure/surface/table/almayer,
+/obj/item/prop/tableflag{
+ pixel_x = 3;
+ pixel_y = 2
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/briefing)
+"aRP" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/cryo_cells)
+"aRQ" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
},
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/platoonarmory)
+"aRR" = (
+/obj/effect/decal/siding,
+/turf/open/floor/plating,
/area/golden_arrow/hangar)
-"Gj" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/storage/box/bodybags{
- pixel_x = -5;
- pixel_y = 11
+"aRU" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/item/storage/box/bodybags{
- pixel_x = -2;
- pixel_y = 3
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
-/obj/item/reagent_container/spray/cleaner{
- pixel_x = 10;
- pixel_y = 18
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/hangar)
+"aRV" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 8
},
-/area/golden_arrow/medical)
-"Gk" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply{
+/area/golden_arrow/hangar)
+"aRW" = (
+/obj/structure/pipes/vents/scrubber{
dir = 8
},
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
+/obj/structure/machinery/door/poddoor/railing{
+ id = "garrow_vehicle_elevator_one"
},
/turf/open/floor/almayer{
- dir = 4;
- icon_state = "cargo_arrow"
- },
-/area/golden_arrow/platoonprep)
-"Gn" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/landinglight/ds1/delayone{
- dir = 4
+ icon_state = "black";
+ dir = 1
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/area/golden_arrow/vehicle_shuttle/upper)
+"aRX" = (
+/obj/structure/machinery/door/poddoor/railing,
+/obj/item/tool/warning_cone,
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
},
/area/golden_arrow/hangar)
-"Gp" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/oil,
-/obj/item/device/radio/intercom{
- freerange = 1;
- name = "General Listening Channel";
- pixel_y = 28
+"aSa" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"Gq" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S";
- pixel_y = 1
+/obj/structure/machinery/door/poddoor/railing{
+ id = "garrow_vehicle_elevator_one"
},
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "cargo_arrow"
+ icon_state = "black";
+ dir = 1
},
-/area/golden_arrow/hangar)
-"Gs" = (
+/area/golden_arrow/vehicle_shuttle/upper)
+"aSd" = (
+/turf/open/floor/corsat,
+/area/golden_arrow/motor_pool)
+"aSg" = (
/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 1
+ icon_state = "cargo"
},
-/obj/structure/machinery/gear{
- id = "supply_elevator_gear"
+/obj/structure/largecrate/random/barrel/blue,
+/obj/structure/largecrate/random/barrel/green{
+ layer = 3.5;
+ pixel_x = 12;
+ pixel_y = 22
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/engineering)
-"Gw" = (
-/obj/structure/closet/secure_closet/marine_personal{
- job = "Platoon Sergeant";
- pixel_x = -7
+/area/golden_arrow/motor_pool)
+"aSh" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
},
-/obj/structure/closet/secure_closet/marine_personal{
- job = "Platoon Corpsman";
- pixel_x = 8
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
+/obj/effect/decal/cleanable/blood/oil,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/cryo_cells)
-"Gy" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/barricade/handrail{
- dir = 8
+/area/golden_arrow/hangar)
+"aSj" = (
+/obj/structure/machinery/landinglight/ds1/delayone{
+ dir = 4
},
-/obj/effect/spawner/prop_gun/m41aMK1{
- pixel_x = 6;
- pixel_y = -3
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/hangar)
+"aSk" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 4;
+ id = "squadarmory";
+ name = "\improper Gear Lockers"
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
},
-/turf/open/floor/almayer,
/area/golden_arrow/platoonprep)
-"Gz" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
+"aSm" = (
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ name = "\improper Cargo Elevator Blast Door";
+ id = "lowercargolocks"
},
-/obj/structure/machinery/floodlight/landing/floor,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
-/area/golden_arrow/hangar)
-"GA" = (
-/turf/closed/shuttle/elevator,
/area/golden_arrow/supply)
-"GF" = (
-/obj/structure/machinery/landinglight/ds1/delaythree{
- dir = 4
+"aSn" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 4;
+ icon_state = "cargo_arrow"
},
/area/golden_arrow/hangar)
-"GG" = (
-/obj/structure/machinery/recharge_station,
-/obj/structure/machinery/light{
- dir = 8
+"aSo" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
},
-/turf/open/floor/almayer{
- icon_state = "test_floor5"
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
},
-/area/golden_arrow/synthcloset)
-"GH" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/heavyduty{
- icon_state = "1-8"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 1
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/platoonprep)
-"GI" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/vents/pump{
- dir = 8
+/area/golden_arrow/hangar)
+"aSq" = (
+/obj/effect/decal/siding{
+ icon_state = "siding8"
},
-/obj/structure/surface/rack,
-/obj/item/book/manual/robotics_cyborgs{
- pixel_y = 4
+/turf/open/floor/plating,
+/area/golden_arrow/hangar)
+"aSr" = (
+/obj/structure/largecrate/supply/motiondetectors,
+/obj/item/ammo_box/magazine/mk1{
+ layer = 3.1;
+ pixel_y = 14;
+ pixel_x = -12
},
-/obj/item/tool/weldingtool/hugetank,
-/obj/item/tool/wirecutters,
/turf/open/floor/almayer,
-/area/golden_arrow/synthcloset)
-"GL" = (
-/obj/structure/surface/table/almayer,
-/obj/item/storage/firstaid/fire{
- pixel_x = 6;
- pixel_y = 8
+/area/golden_arrow/platoonarmory)
+"aSt" = (
+/obj/structure/machinery/camera/autoname/golden_arrow{
+ dir = 4;
+ name = "ship-grade camera"
},
-/obj/effect/decal/cleanable/cobweb2/dynamic,
-/obj/item/storage/firstaid/regular,
-/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"GM" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/device/radio/intercom{
- freerange = 1;
- name = "General Listening Channel";
- pixel_y = -29
+/obj/structure/sign/safety/high_voltage{
+ pixel_x = -16;
+ pixel_y = 6
},
-/obj/structure/cable{
- icon_state = "0-4"
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/engineering)
+"aSu" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/light/double/blue{
+ light_color = "#dae2ff"
},
-/obj/structure/machinery/power/apc/almayer{
- dir = 8
+/obj/item/tool/soap/deluxe,
+/obj/item/tool/soap{
+ pixel_y = 15;
+ pixel_x = 3
},
-/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"GP" = (
-/obj/structure/bed/chair{
- dir = 8
+/turf/open/floor/almayer{
+ icon_state = "mono"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"GQ" = (
-/obj/structure/machinery/power/terminal{
- dir = 1
+/area/golden_arrow/cryo_cells)
+"aSv" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/effect/decal/cleanable/dirt,
-/obj/item/stack/catwalk{
- pixel_x = 12;
- pixel_y = -9
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ name = "\improper Weapons Locker";
+ id = "squadarmory";
+ pixel_y = -4
},
-/obj/item/tool/warning_cone{
- pixel_y = 16
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/engineering)
-"GU" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+/area/golden_arrow/platoonarmory)
+"aSw" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
-/obj/structure/pipes/vents/pump,
/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"GV" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/landinglight/ds1,
+"aSA" = (
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ name = "\improper Hangar Lockdown Blast Door"
+ },
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
/area/golden_arrow/hangar)
-"GW" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/heavyduty{
- icon_state = "1-2"
+"aSB" = (
+/obj/structure/cargo_container/kelland/right{
+ opacity = 0
},
-/obj/structure/cable{
- icon_state = "0-4";
- layer = 2.36
+/obj/structure/cargo_container/kelland/right{
+ pixel_y = 22;
+ opacity = 0
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/hangar)
-"Ha" = (
/obj/effect/decal/warning_stripes{
- icon_state = "E";
+ icon_state = "SE-out";
pixel_x = 1
},
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/obj/structure/largecrate/supply/supplies/mre{
- layer = 3.1
- },
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"He" = (
-/obj/structure/platform_decoration{
- dir = 4
- },
+"aSC" = (
/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+ icon_state = "S"
},
-/turf/open/shuttle/dropship{
- icon_state = "rasputin3"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"Hf" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 2
+"aSD" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/machinery/light{
+/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
-/obj/structure/pipes/vents/scrubber{
- dir = 4
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/area/golden_arrow/supply)
+"aSF" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/cryo_cells)
-"Hg" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/structure/machinery/light{
+/obj/structure/bed/chair,
+/turf/open/floor/almayer/edge/smooth{
dir = 8
},
-/obj/item/toy/plush/therapy/blue{
+/area/golden_arrow/hangar)
+"aSI" = (
+/obj/structure/largecrate/random/case/double{
+ pixel_y = 5;
+ pixel_x = 4
+ },
+/obj/structure/largecrate/random/case/double{
+ pixel_y = -7;
pixel_x = 6;
- pixel_y = 9
+ layer = 3.1
+ },
+/obj/structure/largecrate/random/mini/small_case{
+ pixel_x = 14;
+ layer = 3.1;
+ pixel_y = 24
},
-/obj/item/toy/plush/therapy/random_color,
/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+ icon_state = "cargo"
},
-/area/golden_arrow/medical)
-"Hi" = (
-/obj/structure/cargo_container/arious/mid,
-/obj/structure/blocker/invisible_wall,
-/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"Hk" = (
+"aSJ" = (
/obj/structure/surface/table/almayer,
-/obj/item/toy/deck/uno,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/dorms)
-"Hm" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "cargo_arrow"
+/obj/structure/largecrate/random/mini/small_case/c{
+ pixel_x = -15;
+ pixel_y = 9
},
-/area/golden_arrow/cryo_cells)
-"Ho" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/stack/catwalk{
- pixel_x = 2;
- pixel_y = -9
+/obj/item/clothing/mask/cigarette/cigar/tarbacks{
+ pixel_y = 10;
+ pixel_x = -13
},
-/obj/structure/machinery/landinglight/ds1/delayone{
- dir = 8
+/obj/item/storage/fancy/cigar/matchbook/brown{
+ pixel_y = 2
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
},
/area/golden_arrow/hangar)
-"Hp" = (
-/obj/structure/window/framed/almayer,
-/turf/open/floor/plating,
-/area/golden_arrow/medical)
-"Hs" = (
-/obj/structure/bed/chair{
- dir = 8;
- pixel_y = 3
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/dorms)
-"Hv" = (
-/obj/structure/machinery/light{
- dir = 1
- },
-/turf/open/floor/almayer,
-/area/golden_arrow/prep_hallway)
-"Hw" = (
-/obj/structure/window/framed/almayer,
-/turf/open/floor/plating,
-/area/golden_arrow/platoon_commander_rooms)
-"Hy" = (
-/obj/structure/surface/table/almayer,
-/obj/item/trash/plate{
- pixel_x = 4;
- pixel_y = 13
+"aSK" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ pixel_x = -1
},
-/obj/item/trash/plate{
- pixel_x = -3
+/turf/open/floor/almayer/edge/smooth/corner,
+/area/golden_arrow/hangar)
+"aSM" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
},
/turf/open/floor/almayer,
-/area/golden_arrow/cryo_cells)
-"HA" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+/area/golden_arrow/hangar)
+"aSP" = (
+/obj/structure/machinery/door_control{
+ id = "hangarlockdownwest";
+ name = "hangarlockdownwest";
+ pixel_x = -23;
+ needs_power = 0
},
-/obj/structure/cable/heavyduty{
- icon_state = "1-2"
+/turf/open/space/basic,
+/area/space)
+"aSR" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out"
},
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"HD" = (
-/turf/closed/shuttle/midway/transparent{
- icon_state = "38";
- name = "\improper Tripoli"
+"aSS" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
},
/area/golden_arrow/hangar)
-"HE" = (
-/obj/structure/largecrate/supply/ammo{
- fill_from_loc = 1;
- name = "sentry crate"
- },
-/obj/item/ammo_magazine/sentry{
- layer = 3.01
+"aST" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ layer = 3.3
},
-/obj/item/defenses/handheld/sentry,
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonarmory)
-"HF" = (
/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+ icon_state = "plate"
},
-/area/golden_arrow/cryo_cells)
-"HH" = (
-/obj/structure/machinery/light{
+/area/golden_arrow/hangar)
+"aSV" = (
+/obj/structure/bed/chair{
dir = 1
},
-/obj/structure/machinery/cm_vending/sorted/marine_food,
+/obj/structure/machinery/firealarm{
+ dir = 4;
+ pixel_x = 21
+ },
+/obj/structure/surface/table/almayer,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "cargo"
},
-/area/golden_arrow/cryo_cells)
-"HK" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/cable{
- icon_state = "1-2"
+/area/golden_arrow/briefing)
+"aTc" = (
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ dir = 2;
+ name = "\improper Hangar Lockdown Blast Door";
+ id = "hangarlockdownwest"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/cryo_cells)
-"HL" = (
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/prep_hallway)
+"aTe" = (
/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 2
+ icon_state = "cargo"
+ },
+/obj/structure/cargo_container/horizontal/blue/middle,
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"aTf" = (
+/obj/structure/surface/table/almayer,
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/prop/almayer/computer/PC{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/shared_office)
+"aTh" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/camera/autoname/golden_arrow{
+ dir = 8
},
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/cryo_cells)
-"HM" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+/area/golden_arrow/hangar)
+"aTi" = (
+/obj/structure/machinery/door_control{
+ id = "lowervehiclebay2";
+ needs_power = 0;
+ pixel_y = -28;
+ name = "lowervehiclebay2"
},
-/obj/structure/cable{
- icon_state = "1-4"
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow";
+ color = "#E10600"
},
/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+ icon_state = "mono"
},
-/area/golden_arrow/medical)
-"HN" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/power/apc/almayer{
+/area/space)
+"aTj" = (
+/turf/open/floor/almayer/edge/smooth{
dir = 4
},
-/obj/structure/cable{
- icon_state = "0-8";
- layer = 2.36
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
+/area/golden_arrow/cryo_cells)
+"aTl" = (
+/obj/structure/machinery/door_control{
+ id = "weaponsbay1";
+ name = "weaponsbay1";
+ pixel_y = -23;
+ pixel_x = -7;
+ needs_power = 0
},
-/area/golden_arrow/hangar)
-"HO" = (
-/obj/structure/shuttle/part/dropship1/left_outer_wing_connector{
- name = "\improper Tripoli"
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow";
+ color = "#E10600"
},
/turf/open/floor/plating,
/area/golden_arrow/hangar)
-"HP" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+"aTn" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/pipes/vents/scrubber,
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"HR" = (
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
+ },
+/area/golden_arrow/cryo_cells)
+"aTo" = (
/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 1
+ icon_state = "S";
+ layer = 3.3
},
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/golden_arrow/medical)
-"HS" = (
-/obj/structure/machinery/light{
- dir = 1
+ icon_state = "plate"
},
-/obj/structure/pipes/standard/simple/hidden/supply{
+/area/golden_arrow/hangar)
+"aTp" = (
+/obj/structure/machinery/camera/autoname/golden_arrow{
dir = 8
},
/turf/open/floor/almayer{
- dir = 10;
- icon_state = "cargo"
+ icon_state = "cargo_arrow"
},
/area/golden_arrow/hangar)
-"HT" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 1
- },
-/obj/structure/cable/heavyduty{
- icon_state = "2-8"
- },
-/obj/structure/cable/heavyduty{
- icon_state = "0-4"
+"aTr" = (
+/turf/open/floor/almayer/edge/smooth{
+ dir = 10
},
-/turf/open/floor/almayer,
/area/golden_arrow/platoonprep)
-"HW" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/hangar)
-"HY" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply{
+"aTs" = (
+/obj/structure/machinery/door/poddoor/railing{
dir = 8
},
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/platoonarmory)
-"HZ" = (
-/turf/closed/wall/almayer/outer,
-/area/golden_arrow/platoonarmory)
-"Ia" = (
+/area/golden_arrow/engineering)
+"aTu" = (
/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/obj/structure/machinery/power/apc/almayer{
- dir = 1
+ icon_state = "S"
},
-/obj/structure/cable{
- icon_state = "0-8";
- layer = 2.36
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonarmory)
-"Id" = (
-/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/hangar)
-"Ie" = (
-/obj/effect/attach_point/fuel/midway,
-/turf/closed/shuttle/midway/transparent{
- icon_state = "28";
- name = "\improper Tripoli"
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
+/turf/open/floor/almayer/edge/smooth,
/area/golden_arrow/hangar)
-"Ig" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "cargo"
+"aTv" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall/almayer/outer,
+/area/space)
+"aTw" = (
+/obj/structure/machinery/light/double/blue{
+ dir = 8;
+ light_color = "#dae2ff"
},
-/area/golden_arrow/hangar)
-"Ii" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 6
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/engineering)
-"Ij" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+/area/golden_arrow/hangar)
+"aTx" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
},
+/turf/open/floor/plating/plating_catwalk,
/area/golden_arrow/hangar)
-"Il" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E"
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
+"aTz" = (
+/obj/structure/pipes/vents/scrubber{
dir = 8
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/machinery/door/poddoor/railing,
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
},
/area/golden_arrow/hangar)
-"Iq" = (
-/turf/open/floor/almayer/uscm{
- dir = 9;
- icon_state = "logo_directional1"
+"aTA" = (
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 1
},
/area/golden_arrow/hangar)
-"Ir" = (
-/turf/closed/wall/almayer,
-/area/golden_arrow/platoonprep)
-"It" = (
-/obj/effect/landmark/start/marine/alpha,
-/obj/effect/landmark/late_join/alpha,
-/obj/effect/landmark/late_join,
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "cargo_arrow"
- },
-/area/golden_arrow/cryo_cells)
-"Iu" = (
-/obj/structure/sign/safety/rewire{
- pixel_x = 32
- },
-/turf/open/floor/almayer,
-/area/golden_arrow/briefing)
-"Iv" = (
-/obj/structure/ladder{
- id = "engisouth"
+"aTC" = (
+/obj/structure/pipes/vents/pump{
+ dir = 8
},
-/turf/open/floor/almayer,
+/turf/open/floor/almayer/edge/smooth/corner,
/area/golden_arrow/hangar)
-"Iw" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_x = 1;
- pixel_y = 1
+"aTD" = (
+/turf/closed/wall/almayer/outer,
+/area/golden_arrow/platoon_commander_rooms)
+"aTE" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+/obj/structure/sign/safety/ammunition{
+ pixel_x = -18
+ },
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ name = "\improper Weapons Locker";
+ id = "squadarmory";
+ pixel_y = -4
},
/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+ icon_state = "test_floor4"
},
-/area/golden_arrow/medical)
-"Iz" = (
+/area/golden_arrow/platoonarmory)
+"aTG" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ layer = 1.9
},
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/prep_hallway)
-"IA" = (
-/turf/open/floor/almayer/uscm{
- dir = 6;
- icon_state = "logo_directional1"
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
},
-/area/golden_arrow/hangar)
-"IB" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 1
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
},
-/obj/structure/cable{
- icon_state = "0-8";
- layer = 2.36
+/area/golden_arrow/dorms)
+"aTH" = (
+/obj/structure/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
},
-/turf/open/floor/almayer,
-/area/golden_arrow/briefing)
-"IC" = (
-/turf/closed/wall/almayer/outer,
-/area/golden_arrow/engineering)
-"IE" = (
-/obj/effect/landmark/start/marine/smartgunner/alpha,
-/obj/effect/landmark/late_join/alpha,
-/obj/effect/landmark/late_join,
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "cargo_arrow"
+/turf/open/floor/almayer/edge{
+ dir = 8
},
-/area/golden_arrow/cryo_cells)
-"IF" = (
-/obj/structure/machinery/door/poddoor/railing,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/camera/autoname/golden_arrow{
+/area/golden_arrow/prep_hallway)
+"aTM" = (
+/obj/docking_port/stationary/trijent_elevator/shipmap_elevator/cargo{
+ id = "garrow_cargo_elevator_storage";
+ name = "Cargo Elevator Storage";
+ roundstart_template = /datum/map_template/shuttle/trijent_elevator/golden_arrow/cargo;
+ elevator_network = "ArrowCargo";
+ airlock_area = /area/golden_arrow/cargo_shuttle/lower;
+ airlock_exit = "north"
+ },
+/turf/open/floor/corsat,
+/area/golden_arrow/cargo_shuttle/lower)
+"aTN" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/light/double/blue{
dir = 1
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
-/area/golden_arrow/engineering)
-"IH" = (
-/turf/closed/shuttle/elevator{
- dir = 4
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
},
/area/golden_arrow/supply)
-"II" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/vents/pump{
- dir = 4
- },
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"IJ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 8
+"aTO" = (
+/obj/structure/platform{
+ dir = 1
},
-/obj/structure/cable/heavyduty{
- icon_state = "2-4"
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
},
/obj/structure/cable{
- layer = 2.36
+ icon_state = "2-8"
},
-/obj/structure/disposalpipe/junction{
- dir = 2;
- icon_state = "pipe-j2"
+/turf/open/floor/almayer/edge/smooth/corner,
+/area/golden_arrow/briefing)
+"aTS" = (
+/obj/structure/machinery/camera/autoname/golden_arrow{
+ dir = 8
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/prep_hallway)
-"IL" = (
-/obj/structure/cargo_container/wy/right{
- opacity = 0;
- pixel_y = -17
+/turf/open/floor/almayer/edge/smooth/endcap_left{
+ dir = 4
+ },
+/area/golden_arrow/cryo_cells)
+"aTT" = (
+/obj/structure/machinery/door/airlock/almayer/secure{
+ dir = 1;
+ name = "\improper Platoon Commander's Office";
+ req_access = list();
+ req_one_access_txt = "19;12"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
},
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2";
+ pixel_x = 2
},
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
},
-/obj/item/device/flashlight/lamp/on{
- layer = 4.2;
- pixel_x = 3;
- pixel_y = 19
+/area/golden_arrow/platoon_commander_rooms)
+"aTV" = (
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ name = "\improper Hangar Lockdown Blast Door";
+ dir = 4
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
/area/golden_arrow/hangar)
-"IM" = (
-/obj/structure/surface/table/almayer,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/ammo_box/magazine/misc/mre{
- pixel_y = 11
+"aTX" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/item/prop/helmetgarb/flair_io{
- pixel_x = -5;
- pixel_y = -9
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
},
+/turf/open/floor/plating/plating_catwalk,
/area/golden_arrow/platoonprep)
-"IO" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/safety/bulkhead_door{
- pixel_y = -29
- },
-/obj/structure/sign/safety/hazard{
- pixel_x = 14;
- pixel_y = -29
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "cargo_arrow"
+"aUb" = (
+/turf/open/floor/almayer/uscm{
+ icon_state = "logo_directional1";
+ dir = 10
},
/area/golden_arrow/hangar)
-"IV" = (
-/obj/structure/platform{
- dir = 4;
- layer = 2.7
- },
-/obj/structure/stairs/perspective,
-/obj/structure/cable{
- icon_state = "1-2"
+"aUc" = (
+/obj/structure/bed/chair/comfy{
+ buckling_y = 2;
+ dir = 8;
+ pixel_y = 2
},
/turf/open/floor/almayer,
-/area/golden_arrow/briefing)
-"IX" = (
+/area/golden_arrow/cryo_cells)
+"aUd" = (
/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+ icon_state = "NW-out";
+ layer = 2.5;
+ pixel_y = 1
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonarmory)
-"IZ" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
},
/turf/open/floor/almayer{
- icon_state = "dark_sterile"
- },
-/area/golden_arrow/medical)
-"Ja" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
+ icon_state = "plate"
},
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"Jb" = (
-/obj/structure/largecrate/random/case/double,
-/obj/structure/largecrate/random/mini/small_case{
- pixel_y = 17
+"aUe" = (
+/obj/structure/bed{
+ can_buckle = 0
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/hangar)
-"Jd" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/engineering)
-"Jk" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 4
+/obj/structure/bed{
+ buckling_y = 13;
+ layer = 3.5;
+ pixel_y = 13
},
-/obj/structure/cable{
- icon_state = "0-2"
+/obj/item/bedsheet/brown{
+ layer = 3.4
},
-/turf/open/floor/almayer,
-/area/golden_arrow/shared_office)
-"Jm" = (
-/obj/structure/machinery/power/smes/buildable,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/storage/toolbox/electrical{
- pixel_y = 10
+/obj/item/bedsheet/brown{
+ pixel_y = 13
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice1";
+ pixel_x = 16;
+ pixel_y = -15
},
-/area/golden_arrow/engineering)
-"Jo" = (
-/obj/structure/machinery/computer/shuttle_control/ice_colony{
- pixel_y = 33
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/dorms)
+"aUh" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
},
-/obj/structure/machinery/light{
- dir = 4
+/turf/open/floor/almayer/edge{
+ dir = 1
},
-/turf/open/floor/almayer{
- icon_state = "mono"
+/area/golden_arrow/cryo_cells)
+"aUi" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer/edge/smooth/endcap_left{
+ dir = 8
+ },
+/area/golden_arrow/cryo_cells)
+"aUl" = (
+/obj/effect/decal/strata_decals/grime/grime1{
+ dir = 4
},
-/area/golden_arrow/supply)
-"Jp" = (
/obj/structure/machinery/camera/autoname/golden_arrow{
dir = 4
},
@@ -9160,27517 +15584,27299 @@
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"Jt" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/alarm/almayer{
- dir = 1
+"aUn" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer,
-/area/golden_arrow/briefing)
-"Jx" = (
+/turf/open/floor/almayer/edge{
+ dir = 8
+ },
+/area/golden_arrow/supply)
+"aUo" = (
/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 10
+ dir = 8
},
/obj/structure/cable/heavyduty{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- layer = 2.36
+ icon_state = "4-8"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonarmory)
-"Jy" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "cargo_arrow"
},
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+/area/golden_arrow/hangar)
+"aUq" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/item/stool{
- pixel_x = -1;
- pixel_y = 12
+/obj/vehicle/powerloader{
+ dir = 4
},
/turf/open/floor/almayer{
dir = 5;
icon_state = "plating"
},
-/area/golden_arrow/engineering)
-"JB" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
+/area/golden_arrow/motor_pool)
+"aUv" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
},
-/area/golden_arrow/cryo_cells)
-"JC" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+/turf/closed/wall/almayer/outer,
+/area/golden_arrow/platoonarmory)
+"aUy" = (
+/obj/vehicle/powerloader{
+ dir = 1
},
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "cargo_arrow"
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo"
},
-/area/golden_arrow/hangar)
-"JE" = (
-/obj/structure/machinery/door/poddoor/shutters/almayer{
- dir = 4;
- id = "squadarmory";
- name = "\improper Gear Lockers"
+/obj/structure/barricade/handrail{
+ dir = 8;
+ pixel_x = -1
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonprep)
-"JF" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/machinery/prop/almayer/computer/PC{
+/obj/structure/barricade/handrail{
dir = 4
},
-/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"JG" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+/obj/structure/machinery/light/small{
+ light_color = "#C02526";
+ color = "#C02526"
},
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
+/obj/structure/prop{
+ icon = 'icons/obj/structures/props/platforms.dmi';
+ icon_state = "platform";
+ name = "powerloader dock";
+ desc = "A square metal surface resting on four legs.";
+ dir = 8;
+ layer = 2.97
+ },
+/obj/structure/prop{
+ icon = 'icons/obj/structures/props/platforms.dmi';
+ icon_state = "platform";
+ name = "powerloader dock";
+ desc = "A square metal surface resting on four legs.";
+ dir = 4;
+ layer = 2.97
},
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/hangar)
-"JH" = (
-/turf/closed/shuttle/midway/transparent{
- icon_state = "89";
- name = "\improper Tripoli"
+/area/golden_arrow/supply)
+"aUB" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/toolbox/mechanical/green{
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
/area/golden_arrow/hangar)
-"JI" = (
-/obj/structure/machinery/faxmachine/uscm/command/capt,
-/obj/structure/surface/table/reinforced/almayer_B,
-/turf/open/floor/almayer,
-/area/golden_arrow/platoon_commander_rooms)
-"JJ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/device/radio/intercom{
- freerange = 1;
- name = "General Listening Channel";
- pixel_y = 28
+"aUC" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/structure/machinery/door/airlock/almayer/secure{
+ dir = 8;
+ name = "\improper Shared Office";
+ req_access = null
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/shared_office)
+"aUD" = (
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
},
-/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"JK" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/light,
+"aUE" = (
+/turf/open/floor/plating,
+/area/golden_arrow/supply)
+"aUF" = (
+/obj/structure/machinery/camera/autoname/golden_arrow{
+ dir = 4
+ },
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "cargo_arrow"
},
/area/golden_arrow/hangar)
-"JL" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/obj/structure/largecrate/supply/supplies/flares{
- layer = 3.1
- },
-/obj/structure/machinery/light{
- dir = 8
+"aUG" = (
+/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call{
+ dockId = "garrow_vehicle_elevator_one";
+ shuttleId = "garrow_vehicle_elevator_one";
+ pixel_y = 35;
+ name = "\improper vehicle elevator one control panel"
},
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"JM" = (
-/obj/structure/largecrate/supply/ammo/m41amk1,
-/obj/structure/largecrate/supply/ammo/m41amk1{
- pixel_x = 3;
- pixel_y = 10
+"aUI" = (
+/obj/structure/machinery/power/fusion_engine{
+ name = "\improper S-52 fusion reactor 17"
},
/turf/open/floor/almayer,
-/area/golden_arrow/platoonarmory)
-"JO" = (
+/area/golden_arrow/engineering)
+"aUJ" = (
/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 1
+ icon_state = "W";
+ layer = 3.3
},
/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- layer = 2.5;
- pixel_x = -1;
- pixel_y = 1
+ icon_state = "E";
+ pixel_x = 1
},
-/obj/effect/decal/cleanable/blood/oil,
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"JQ" = (
+"aUL" = (
/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/almayer/edge/smooth/corner,
+/area/golden_arrow/motor_pool)
+"aUM" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/hangar)
+"aUN" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/prep_hallway)
+"aUO" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer/edge/smooth/corner{
dir = 8
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/golden_arrow/supply)
+"aUP" = (
+/obj/structure/platform,
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
},
-/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"JR" = (
-/obj/structure/largecrate/supply/ammo/m41amk1,
-/obj/structure/largecrate/supply/ammo/m41amk1{
- pixel_x = -3;
- pixel_y = 10
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonarmory)
-"JT" = (
-/obj/structure/machinery/door/poddoor/railing{
- dir = 8;
- id = "apcbayrailing1"
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/motor_pool)
+"aUR" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/landinglight/ds1/delaythree{
+ dir = 1
},
/turf/open/floor/almayer{
- dir = 8;
- icon_state = "black"
+ icon_state = "plate"
},
/area/golden_arrow/hangar)
-"JW" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/bed/chair{
- dir = 8;
- pixel_y = 3
+"aUT" = (
+/obj/structure/platform{
+ dir = 4;
+ layer = 2.7
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"Kc" = (
-/obj/structure/machinery/light{
- dir = 8
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
+ },
+/area/golden_arrow/motor_pool)
+"aUV" = (
+/obj/structure/largecrate/supply/floodlights,
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer{
- icon_state = "mono"
+ icon_state = "cargo"
},
-/area/golden_arrow/supply)
-"Ke" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S";
- layer = 3.3
+/area/golden_arrow/hangar)
+"aUX" = (
+/obj/structure/machinery/light/small/blue{
+ dir = 4;
+ light_color = "#dae2ff";
+ light_power = 0.5
},
+/turf/open/floor/almayer,
+/area/golden_arrow/motor_pool)
+"aUY" = (
/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_x = 1;
- pixel_y = 1
+ icon_state = "N";
+ pixel_y = 2
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/hangar)
-"Kf" = (
-/obj/structure/machinery/light,
-/turf/open/floor/almayer,
/area/golden_arrow/cryo_cells)
-"Kg" = (
-/obj/structure/sign/safety/bulkhead_door{
- pixel_y = 32
+"aVa" = (
+/obj/structure/closet/emcloset,
+/obj/structure/prop/invuln/overhead_pipe{
+ icon = 'icons/obj/structures/props/almayer_props.dmi';
+ icon_state = "wallpipe_3";
+ pixel_y = 22;
+ pixel_x = -14
},
-/obj/structure/sign/safety/hazard{
- pixel_x = 15;
- pixel_y = 32
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/golden_arrow/cryo_cells)
+"aVb" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer{
- dir = 8;
- icon_state = "cargo_arrow"
+ icon_state = "plate"
},
-/area/golden_arrow/engineering)
-"Kh" = (
-/obj/effect/decal/cleanable/blood/oil,
-/obj/structure/machinery/light{
- dir = 8
+/area/golden_arrow/hangar)
+"aVc" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cargo_container/hd/left{
+ opacity = 0
},
+/turf/open/floor/plating/plating_catwalk,
/area/golden_arrow/hangar)
-"Kk" = (
-/obj/structure/bed/chair/comfy,
-/turf/open/floor/almayer,
-/area/golden_arrow/cryo_cells)
-"Km" = (
+"aVf" = (
/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+ icon_state = "N";
+ pixel_y = 1
},
-/obj/effect/decal/cleanable/dirt,
-/obj/item/device/flashlight/lamp/tripod/grey,
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"Kn" = (
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/engineering)
-"Ko" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall/almayer/outer,
-/area/golden_arrow/dorms)
-"Kp" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 4
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"Ky" = (
+"aVg" = (
/obj/effect/decal/warning_stripes{
- icon_state = "W";
- layer = 3.3;
- pixel_x = -1
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+ icon_state = "cargo"
},
+/obj/structure/cargo_container/horizontal/blue/bottom,
/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"Kz" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "dark_sterile"
- },
+"aVi" = (
+/obj/structure/foamed_metal,
+/turf/open/floor/plating,
/area/golden_arrow/cryo_cells)
-"KA" = (
-/turf/closed/shuttle/midway/transparent{
- icon_state = "23";
- name = "\improper Tripoli"
+"aVj" = (
+/obj/item/device/flashlight/lamp/tripod/grey,
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
/area/golden_arrow/hangar)
-"KB" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
+"aVk" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 1
+/turf/open/floor/almayer/edge{
+ dir = 4
+ },
+/area/golden_arrow/cryo_cells)
+"aVl" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/effect/decal/cleanable/cobweb2/dynamic,
/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 10
+ dir = 8
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"KC" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/cable/heavyduty{
- icon_state = "1-2"
+ icon_state = "4-8"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonprep)
-"KE" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/camera/autoname/golden_arrow{
- dir = 8
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
},
-/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"KJ" = (
-/obj/effect/decal/cleanable/dirt,
+/area/golden_arrow/platoonprep)
+"aVm" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/machinery/door/poddoor/almayer/locked{
dir = 2;
- name = "\improper Hangar Lockdown Blast Door"
+ name = "\improper Hangar Lockdown Blast Door";
+ id = "hangarlockdownsouth"
},
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
/area/golden_arrow/hangar)
-"KK" = (
-/obj/structure/cable{
- layer = 2.36;
- pixel_x = -3;
- pixel_y = 12
- },
-/obj/structure/cable{
- layer = 2.36;
- pixel_x = -1;
- pixel_y = 12
- },
-/obj/structure/cable{
- layer = 2.36;
- pixel_x = 1;
- pixel_y = 12
- },
-/obj/structure/cable{
- layer = 2.36;
- pixel_x = 3;
- pixel_y = 12
- },
-/obj/structure/cable{
- icon_state = "0-2";
- layer = 2.36;
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/structure/cable{
- icon_state = "0-2";
- layer = 2.36;
- pixel_x = -1;
- pixel_y = -3
- },
-/obj/structure/cable{
- icon_state = "0-2";
- layer = 2.36;
- pixel_x = 1;
- pixel_y = -3
+"aVp" = (
+/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{
+ req_one_access_txt = "8;12;39;40";
+ req_access = list()
},
-/obj/structure/cable{
- icon_state = "0-2";
- layer = 2.36;
- pixel_x = 3;
- pixel_y = -3
+/obj/item/reagent_container/food/drinks/cans/souto/lime{
+ pixel_y = 21;
+ pixel_x = 10
},
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"KO" = (
-/obj/structure/prop/invuln/lifeboat_hatch_placeholder/terminal{
- layer = 2.1;
- name = "non-functional maintenance airlock"
+/turf/open/floor/almayer,
+/area/golden_arrow/platoonprep)
+"aVq" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/sign/safety/airlock{
- pixel_x = 8;
- pixel_y = 1
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
},
/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"KP" = (
-/turf/closed/shuttle/midway/transparent{
- icon_state = "29";
- name = "\improper Tripoli"
+/area/golden_arrow/briefing)
+"aVr" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
},
-/area/golden_arrow/hangar)
-"KQ" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/largecrate/random/secure{
- pixel_y = 10
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "cargo_arrow"
},
/area/golden_arrow/hangar)
-"KR" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 4
+"aVt" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/obj/structure/cable/heavyduty{
- icon_state = "4-8"
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
+ },
+/area/golden_arrow/hangar)
+"aVx" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/item/stack/catwalk{
+ pixel_x = 2;
+ pixel_y = -9
+ },
+/obj/structure/machinery/landinglight/ds1/delayone{
+ dir = 8
},
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"KS" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W";
- layer = 3.3;
- pixel_x = -1
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 1
+"aVy" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+ dir = 8;
+ icon_state = "cargo_arrow"
},
-/area/golden_arrow/medical)
-"KT" = (
+/area/golden_arrow/hangar)
+"aVA" = (
/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 1
+ icon_state = "door_warning";
+ dir = 1
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/heavyduty{
- icon_state = "1-2"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"KU" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/camera/autoname/golden_arrow{
+/turf/open/floor/almayer/edge/smooth/corner{
dir = 4
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/area/golden_arrow/motor_pool)
+"aVC" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/cryo_cells)
-"KV" = (
-/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"KW" = (
-/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
},
-/area/golden_arrow/medical)
-"La" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
+/obj/structure/cable/heavyduty{
+ icon_state = "1-4"
},
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/platoonprep)
+"aVD" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/hangar)
+"aVF" = (
/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+ icon_state = "cargo"
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/cargo_container/horizontal/blue/top{
+ pixel_x = 16
},
-/area/golden_arrow/briefing)
-"Lc" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/firecloset/full,
/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"Lf" = (
-/turf/open/shuttle/elevator,
-/area/golden_arrow/supply)
-"Lg" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/paper_bin/uscm{
- pixel_x = -6;
- pixel_y = 7
- },
-/obj/item/tool/pen{
- pixel_x = -7;
- pixel_y = 4
+/area/golden_arrow/hangar)
+"aVG" = (
+/obj/structure/pipes/vents/pump,
+/obj/structure/barricade/handrail,
+/turf/open/floor/almayer,
+/area/golden_arrow/motor_pool)
+"aVI" = (
+/obj/structure/machinery/light/double/blue{
+ dir = 4;
+ light_color = "#dae2ff"
},
-/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+/obj/structure/cable/heavyduty{
+ icon_state = "1-8"
},
-/area/golden_arrow/medical)
-"Lh" = (
-/obj/structure/machinery/power/terminal,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/stack/cable_coil,
-/obj/structure/machinery/light{
- dir = 4
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/shared_office)
+"aVJ" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/item/tool/warning_cone{
- pixel_x = -15;
- pixel_y = 16
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = -29
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/engineering)
-"Ll" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply{
+/obj/structure/machinery/power/apc/almayer{
dir = 8
},
/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/almayer{
- icon_state = "mono"
+ icon_state = "0-4";
+ layer = 2.36
},
-/area/golden_arrow/cryo_cells)
-"Lm" = (
-/obj/effect/decal/siding{
- icon_state = "siding2"
+/turf/open/floor/almayer/edge{
+ dir = 10
},
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"Ln" = (
+/area/golden_arrow/dorms)
+"aVL" = (
/obj/structure/barricade/handrail{
- dir = 8
+ layer = 3.7;
+ pixel_y = -9
},
-/obj/structure/closet/secure_closet,
/obj/structure/barricade/handrail{
- dir = 4
+ dir = 1;
+ layer = 3.01;
+ pixel_y = 13
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"Lo" = (
-/turf/closed/shuttle/elevator/gears,
-/area/golden_arrow/supply)
-"Lq" = (
-/obj/structure/machinery/light{
- dir = 4
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo"
},
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/golden_arrow/motor_pool)
+"aVO" = (
+/obj/structure/closet/secure_closet/platoon_sergeant,
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/cryo_cells)
-"Lr" = (
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "plate"
+ },
+/area/golden_arrow/platoonprep)
+"aVP" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
},
/area/golden_arrow/hangar)
-"Lt" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+"aVQ" = (
+/obj/structure/machinery/light/double/blue{
+ dir = 8;
+ light_color = "#dae2ff"
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
+/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/cable/heavyduty{
- icon_state = "4-8"
+ icon_state = "1-2"
},
-/obj/structure/machinery/door/poddoor/almayer/open{
- closed_layer = 3.3;
- dir = 4;
- id = "squadblastdoor";
- layer = 3.3;
- name = "First Platoon Ready Bay Blast Door";
- open_layer = 3.3
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/platoonprep)
+"aVR" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- layer = 1.9
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/obj/structure/machinery/gear{
+ id = "garrow_vehicle_elevator_two"
},
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "blackcorner";
+ dir = 8
},
-/area/golden_arrow/platoonarmory)
-"Lu" = (
+/area/golden_arrow/vehicle_shuttle/two/upper)
+"aVT" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/golden_arrow/hangar)
-"Lx" = (
-/obj/structure/filingcabinet/chestdrawer{
- density = 0;
- pixel_x = -8;
- pixel_y = 16
- },
-/obj/structure/filingcabinet{
- density = 0;
- pixel_x = 8;
- pixel_y = 16
- },
-/obj/structure/cable{
- icon_state = "2-4"
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
},
-/turf/open/floor/almayer,
-/area/golden_arrow/shared_office)
-"LA" = (
-/obj/structure/machinery/firealarm{
- dir = 4;
- pixel_x = 24
+/obj/structure/machinery/light/double/blue{
+ dir = 8;
+ light_color = "#dae2ff"
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "dark_sterile"
+ },
+/area/golden_arrow/medical)
+"aVU" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
},
+/turf/open/floor/almayer/edge/smooth,
/area/golden_arrow/hangar)
-"LC" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/surface/table/almayer,
-/obj/structure/machinery/computer/ares_console{
- dir = 4
+"aVW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8
},
-/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"LD" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
-/obj/structure/sign/safety/ladder{
- pixel_x = -17;
- pixel_y = -15
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
-/obj/structure/sign/safety/maint{
- pixel_x = -17
+/obj/structure/cable/heavyduty{
+ icon_state = "node";
+ layer = 2.38
},
-/turf/open/floor/almayer{
- dir = 4;
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/motor_pool)
+"aVX" = (
+/obj/effect/decal/warning_stripes{
icon_state = "cargo_arrow"
},
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/supply)
+"aVY" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
+ },
/area/golden_arrow/hangar)
-"LH" = (
-/obj/structure/machinery/camera/autoname/golden_arrow{
+"aVZ" = (
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/golden_arrow/platoonprep)
+"aWa" = (
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"aWb" = (
+/turf/open/floor/almayer/edge/smooth/corner{
dir = 8
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/area/golden_arrow/cryo_cells)
+"aWc" = (
+/obj/structure/machinery/camera/autoname/golden_arrow{
+ dir = 1
+ },
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/prep_hallway)
+"aWh" = (
+/turf/closed/wall/almayer/outer,
+/area/golden_arrow/cryo_cells)
+"aWi" = (
+/obj/structure/machinery/light/double/blue{
+ dir = 8;
+ light_color = "#dae2ff"
},
-/area/golden_arrow/hangar)
-"LI" = (
-/obj/structure/machinery/light,
/turf/open/floor/almayer,
/area/golden_arrow/prep_hallway)
-"LJ" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 1
+"aWj" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/pipes/standard/simple/hidden/supply{
+/obj/structure/machinery/light/double/blue{
+ dir = 4;
+ light_color = "#dae2ff"
+ },
+/turf/open/floor/almayer/edge/smooth{
dir = 8
},
-/turf/open/floor/almayer{
- dir = 10;
- icon_state = "cargo"
+/area/golden_arrow/hangar)
+"aWl" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
+/turf/open/floor/plating/plating_catwalk,
/area/golden_arrow/hangar)
-"LL" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E"
+"aWm" = (
+/obj/structure/machinery/landinglight/ds1/delaythree{
+ dir = 8
},
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"LO" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/machinery/prop/almayer/CICmap{
- layer = 4;
- pixel_x = -1;
- pixel_y = 5
+"aWo" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"LQ" = (
-/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/engineering)
-"LU" = (
-/obj/structure/platform{
- dir = 1
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
+/turf/open/floor/almayer,
+/area/golden_arrow/engineering)
+"aWw" = (
/obj/effect/decal/warning_stripes{
- icon_state = "S"
+ icon_state = "SW-out";
+ pixel_x = -1
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/briefing)
-"LV" = (
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
- },
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
+/area/golden_arrow/cryo_cells)
+"aWx" = (
+/obj/structure/bed/chair{
dir = 4
},
/turf/open/floor/almayer,
-/area/golden_arrow/prep_hallway)
-"LX" = (
-/obj/effect/decal/cleanable/dirt,
+/area/golden_arrow/dorms)
+"aWy" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/hangar)
-"Ma" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out"
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
},
-/obj/structure/machinery/light,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
},
-/area/golden_arrow/hangar)
-"Md" = (
-/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"Mf" = (
-/obj/structure/machinery/computer/supply_drop_console/limited/alternate{
- density = 1
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
- },
-/area/golden_arrow/engineering)
-"Mh" = (
-/obj/structure/platform{
- dir = 1
+ icon_state = "mono"
},
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 1
+/area/golden_arrow/cryo_cells)
+"aWC" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/disposalpipe/junction{
+ dir = 8
},
-/area/golden_arrow/briefing)
-"Mi" = (
-/obj/structure/machinery/landinglight/ds1,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/prep_hallway)
+"aWE" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
},
+/turf/open/floor/almayer/edge/smooth,
/area/golden_arrow/hangar)
-"Mj" = (
-/obj/item/stack/sheet/metal,
-/obj/item/stack/rods{
- pixel_x = -13;
- pixel_y = 16
+"aWH" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
},
-/obj/effect/decal/siding{
- icon_state = "siding8"
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"Mk" = (
-/obj/effect/decal/strata_decals/grime/grime1,
-/obj/structure/machinery/firealarm{
- pixel_y = 28
+/obj/structure/bed/chair/comfy{
+ dir = 4
},
-/obj/structure/machinery/disposal{
- density = 0;
- layer = 3.2;
- pixel_y = 12
+/turf/open/floor/almayer,
+/area/golden_arrow/cryo_cells)
+"aWI" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
-/obj/structure/sign/poster{
- desc = "The Armat Battlefield Systems Model 41 Derivative 'A' Pulse Rifle Mark One. The only pinup you'll ever need.";
- icon_state = "poster15";
- name = "pulse rifle pinup";
- pixel_x = -27;
- pixel_y = 6
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/trunk{
- dir = 4
+/turf/open/floor/almayer,
+/area/golden_arrow/cryo_cells)
+"aWJ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S";
+ layer = 3.3
+ },
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/prep_hallway)
+"aWL" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
},
/turf/open/floor/almayer,
-/area/golden_arrow/platoonprep)
-"Mm" = (
-/obj/structure/sink{
- layer = 3.1;
- pixel_y = 24
+/area/golden_arrow/hangar)
+"aWM" = (
+/obj/structure/surface/table/almayer,
+/obj/item/toy/deck,
+/obj/structure/machinery/light/double/blue{
+ light_color = "#dae2ff"
},
-/obj/structure/mirror{
- pixel_x = -1;
- pixel_y = 35
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/dorms)
+"aWN" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
+/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
- icon_state = "dark_sterile"
- },
-/area/golden_arrow/cryo_cells)
-"Mn" = (
-/turf/closed/shuttle/midway/transparent{
- icon_state = "80";
- name = "\improper Tripoli"
+ icon_state = "mono"
},
/area/golden_arrow/hangar)
-"Mr" = (
-/obj/structure/largecrate/supply/medicine/medkits{
- layer = 3.1;
- pixel_x = 8;
- pixel_y = 24
+"aWP" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S";
+ layer = 3.3
},
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "cargo_arrow"
+ icon_state = "plate"
},
/area/golden_arrow/hangar)
-"Ms" = (
+"aWQ" = (
+/obj/structure/platform{
+ dir = 1
+ },
/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- pixel_y = 1
+ icon_state = "S"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/prep_hallway)
-"Mt" = (
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/briefing)
+"aWS" = (
/obj/effect/decal/warning_stripes{
- icon_state = "W";
- layer = 3.3;
- pixel_x = -1
+ icon_state = "door_warning";
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/heavyduty{
icon_state = "1-2"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"Mu" = (
-/obj/structure/shuttle/part/dropship2/transparent/engine_left_cap{
- name = "\improper Tripoli"
+/turf/open/floor/almayer{
+ icon_state = "mono"
},
-/obj/item/tool/screwdriver{
- icon_state = "screwdriver5";
- layer = 3.03;
- pixel_x = -4;
- pixel_y = 5
+/area/golden_arrow/motor_pool)
+"aWU" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
},
-/obj/item/trash/eat{
- pixel_x = 10
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
},
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"Mv" = (
-/obj/structure/machinery/light,
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"Mw" = (
+"aWV" = (
/obj/effect/decal/warning_stripes{
- icon_state = "W";
- layer = 3.3
+ icon_state = "N";
+ pixel_y = 1
},
-/obj/effect/decal/strata_decals/grime/grime4,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
},
/area/golden_arrow/hangar)
-"MB" = (
+"aWW" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
- pixel_y = 1
+ pixel_y = 2
},
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+/obj/structure/machinery/light/double/blue{
+ dir = 8;
+ light_color = "#dae2ff"
+ },
+/obj/structure/pipes/vents/scrubber{
+ dir = 4
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/hangar)
-"MC" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
- },
-/turf/open/floor/almayer,
-/area/golden_arrow/platoon_commander_rooms)
-"MD" = (
-/obj/item/prop/magazine/book/starshiptroopers{
- layer = 4.1;
- pixel_y = 47
+/area/golden_arrow/cryo_cells)
+"aWX" = (
+/turf/open/floor/almayer/empty/golden_arrow/vehicle_two,
+/area/golden_arrow/vehicle_shuttle/two/upper)
+"aWZ" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"MF" = (
-/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes{
- icon_state = "S"
+ icon_state = "cargo"
},
/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
- },
-/area/golden_arrow/engineering)
-"MG" = (
-/obj/structure/barricade/handrail{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonarmory)
-"MH" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/largecrate/random/mini/small_case/c{
- pixel_x = -15;
- pixel_y = 9
+ icon_state = "plate"
},
-/obj/item/clothing/mask/cigarette/cigar/tarbacks{
- pixel_x = -13;
- pixel_y = 10
+/area/golden_arrow/motor_pool)
+"aXa" = (
+/obj/structure/machinery/door/poddoor/almayer{
+ dir = 4;
+ name = "\improper Storage Bay Two Blast Door";
+ id = "cargobay2"
},
-/obj/item/storage/fancy/cigar/matchbook/brown{
- pixel_y = 2
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
},
-/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"MJ" = (
-/obj/structure/shuttle/part/dropship1/transparent/lower_left_wing{
- name = "\improper Tripoli"
- },
-/turf/open/floor/plating,
+"aXc" = (
+/obj/structure/barricade/handrail,
+/turf/open/floor/almayer,
+/area/golden_arrow/supply)
+"aXe" = (
+/obj/effect/decal/cleanable/blood/oil,
+/turf/open/floor/plating/plating_catwalk,
/area/golden_arrow/hangar)
-"ML" = (
-/obj/item/prop/almayer/comp_open{
- pixel_x = 40;
- pixel_y = 4
+"aXf" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
},
-/obj/structure/prop{
- color = "#b30000";
- icon = 'icons/obj/pipes/power_cond_white.dmi';
- icon_state = "4-5";
- layer = 2.8;
- name = "cable";
- pixel_x = 5;
- pixel_y = 2
+/obj/structure/machinery/gear{
+ id = "supply_elevator_gear"
},
-/turf/open/shuttle/dropship{
- icon_state = "rasputin14"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/hangar)
-"MM" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/siding{
- icon_state = "siding8"
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 4
},
-/turf/open/floor/plating,
/area/golden_arrow/hangar)
-"MN" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 4
+"aXg" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
},
-/obj/structure/machinery/door/poddoor/railing{
- dir = 4;
- id = "apcbayrailing2"
+/obj/structure/machinery/light/double/blue{
+ light_color = "#dae2ff"
},
/turf/open/floor/almayer{
- dir = 4;
- icon_state = "black"
+ icon_state = "plate"
},
/area/golden_arrow/hangar)
-"MQ" = (
-/obj/structure/bed/chair,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
- },
-/obj/structure/disposalpipe/junction{
- dir = 2;
- icon_state = "pipe-j2"
+"aXh" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{
+ name = "\improper Emergency Infirmary";
+ req_one_access = null
},
-/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"MR" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S";
- pixel_y = 1
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
},
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "cargo_arrow"
+ icon_state = "test_floor4"
},
-/area/golden_arrow/hangar)
-"MT" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
- pixel_y = 25
+/area/golden_arrow/medical)
+"aXj" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
-/obj/structure/janitorialcart,
-/turf/open/floor/almayer,
-/area/golden_arrow/prep_hallway)
-"MU" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/landinglight/ds1{
- dir = 8
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/platoonprep)
+"aXk" = (
+/obj/structure/machinery/body_scanconsole{
+ pixel_y = 6
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/medical)
+"aXq" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/item/tool/warning_cone{
+ pixel_x = -6;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
},
/area/golden_arrow/hangar)
-"MV" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
+"aXr" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 1
+ icon_state = "cargo"
},
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 10
+/obj/structure/largecrate/random/barrel/blue{
+ pixel_x = -10
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"MX" = (
-/obj/structure/barricade/handrail{
- dir = 4
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/motor_pool)
+"aXs" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/plating_catwalk,
/area/golden_arrow/hangar)
-"MY" = (
-/obj/structure/machinery/cm_vending/gear/medic_chemical,
-/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+"aXt" = (
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
+ },
+/area/golden_arrow/platoonprep)
+"aXA" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/medical)
-"MZ" = (
-/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/structure/machinery/firealarm{
+ dir = 4;
+ pixel_x = 21
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2";
+ pixel_x = 2
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
},
-/turf/open/floor/almayer,
/area/golden_arrow/platoon_commander_rooms)
-"Nb" = (
+"aXB" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/cable{
- icon_state = "1-2"
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/area/golden_arrow/supply)
+"aXD" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/cryo_cells)
-"Ne" = (
-/obj/structure/sign/safety/rewire{
- pixel_x = 32
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ layer = 2.5;
+ pixel_y = 1
},
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "cargo_arrow"
+ icon_state = "plate"
},
-/area/golden_arrow/supply)
-"Ng" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
+/area/golden_arrow/hangar)
+"aXG" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ layer = 1.9
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
+ name = "\improper Dorms";
+ dir = 1
},
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/golden_arrow/hangar)
-"Ni" = (
-/turf/open/floor/almayer/uscm{
- dir = 10;
- icon_state = "logo_directional1"
+/area/golden_arrow/dorms)
+"aXH" = (
+/obj/structure/machinery/light/double/blue{
+ light_color = "#dae2ff"
},
-/area/golden_arrow/hangar)
-"No" = (
-/obj/effect/attach_point/fuel/midway{
- pixel_x = -32
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/prep_hallway)
+"aXI" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
},
-/turf/closed/shuttle/midway/transparent{
- icon_state = "33";
- name = "\improper Tripoli"
+/obj/structure/closet/fireaxecabinet{
+ pixel_y = 30
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/prop/almayer/comp_closed{
+ pixel_y = 10
},
-/area/golden_arrow/hangar)
-"Np" = (
-/obj/structure/pipes/vents/scrubber,
/turf/open/floor/almayer,
-/area/golden_arrow/cryo_cells)
-"Nq" = (
-/obj/structure/blocker/invisible_wall,
-/obj/structure/machinery/computer/shuttle/dropship/flight,
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
+/area/golden_arrow/synthcloset)
+"aXJ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
},
-/area/golden_arrow/hangar)
-"Ns" = (
-/obj/structure/bed/bedroll{
- buckle_lying = null;
- can_buckle = 0;
- color = "#333333";
- desc = "A black gym mat, useful if you don't want to use the cold hard floor for exercise.";
- foldabletype = null;
- name = "gym mat";
- pixel_x = -2;
- pixel_y = -3
+/obj/structure/cable/heavyduty{
+ icon_state = "2-8"
},
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "cargo_arrow"
+/obj/structure/cable{
+ icon_state = "0-4";
+ layer = 2.36
},
-/area/golden_arrow/hangar)
-"Nt" = (
-/obj/effect/decal/strata_decals/grime/grime1{
- dir = 4
+/turf/open/floor/almayer/edge{
+ dir = 1
},
-/obj/structure/machinery/light{
- dir = 8
+/area/golden_arrow/platoonarmory)
+"aXL" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
},
/area/golden_arrow/hangar)
-"Nu" = (
-/obj/structure/closet/secure_closet{
- icon_broken = "fridgebroken";
- icon_closed = "fridge";
- icon_locked = "fridge1";
- icon_off = "fridge1";
- icon_opened = "fridgeopen";
- icon_state = "fridge1";
- name = "beverage fridge"
+"aXM" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
},
-/obj/item/reagent_container/food/drinks/bottle/orangejuice{
- pixel_x = 8;
- pixel_y = -7
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
},
-/obj/item/reagent_container/food/drinks/bottle/orangejuice{
- pixel_y = -1
+/obj/structure/cable/heavyduty{
+ icon_state = "0-2"
},
-/obj/item/reagent_container/food/drinks/bottle/orangejuice{
- pixel_x = -2;
- pixel_y = -4
+/obj/structure/cable{
+ layer = 2.36
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/platoonprep)
+"aXN" = (
+/obj/structure/machinery/cm_vending/clothing/medic,
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "squadarmory";
+ name = "\improper Gear Lockers"
+ },
+/turf/closed/wall/almayer,
+/area/golden_arrow/medical)
+"aXP" = (
+/obj/structure/machinery/light/double/blue{
+ dir = 1;
+ light_color = "#dae2ff"
},
-/obj/item/reagent_container/food/drinks/bottle/orangejuice{
- pixel_y = -9
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/cryo_cells)
-"Nv" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_x = 1;
- pixel_y = 1
- },
+/area/golden_arrow/hangar)
+"aXR" = (
/obj/effect/decal/warning_stripes{
- icon_state = "W"
+ icon_state = "SW-out";
+ pixel_x = -1
},
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "dark_sterile"
},
-/area/golden_arrow/hangar)
-"Ny" = (
-/obj/structure/surface/table/almayer,
-/obj/item/notepad/black,
-/obj/item/tool/pen{
- pixel_x = -10;
- pixel_y = 8
+/area/golden_arrow/medical)
+"aXS" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
-/obj/item/prop/tableflag{
- pixel_x = 12;
- pixel_y = -1
+/turf/open/floor/almayer,
+/area/golden_arrow/hangar)
+"aXU" = (
+/obj/structure/curtain/red,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
},
/turf/open/floor/almayer,
-/area/golden_arrow/briefing)
-"Nz" = (
-/obj/structure/machinery/microwave{
- density = 0;
- pixel_y = 9
+/area/golden_arrow/platoon_commander_rooms)
+"aXV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8
},
-/obj/item/reagent_container/food/drinks/coffee/marine{
- pixel_x = 9;
- pixel_y = -3
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
-/obj/item/storage/box/donkpockets{
- pixel_x = 4;
- pixel_y = 22
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
},
+/area/golden_arrow/motor_pool)
+"aXW" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+/obj/item/tool/soap{
+ pixel_y = -5;
+ pixel_x = -5
},
-/area/golden_arrow/cryo_cells)
-"NA" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/golden_arrow/cryo_cells)
-"NF" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/heavyduty{
- icon_state = "1-2"
+/obj/item/tool/soap{
+ pixel_y = 12;
+ pixel_x = 7
+ },
+/obj/item/tool/soap/nanotrasen{
+ pixel_y = 6;
+ pixel_x = -7
},
/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"NG" = (
-/obj/effect/decal/strata_decals/grime/grime1{
+/area/golden_arrow/cryo_cells)
+"aXX" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
-/obj/structure/sign/safety/storage{
- pixel_x = 33
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "cargo_arrow"
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 1
},
-/area/golden_arrow/prep_hallway)
-"NH" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+/area/golden_arrow/cryo_cells)
+"aYb" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/medical)
-"NI" = (
-/obj/structure/pipes/vents/pump{
+/obj/structure/machinery/light/double/blue{
+ dir = 1;
+ light_color = "#dae2ff"
+ },
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/cryo_cells)
+"aYd" = (
+/obj/structure/machinery/power/apc/almayer{
dir = 1
},
-/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+/turf/open/floor/almayer,
+/area/golden_arrow/motor_pool)
+"aYf" = (
+/obj/structure/pipes/vents/pump{
+ dir = 8
},
-/area/golden_arrow/medical)
-"NJ" = (
-/obj/structure/cargo_container/arious/leftmid,
-/obj/structure/blocker/invisible_wall,
/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"NK" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out";
- pixel_x = -1
- },
-/obj/structure/pipes/standard/manifold/hidden/supply,
-/obj/structure/cable{
- icon_state = "1-8"
+"aYh" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/largecrate/random/secure,
/turf/open/floor/almayer{
- icon_state = "dark_sterile"
- },
-/area/golden_arrow/medical)
-"NM" = (
-/turf/closed/shuttle/midway/transparent{
- icon_state = "32";
- name = "\improper Tripoli"
+ icon_state = "cargo"
},
/area/golden_arrow/hangar)
-"NQ" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/machinery/computer/emails{
- pixel_y = 6
+"aYj" = (
+/obj/structure/platform{
+ dir = 8;
+ layer = 2.7
},
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/stairs/perspective,
/turf/open/floor/almayer,
-/area/golden_arrow/shared_office)
-"NR" = (
-/obj/structure/largecrate/supply/weapons/m56d{
- pixel_x = 9;
- pixel_y = 10
- },
-/obj/structure/largecrate/supply/weapons/m56d{
- pixel_x = 9;
- pixel_y = 25
+/area/golden_arrow/briefing)
+"aYk" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
},
+/area/golden_arrow/prep_hallway)
+"aYl" = (
/obj/effect/decal/warning_stripes{
- icon_state = "W"
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 8
},
/area/golden_arrow/hangar)
-"NU" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/safety/ammunition{
- pixel_x = -18
+"aYm" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/machinery/door/poddoor/shutters/almayer{
- id = "weapons_conny";
- name = "\improper Squad One Weapons Locker";
- pixel_y = -4
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/turf/closed/wall/almayer/outer,
+/area/golden_arrow/supply)
+"aYn" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
},
-/area/golden_arrow/platoonarmory)
-"NW" = (
-/obj/structure/machinery/light{
- dir = 1
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/hangar)
-"NX" = (
-/obj/effect/decal/cleanable/dirt,
+/area/golden_arrow/cryo_cells)
+"aYp" = (
/obj/structure/surface/table/almayer,
/obj/structure/barricade/handrail{
- dir = 4
- },
-/obj/item/storage/toolbox/mechanical{
- pixel_x = -11;
- pixel_y = 14
- },
-/obj/item/tool/hand_labeler{
- pixel_x = -3;
- pixel_y = 2
+ dir = 8
},
-/obj/item/spacecash/c10{
- layer = 2.7;
- pixel_x = 11;
- pixel_y = 2
+/obj/effect/spawner/prop_gun/m41aMK1{
+ pixel_y = -3;
+ pixel_x = 6
},
/turf/open/floor/almayer,
/area/golden_arrow/platoonprep)
-"NZ" = (
-/obj/structure/prop/invuln/lattice_prop{
- icon_state = "lattice1";
- pixel_x = 16;
- pixel_y = -15
+"aYq" = (
+/obj/structure/janitorialcart,
+/obj/item/tool/mop{
+ pixel_y = -8
},
-/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"Oa" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W";
- layer = 3.3;
- pixel_x = -1
+/obj/effect/decal/cleanable/cobweb2,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/heavyduty{
- icon_state = "1-8"
+/area/golden_arrow/engineering)
+"aYs" = (
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 4
},
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/engineering)
+"aYu" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
+/area/golden_arrow/prep_hallway)
+"aYv" = (
+/turf/closed/wall/almayer/outer,
+/area/golden_arrow/synthcloset)
+"aYy" = (
+/obj/structure/machinery/light/double/blue{
+ light_color = "#dae2ff"
+ },
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/prep_hallway)
+"aYz" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
+ },
/area/golden_arrow/hangar)
-"Ob" = (
+"aYA" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/obj/structure/cable{
- icon_state = "4-8"
- },
/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"Oc" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 5
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/engineering)
-"Of" = (
-/obj/structure/surface/rack,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/clothing/under/marine/officer/boiler,
-/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"Og" = (
-/obj/structure/cable{
- icon_state = "4-8"
+"aYB" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
},
-/obj/structure/pipes/vents/scrubber{
- dir = 4
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer,
-/area/golden_arrow/cryo_cells)
-"Oh" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply{
+/turf/open/floor/almayer/edge/smooth/corner{
dir = 8
},
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/prep_hallway)
-"Oj" = (
+/area/golden_arrow/hangar)
+"aYC" = (
/obj/effect/decal/warning_stripes{
icon_state = "NE-out";
pixel_x = 1;
pixel_y = 1
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
/area/golden_arrow/hangar)
-"Ol" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+"aYE" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/hangar)
+"aYG" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/machinery/door/poddoor/almayer{
+/obj/structure/machinery/door/poddoor/shutters/almayer{
dir = 4;
- name = "\improper Storage Bay Two Blast Door"
+ id = "squadarmory";
+ name = "\improper Gear Lockers"
},
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/golden_arrow/hangar)
-"Oo" = (
-/obj/structure/bed{
- can_buckle = 0
+/area/golden_arrow/platoonprep)
+"aYH" = (
+/obj/structure/machinery/shower{
+ dir = 8
},
-/obj/structure/bed{
- buckling_y = 13;
- layer = 3.5;
- pixel_y = 13
+/obj/structure/barricade/handrail{
+ layer = 3.1;
+ pixel_y = -1
},
-/obj/item/bedsheet/brown{
- layer = 3.4
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/cryo_cells)
+"aYI" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/item/bedsheet/brown{
- pixel_y = 13
+/obj/structure/surface/table/almayer,
+/obj/item/tool/screwdriver{
+ pixel_x = 1;
+ icon_state = "screwdriver4"
},
-/obj/structure/prop/invuln/lattice_prop{
- icon_state = "lattice1";
- pixel_x = 16;
- pixel_y = -15
+/obj/item/prop/helmetgarb/gunoil{
+ pixel_y = 15;
+ pixel_x = -14
+ },
+/obj/structure/machinery/camera/autoname/golden_arrow{
+ dir = 1
},
/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"Ot" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/cable/heavyduty{
- icon_state = "1-2"
+/area/golden_arrow/platoonprep)
+"aYK" = (
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/golden_arrow/shared_office)
+"aYN" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/platoonarmory)
-"Ou" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 10
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+ icon_state = "plate"
},
-/area/golden_arrow/cryo_cells)
-"Ov" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/photocopier{
- pixel_y = 4
+/area/golden_arrow/hangar)
+"aYO" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/machinery/power/apc/almayer{
+/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/obj/structure/cable{
- icon_state = "0-2"
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/motor_pool)
+"aYP" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ layer = 3.3
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
},
+/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
-/area/golden_arrow/platoon_commander_rooms)
-"Oy" = (
-/turf/closed/shuttle/midway{
- icon_state = "73";
- name = "\improper Tripoli"
+/area/golden_arrow/hangar)
+"aYQ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
/area/golden_arrow/hangar)
-"Oz" = (
-/obj/structure/machinery/light{
- dir = 8
+"aYR" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/cable/heavyduty{
icon_state = "1-2"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/platoonprep)
-"OB" = (
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "cargo_arrow"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/platoonarmory)
-"OD" = (
/obj/effect/decal/warning_stripes{
- icon_state = "N";
+ icon_state = "W";
+ layer = 3.3;
pixel_y = 1
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/vents/scrubber{
- dir = 4
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
+ },
+/area/golden_arrow/hangar)
+"aYT" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ layer = 2.5;
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
},
/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"OF" = (
+"aYV" = (
+/obj/structure/machinery/door/airlock/almayer/medical{
+ dir = 8;
+ name = "\improper Chemistry Subsection";
+ req_one_access = list();
+ req_one_access_txt = "8;12"
+ },
/obj/effect/decal/warning_stripes{
- icon_state = "E";
+ icon_state = "SE-out";
pixel_x = 1
},
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
/obj/structure/cable{
icon_state = "4-8"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"OI" = (
-/obj/structure/cable{
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/golden_arrow/medical)
+"aYX" = (
+/obj/structure/pipes/vents/pump,
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/structure/cable/heavyduty{
icon_state = "4-8"
},
-/obj/structure/pipes/standard/manifold/hidden/supply,
/turf/open/floor/almayer{
- dir = 8;
- icon_state = "cargo_arrow"
+ icon_state = "plate"
},
-/area/golden_arrow/platoon_commander_rooms)
-"OJ" = (
-/obj/structure/prop{
- can_buckle = 1;
- desc = "It's a case made into an impromptu seat.";
- icon = 'icons/obj/structures/crates.dmi';
- icon_state = "case";
- layer = 3.6;
- name = "\improper seat-like case";
- pixel_y = -2
+/area/golden_arrow/motor_pool)
+"aYY" = (
+/turf/closed/wall/almayer,
+/area/golden_arrow/briefing)
+"aZa" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ layer = 3.3;
+ pixel_x = -1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"OK" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/space/basic,
-/area/space)
-"OL" = (
-/obj/structure/prop/invuln/lifeboat_hatch_placeholder{
- layer = 2.1;
- name = "non-functional maintenance airlock"
+"aZb" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer,
+/obj/effect/decal/cleanable/blood/oil,
+/turf/open/floor/plating/plating_catwalk,
/area/golden_arrow/hangar)
-"ON" = (
+"aZf" = (
/obj/effect/decal/warning_stripes{
- icon_state = "S"
+ icon_state = "W"
},
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 2
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
+ },
+/area/golden_arrow/hangar)
+"aZl" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
},
/area/golden_arrow/cryo_cells)
-"OP" = (
-/obj/structure/machinery/door/poddoor/railing{
- dir = 2
+"aZm" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/machinery/computer/cameras/almayer/vehicle{
+ network = list("Golden Arrow","Vehicle","Midway");
+ pixel_x = 17;
+ dir = 8
},
-/area/golden_arrow/engineering)
-"OQ" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
+/obj/structure/machinery/prop/almayer/CICmap{
+ density = 0;
+ dir = 8;
+ icon_state = "shuttle";
+ layer = 2.97;
+ name = "Tactical Map Display";
+ pixel_x = 17;
+ pixel_y = 14
},
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
+/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{
+ name = "Midway Remote Control Console";
+ shuttleId = "dropship_midway";
+ icon_state = "cameras_old";
+ dir = 8;
+ pixel_x = 17;
+ pixel_y = -14
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"OU" = (
-/obj/effect/decal/strata_decals/grime/grime2,
-/obj/structure/machinery/power/apc/almayer{
- dir = 1
+/obj/structure/surface/table/reinforced/almayer_B{
+ pixel_x = 14;
+ layer = 2.01
},
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
+/obj/structure/machinery/light/double/blue{
+ dir = 1;
+ light_color = "#dae2ff"
},
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 1
+/obj/item/clothing/glasses/hud/health{
+ pixel_y = 5;
+ pixel_x = 7
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/open/floor/almayer/edge/smooth{
+ dir = 5
},
-/turf/open/floor/almayer,
-/area/golden_arrow/prep_hallway)
-"OW" = (
+/area/golden_arrow/platoon_commander_rooms)
+"aZp" = (
/obj/effect/decal/warning_stripes{
- icon_state = "SE-out"
+ icon_state = "W";
+ layer = 3.3;
+ pixel_x = -1
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/golden_arrow/medical)
+"aZr" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/surface/table/almayer,
+/turf/open/floor/almayer,
+/area/golden_arrow/cryo_cells)
+"aZw" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge/smooth/corner,
+/area/golden_arrow/cryo_cells)
+"aZx" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/golden_arrow/hangar)
-"OX" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "door_warning";
+ dir = 1
},
-/area/golden_arrow/hangar)
-"OZ" = (
-/obj/structure/largecrate/supply/medicine/medkits{
- pixel_x = -11;
- pixel_y = 9
+/turf/open/floor/almayer/edge{
+ dir = 1
},
-/obj/structure/largecrate/supply/medicine/medkits{
- pixel_x = 14;
- pixel_y = 9
+/area/golden_arrow/prep_hallway)
+"aZy" = (
+/obj/vehicle/powerloader{
+ dir = 1
},
-/obj/structure/largecrate/supply/medicine/medkits{
- layer = 3.1;
- pixel_x = 8;
- pixel_y = 24
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
icon_state = "cargo"
},
/area/golden_arrow/hangar)
-"Pc" = (
-/obj/structure/barricade/handrail{
- dir = 8
- },
-/obj/structure/surface/table/almayer,
-/obj/item/prop/magazine/dirty/torn{
- pixel_x = 2;
- pixel_y = 6
- },
-/obj/item/trash/cigbutt{
- pixel_x = -7;
- pixel_y = 10
+"aZB" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
},
-/obj/item/trash/eat{
- pixel_x = 10
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1;
+ pixel_x = 1
},
-/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"Pd" = (
-/turf/closed/shuttle/midway{
- icon_state = "42";
- name = "\improper Tripoli"
+/turf/open/floor/almayer/edge/smooth/corner{
+ dir = 4
},
/area/golden_arrow/hangar)
-"Pe" = (
-/obj/structure/shuttle/part/dropship1/transparent/inner_left_weapons{
- name = "\improper Tripoli"
+"aZC" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"Pi" = (
-/obj/structure/cargo_container/wy/left{
- pixel_y = 5
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 2
},
-/obj/structure/blocker/invisible_wall,
-/turf/open/floor/almayer,
+/obj/item/tool/warning_cone{
+ pixel_y = 16;
+ pixel_x = -15
+ },
+/turf/open/floor/almayer/edge/smooth,
/area/golden_arrow/hangar)
-"Pj" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "test_floor5"
+"aZD" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/medical)
-"Pl" = (
-/obj/structure/machinery/landinglight/ds1/delayone{
- dir = 8
+/obj/structure/surface/table/almayer,
+/obj/item/hardpoint/locomotion/treads{
+ pixel_y = 17
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 5;
+ icon_state = "plating"
},
-/area/golden_arrow/hangar)
-"Pr" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+/area/golden_arrow/motor_pool)
+"aZG" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/cable{
- icon_state = "4-8"
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/hangar)
+"aZH" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/disposalpipe/segment{
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/prop/invuln/overhead_pipe{
dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/dorms)
-"Ps" = (
-/obj/structure/machinery/camera/autoname/golden_arrow{
- dir = 1
+ pixel_y = 19;
+ pixel_x = -9
},
-/obj/structure/sign/safety/ammunition{
- pixel_y = -26
+/obj/structure/curtain/red{
+ pixel_y = 6
},
-/obj/structure/sign/safety/one{
- pixel_x = 14;
- pixel_y = -26
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo"
},
/turf/open/floor/almayer,
-/area/golden_arrow/platoonarmory)
-"Pu" = (
-/obj/structure/bed/chair/office/dark{
- dir = 8
+/area/golden_arrow/hangar)
+"aZK" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/golden_arrow/shared_office)
-"PA" = (
-/obj/structure/machinery/landinglight/ds1/delaytwo{
- dir = 4
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "cargo_arrow"
},
/area/golden_arrow/hangar)
-"PF" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- layer = 2.5;
- pixel_y = 1
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_y = 1
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
+"aZL" = (
+/obj/structure/machinery/landinglight/ds1/delaythree{
+ dir = 1
},
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/golden_arrow/hangar)
-"PH" = (
-/obj/structure/surface/table/almayer,
-/obj/item/trash/wy_chips_pepper{
- pixel_x = -5;
- pixel_y = 5
+"aZM" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/vents/pump{
+ dir = 4
},
/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"PI" = (
-/obj/structure/sign/safety/bulkhead_door{
- pixel_y = -29
- },
-/obj/structure/sign/safety/hazard{
- pixel_x = 14;
- pixel_y = -29
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
+"aZP" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/light/small/blue{
dir = 4;
- icon_state = "cargo_arrow"
- },
-/area/golden_arrow/hangar)
-"PJ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/safety/storage{
- pixel_x = -18;
- pixel_y = -7
+ light_color = "#dae2ff";
+ light_power = 0.5
},
-/obj/structure/sign/safety/one{
- pixel_x = -18;
- pixel_y = 7
+/obj/structure/machinery/prop/almayer/computer/PC{
+ dir = 8
},
/turf/open/floor/almayer,
-/area/golden_arrow/platoonprep)
-"PK" = (
+/area/golden_arrow/supply)
+"aZQ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ layer = 3.3;
+ pixel_x = -1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
/obj/structure/bed/bedroll{
+ pixel_x = 1;
+ color = "#333333";
+ name = "gym mat";
buckle_lying = null;
can_buckle = 0;
- color = "#006db0";
- desc = "A mechanic's mat.";
foldabletype = null;
- name = "floor mat";
- pixel_y = -4
+ desc = "A black gym mat, useful if you don't want to use the cold hard floor for exercise."
},
-/obj/effect/decal/cleanable/blood/oil,
-/obj/item/tool/weldingtool{
- pixel_y = 21
- },
-/obj/item/tool/wrench{
- pixel_y = 7
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
/area/golden_arrow/hangar)
-"PN" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+"aZR" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
},
-/obj/structure/cable/heavyduty{
- icon_state = "1-2"
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
},
-/obj/structure/machinery/door/poddoor/railing{
- dir = 8
+/obj/structure/prop/dam/crane{
+ pixel_y = -13
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"PP" = (
-/obj/structure/machinery/firealarm{
- dir = 8;
- pixel_x = -24
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
+ },
+/area/golden_arrow/supply)
+"aZV" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer,
-/area/golden_arrow/prep_hallway)
-"PR" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/engineering)
-"PS" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/dorms)
-"PT" = (
-/obj/structure/platform_decoration{
- dir = 4
+/area/golden_arrow/platoonarmory)
+"aZW" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "cargo_arrow"
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
},
-/area/golden_arrow/engineering)
-"PV" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/prop/dam/crane/cargo{
- desc = "Standard cargo crane used by the USCM. Looks like this one has replacement parts for the Tripoli on it. You probably couldn't name half of these.";
+/turf/open/floor/almayer/edge/smooth{
dir = 4
},
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"PW" = (
-/obj/structure/cargo_container/wy/right{
- pixel_y = 5
+/area/golden_arrow/platoonprep)
+"aZY" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/blocker/invisible_wall,
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"PX" = (
-/turf/closed/shuttle/elevator{
- dir = 10
+/obj/effect/decal/siding{
+ icon_state = "siding6"
},
-/area/golden_arrow/supply)
-"PY" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/door/poddoor/shutters/almayer{
- id = "equipment_conny";
- name = "\improper Squad One Equipment Locker"
+/turf/open/floor/plating,
+/area/golden_arrow/hangar)
+"aZZ" = (
+/obj/structure/machinery/door/poddoor/railing{
+ id = "garrow_vehicle_elevator_two";
+ dir = 8
},
/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/golden_arrow/platoonarmory)
-"PZ" = (
-/obj/structure/shuttle/part/dropship1/transparent/outer_left_weapons{
- name = "\improper Tripoli"
+ icon_state = "black";
+ dir = 8
},
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"Qg" = (
-/obj/structure/bed/chair{
- dir = 4
+/area/golden_arrow/vehicle_shuttle/two/upper)
+"baN" = (
+/turf/open/floor/almayer/aicore,
+/area/golden_arrow/ai_interface)
+"bcc" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/camera/autoname/golden_arrow{
- dir = 4;
- name = "ship-grade camera"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"Qi" = (
-/obj/structure/platform{
- dir = 4;
- layer = 2.7
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
+/area/golden_arrow/supply)
+"bmu" = (
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ name = "\improper Hangar Lockdown Blast Door";
+ id = "motorpoolnorth"
},
-/area/golden_arrow/hangar)
-"Qj" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/bed/chair,
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"Qk" = (
-/obj/structure/largecrate/random/secure,
/turf/open/floor/almayer{
- icon_state = "cargo"
+ icon_state = "test_floor4"
},
-/area/golden_arrow/hangar)
-"Qm" = (
-/obj/structure/bed/chair/comfy{
- dir = 1
+/area/golden_arrow/motor_pool)
+"bnm" = (
+/obj/structure/machinery/disposal{
+ density = 0;
+ layer = 3.2;
+ pixel_y = 16
},
+/obj/structure/disposalpipe/trunk,
/turf/open/floor/almayer,
-/area/golden_arrow/cryo_cells)
-"Qn" = (
-/obj/structure/machinery/light,
-/obj/structure/pipes/standard/simple/hidden/supply{
+/area/golden_arrow/engineering)
+"brg" = (
+/obj/structure/platform{
dir = 8
},
-/obj/structure/cable{
- icon_state = "4-8"
+/obj/structure/machinery/telecomms/hub/preset{
+ pixel_x = 6
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 5;
+ icon_state = "plating"
},
-/area/golden_arrow/cryo_cells)
-"Qo" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/stack/medical/bruise_pack{
- pixel_x = -12;
- pixel_y = 7
+/area/golden_arrow/engineering)
+"brA" = (
+/obj/structure/sign/safety/six{
+ pixel_y = -24;
+ pixel_x = 11
},
-/obj/item/stack/medical/ointment{
- pixel_x = 2;
- pixel_y = 12
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow";
+ dir = 4
},
-/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/medical)
-"Qp" = (
-/obj/structure/machinery/floodlight/landing/floor,
-/turf/open/floor/almayer{
- allow_construction = 0;
- icon_state = "plate"
+/turf/open/floor/almayer/edge{
+ dir = 4
},
-/area/golden_arrow/hangar)
-"Qr" = (
-/turf/open/floor/almayer{
- icon_state = "mono"
+/area/golden_arrow/supply)
+"bug" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/cryo_cells)
-"Qs" = (
-/obj/structure/surface/table/almayer,
-/obj/item/prop/almayer/comp_open{
- pixel_x = 2;
- pixel_y = 6
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+ dir = 4
},
-/turf/open/floor/almayer,
+/turf/open/floor/plating/plating_catwalk,
/area/golden_arrow/engineering)
-"Qt" = (
+"bvd" = (
/obj/effect/decal/warning_stripes{
- icon_state = "W";
- layer = 3.3
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "N";
+ pixel_y = 1
},
-/area/golden_arrow/hangar)
-"Qu" = (
-/obj/structure/barricade/handrail{
- dir = 8
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"Qv" = (
+/area/golden_arrow/synthcloset)
+"bwh" = (
+/obj/structure/sign/safety/two{
+ pixel_y = -24;
+ pixel_x = 11
+ },
/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+ icon_state = "cargo_arrow";
+ dir = 4
},
-/obj/structure/machinery/firealarm{
- dir = 4;
- pixel_x = 21
+/turf/open/floor/almayer/edge{
+ dir = 4
},
-/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+/area/golden_arrow/supply)
+"byT" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
},
-/area/golden_arrow/medical)
-"Qw" = (
-/obj/effect/decal/strata_decals/grime/grime4,
-/obj/effect/decal/strata_decals/grime/grime2{
- dir = 1
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/synthcloset)
+"bDB" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+ icon_state = "mono"
},
-/area/golden_arrow/cryo_cells)
-"Qx" = (
-/obj/structure/machinery/camera/autoname/golden_arrow{
- dir = 1
+/area/golden_arrow/motor_pool)
+"bEj" = (
+/obj/structure/sign/safety/bulkhead_door{
+ pixel_y = -29
},
-/turf/open/floor/almayer,
-/area/golden_arrow/prep_hallway)
-"Qy" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+/obj/structure/sign/safety/hazard{
+ pixel_x = 14;
+ pixel_y = -29
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "cargo_arrow"
},
+/area/golden_arrow/hangar)
+"bMl" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/machinery/door/poddoor/almayer{
- dir = 4;
- id = "apc2blastdoor";
- name = "\improper Vehicle Bay Two Blast Door"
+ name = "\improper Synthetic Storage Bay";
+ id = "synthbay"
},
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/golden_arrow/hangar)
-"Qz" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/supply_drop/echo,
-/obj/effect/decal/cleanable/dirt,
+/area/golden_arrow/synthcloset)
+"bPy" = (
/obj/structure/platform{
- dir = 8
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor5"
+ dir = 1
},
-/area/golden_arrow/engineering)
-"QA" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/machinery/camera/autoname/golden_arrow{
- dir = 8
+/obj/structure/machinery/light/small/blue{
+ dir = 4;
+ light_color = "#dae2ff";
+ light_power = 0.5
},
-/obj/structure/cable{
- icon_state = "1-2"
+/turf/open/floor/almayer,
+/area/golden_arrow/supplydrop)
+"bPL" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning";
+ dir = 4
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/platoon_commander_rooms)
-"QB" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "cargo"
+/obj/structure/sign/safety/ladder{
+ pixel_y = -26;
+ pixel_x = 14
},
-/area/golden_arrow/hangar)
-"QC" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/sign/safety/bulkhead_door{
+ pixel_y = -26
},
-/area/golden_arrow/hangar)
-"QD" = (
-/turf/closed/shuttle/midway{
- icon_state = "67";
- name = "\improper Tripoli"
+/turf/open/floor/almayer/edge{
+ dir = 4
},
-/area/golden_arrow/hangar)
-"QE" = (
-/turf/open/shuttle/elevator/grating,
-/area/golden_arrow/supply)
-"QG" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/hardpoint/locomotion/apc_wheels,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/area/golden_arrow/engineering)
+"bZF" = (
+/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{
+ pixel_y = 19;
+ density = 0
},
-/area/golden_arrow/hangar)
-"QH" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/golden_arrow/cryo_cells)
-"QJ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
/obj/structure/cable/heavyduty{
icon_state = "4-8"
},
-/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/platoonarmory)
-"QK" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 9
+/turf/open/floor/almayer,
+/area/golden_arrow/engineering)
+"ccO" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning";
+ dir = 8
},
-/obj/structure/cable{
- icon_state = "1-8"
+/turf/open/floor/almayer,
+/area/golden_arrow/supplydrop)
+"cdX" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow";
+ dir = 8
},
-/obj/structure/machinery/firealarm{
- dir = 4;
- pixel_x = 21
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/platoon_commander_rooms)
-"QL" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 1
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer/edge{
+ dir = 8
+ },
+/area/golden_arrow/supply)
+"cgo" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/pipes/vents/pump{
+ dir = 8
+ },
+/obj/structure/surface/rack,
+/obj/item/book/manual/robotics_cyborgs{
+ pixel_y = 4
+ },
+/obj/item/tool/weldingtool/hugetank,
+/obj/item/tool/wirecutters,
+/obj/structure/machinery/light/small{
+ light_color = "#C02526";
+ color = "#C02526";
+ dir = 4
},
+/turf/open/floor/almayer,
+/area/golden_arrow/synthcloset)
+"ckD" = (
/obj/effect/decal/warning_stripes{
icon_state = "SW-out"
},
-/obj/structure/pipes/vents/scrubber,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/hangar)
-"QM" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/landinglight/ds1{
- dir = 4
+/area/golden_arrow/supply)
+"cqk" = (
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ name = "\improper Hangar Lockdown Blast Door"
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
-/area/golden_arrow/hangar)
-"QN" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 4
+/area/golden_arrow/supply)
+"crq" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/machinery/door/poddoor/railing{
- dir = 4
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/engineering)
+"cwD" = (
+/obj/structure/disposalpipe/junction,
+/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"QO" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+/area/golden_arrow/engineering)
+"cxa" = (
+/obj/structure/barricade/handrail,
+/obj/structure/barricade/handrail{
+ dir = 8
},
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
+/turf/open/floor/almayer,
+/area/golden_arrow/supplydrop)
+"cGQ" = (
+/turf/open/floor/corsat,
+/area/golden_arrow/cargo_shuttle/lower)
+"cHw" = (
+/obj/structure/sign/safety/storage{
+ pixel_y = 25
},
-/obj/structure/machinery/gear{
- id = "supply_elevator_gear"
+/obj/structure/sign/safety/elevator{
+ pixel_x = 14;
+ pixel_y = 25
},
/obj/structure/cable/heavyduty{
icon_state = "1-2"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"QP" = (
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/engineering)
+"cQH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
/obj/structure/cable/heavyduty{
icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/prep_hallway)
-"QS" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 9
- },
-/obj/structure/cable/heavyduty{
- icon_state = "1-8"
+/area/golden_arrow/engineering)
+"cTL" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
},
-/obj/structure/cable{
- icon_state = "0-4";
- layer = 2.36
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/prep_hallway)
-"QV" = (
-/obj/structure/machinery/cm_vending/sorted/medical/no_access{
- density = 0;
- pixel_y = 24
+/area/golden_arrow/supply)
+"cXg" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
},
-/turf/open/floor/almayer{
- icon_state = "test_floor5"
+/obj/structure/machinery/light/small/blue{
+ dir = 8;
+ light_color = "#dae2ff";
+ light_power = 0.25
},
-/area/golden_arrow/medical)
-"QW" = (
-/turf/open/floor/almayer,
-/area/golden_arrow/briefing)
-"QX" = (
-/turf/open/floor/almayer{
- icon_state = "cargo_arrow"
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
},
-/area/golden_arrow/platoonprep)
-"QY" = (
-/obj/structure/pipes/vents/scrubber{
+/area/golden_arrow/supply)
+"dhC" = (
+/turf/open/floor/almayer/edge{
dir = 4
},
+/area/golden_arrow/engineering)
+"dij" = (
+/obj/structure/machinery/autolathe,
/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"Ra" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/dartboard{
- layer = 3.2;
- pixel_y = 41
+/area/golden_arrow/engineering)
+"duL" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/plating_catwalk/aicore,
+/area/golden_arrow/ai_interface)
+"dws" = (
+/obj/structure/machinery/door_control/brbutton{
+ pixel_y = 27;
+ id = "lowerblastdoor"
},
-/obj/structure/bed/chair,
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"Rb" = (
/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 1
+ icon_state = "door_warning";
+ dir = 4
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"Rc" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"Rd" = (
-/obj/structure/barricade/handrail{
+/turf/open/floor/almayer/edge{
dir = 4
},
-/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"Rh" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/door/poddoor/shutters/almayer{
- id = "equipment_conny";
- name = "\improper Squad Two Equipment Locker"
+/area/golden_arrow/engineering)
+"dzT" = (
+/obj/item/ammo_box/magazine/m4a3{
+ pixel_y = 11
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/obj/item/ammo_box/magazine/vp70{
+ pixel_y = 3
},
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
+ },
+/obj/structure/surface/table/reinforced/almayer_B,
+/turf/open/floor/almayer,
/area/golden_arrow/platoonarmory)
-"Ri" = (
-/obj/structure/closet,
-/obj/item/maintenance_jack,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "test_floor5"
+"dLD" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/synthcloset)
-"Rj" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cargo_container/wy/right{
- opacity = 0
+/obj/effect/decal/cleanable/blood/oil,
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
},
/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"Rn" = (
+/area/golden_arrow/engineering)
+"dLT" = (
/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
+ icon_state = "cargo_arrow";
+ dir = 1
},
/obj/structure/cable/heavyduty{
- icon_state = "4-8"
- },
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"Ro" = (
-/obj/structure/surface/table/almayer,
-/obj/item/reagent_container/food/condiment/saltshaker{
- pixel_x = -7;
- pixel_y = 13
- },
-/obj/item/reagent_container/food/condiment/peppermill{
- pixel_x = -11;
- pixel_y = 5
- },
-/obj/item/clothing/head/cmcap{
- pixel_x = 1;
- pixel_y = -3
- },
-/turf/open/floor/almayer,
-/area/golden_arrow/cryo_cells)
-"Ru" = (
-/obj/structure/machinery/door/poddoor/railing{
- id = "apcbayrailing1"
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "black"
+ icon_state = "1-2"
},
-/area/golden_arrow/hangar)
-"Rz" = (
-/obj/structure/machinery/shower{
- dir = 4
+/turf/open/floor/almayer/edge{
+ dir = 1
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/cryo_cells)
-"RA" = (
+/area/golden_arrow/motor_pool)
+"dMj" = (
/obj/structure/cable/heavyduty{
icon_state = "1-2"
},
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 8
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/platoonprep)
-"RD" = (
/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
- },
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
+ dir = 5
},
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- layer = 1.9
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/engineering)
+"dNn" = (
+/obj/structure/machinery/door/airlock/maintenance/colony{
+ req_one_access = null;
+ name = "\improper Supply Launch Bay"
},
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/golden_arrow/platoonprep)
-"RF" = (
-/obj/structure/bed/chair{
- dir = 4
+/area/golden_arrow/supplydrop)
+"dVU" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow";
+ dir = 1
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"RG" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+/turf/open/floor/almayer/edge{
+ dir = 1
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/hangar)
-"RH" = (
-/obj/structure/pipes/vents/scrubber{
- dir = 8
+/area/golden_arrow/motor_pool)
+"ecj" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1;
+ pixel_x = 1
},
/turf/open/floor/almayer,
-/area/golden_arrow/platoonprep)
-"RI" = (
-/obj/structure/machinery/medical_pod/autodoc{
- dir = 1;
- pixel_y = 6
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/area/golden_arrow/synthcloset)
+"eqr" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/medical)
-"RM" = (
-/obj/structure/shuttle/part/dropship2/transparent/engine_right_cap{
- name = "\improper Tripoli"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/effect/decal/cleanable/dirt,
-/obj/item/trash/cigbutt{
- pixel_x = 1;
- pixel_y = 13
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
},
-/obj/item/trash/cigbutt{
- pixel_x = 1;
- pixel_y = 8
+/area/golden_arrow/supply)
+"eqM" = (
+/obj/structure/machinery/door_control{
+ id = "lowerstorage6";
+ name = "lowerstorage6";
+ needs_power = 0;
+ pixel_y = 32
},
-/obj/item/trash/cigbutt{
- layer = 3.2;
- pixel_x = 4;
- pixel_y = 10
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow";
+ dir = 8
},
-/obj/item/trash/cigbutt{
- pixel_x = -10;
- pixel_y = 13
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/item/trash/cigbutt{
- pixel_x = -1;
- pixel_y = 17
+/turf/open/floor/almayer/edge{
+ dir = 8
},
-/obj/item/trash/cigbutt{
- pixel_x = -7;
- pixel_y = 10
+/area/golden_arrow/supply)
+"exb" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/firstaid/fire{
+ pixel_y = 8;
+ pixel_x = 6
},
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"RO" = (
-/obj/structure/stairs/perspective,
-/obj/structure/platform{
+/obj/item/storage/firstaid/regular,
+/turf/open/floor/almayer,
+/area/golden_arrow/engineering)
+"eyx" = (
+/obj/structure/machinery/door/poddoor/almayer{
+ name = "\improper Lower Storage Bay Two Blast Door";
dir = 4;
- layer = 2.7
+ id = "lowerstorage2"
},
-/turf/open/shuttle/dropship{
- icon_state = "rasputin3"
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
},
-/area/golden_arrow/hangar)
-"RR" = (
-/obj/effect/decal/siding,
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"RS" = (
-/obj/structure/machinery/autodoc_console,
+/area/golden_arrow/supply)
+"eEG" = (
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/motor_pool)
+"eES" = (
/obj/effect/decal/warning_stripes{
- icon_state = "W";
- layer = 3.3;
- pixel_x = -1
+ icon_state = "cargo"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/safety/autodoc{
- pixel_x = 32
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
},
-/area/golden_arrow/medical)
-"RT" = (
-/obj/structure/shuttle/part/dropship1/transparent/engine_right_exhaust{
- name = "\improper Tripoli"
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"RY" = (
-/obj/structure/largecrate/random/secure,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"RZ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply{
+/area/golden_arrow/supplydrop)
+"eGR" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/supply)
+"eNC" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow";
dir = 8
},
-/obj/structure/prop/invuln/lattice_prop{
- icon_state = "lattice3";
- pixel_x = 16;
- pixel_y = -15
- },
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/prep_hallway)
-"Sb" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer,
-/area/golden_arrow/cryo_cells)
-"Sc" = (
-/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds1{
- locked = 1;
- name = "\improper Tripoli cargo door"
+/turf/open/floor/almayer/edge{
+ dir = 8
+ },
+/area/golden_arrow/supply)
+"eTc" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
},
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/hangar)
-"Se" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/golden_arrow/supplydrop)
+"eUL" = (
/obj/effect/decal/warning_stripes{
- icon_state = "E";
+ icon_state = "SE-out";
pixel_x = 1
},
-/obj/structure/cable/heavyduty{
- icon_state = "1-2-8"
+/obj/structure/machinery/gear{
+ id = "supply_elevator_gear"
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/hangar)
-"Sf" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 8
- },
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"Si" = (
-/turf/closed/shuttle/elevator{
- dir = 5
+/area/golden_arrow/engineering)
+"eZR" = (
+/obj/item/storage/box/guncase/flamer/fuel{
+ pixel_y = 8
},
-/area/golden_arrow/supply)
-"Sj" = (
-/obj/structure/machinery/landinglight/ds1/delayone{
- dir = 4
+/obj/structure/machinery/light/small/blue{
+ dir = 8;
+ light_color = "#dae2ff";
+ light_power = 0.5;
+ pixel_y = 10
},
+/obj/structure/surface/table/reinforced/almayer_B,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "mono"
},
-/area/golden_arrow/hangar)
-"Sl" = (
-/obj/structure/shuttle/part/dropship2/transparent/engine_left_cap{
- name = "\improper Tripoli"
+/area/golden_arrow/platoonarmory)
+"fbw" = (
+/turf/closed/wall/almayer/outer,
+/area/golden_arrow/cargo_shuttle/lower)
+"fpt" = (
+/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{
+ req_one_access = list()
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/engineering)
+"fqq" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"Sn" = (
/obj/item/device/radio/intercom{
freerange = 1;
name = "General Listening Channel";
pixel_y = 28
},
/turf/open/floor/almayer{
- dir = 4;
- icon_state = "cargo_arrow"
- },
-/area/golden_arrow/hangar)
-"Sp" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/engineering)
-"Sq" = (
-/obj/effect/decal/siding{
- icon_state = "siding8"
+ icon_state = "plate"
},
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"Ss" = (
-/obj/structure/bed/chair{
- buckling_y = 10;
- dir = 4;
- pixel_y = 10
+/area/golden_arrow/supply)
+"frR" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
},
-/obj/structure/machinery/light,
-/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"Sw" = (
/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+ dir = 4
},
/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"Sx" = (
-/obj/effect/decal/cleanable/dirt,
+/area/golden_arrow/engineering)
+"fIR" = (
/obj/effect/decal/warning_stripes{
- icon_state = "N";
+ icon_state = "NE-out";
+ pixel_x = 1;
pixel_y = 1
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/briefing)
-"Sy" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply,
+/area/golden_arrow/supply)
+"fKv" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/item/reagent_container/glass/bucket/janibucket{
+ pixel_y = 15;
+ pixel_x = -7
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/engineering)
+"fPI" = (
+/obj/structure/pipes/vents/pump{
+ dir = 4
+ },
/obj/structure/cable/heavyduty{
icon_state = "1-2"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonprep)
-"Sz" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 1
+/turf/open/floor/almayer/edge{
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+/area/golden_arrow/engineering)
+"fWu" = (
+/turf/closed/wall/almayer/outer{
+ blend_objects = list(/obj/structure/window_frame,/obj/structure/window/framed)
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/area/golden_arrow/engineering)
+"fWz" = (
+/obj/structure/machinery/light/small{
+ light_color = "#C02526";
+ color = "#C02526";
+ dir = 8
},
-/area/golden_arrow/briefing)
-"SE" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/dorms)
-"SH" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_x = 1;
- pixel_y = 1
- },
-/obj/structure/machinery/floodlight/landing/floor,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/area/golden_arrow/supply)
+"gjs" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/hangar)
-"SL" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
},
-/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
+ icon_state = "plate"
},
/area/golden_arrow/engineering)
-"SM" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_x = 1;
- pixel_y = 1
+"gjM" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"SN" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out"
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
},
-/obj/structure/machinery/light,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/turf/open/floor/almayer/edge{
+ dir = 5
+ },
+/area/golden_arrow/platoonarmory)
+"gkN" = (
+/obj/structure/machinery/door_control{
+ id = "lowerstorage5";
+ name = "lowerstorage5";
+ needs_power = 0;
+ pixel_y = 32
},
-/area/golden_arrow/hangar)
-"SO" = (
/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+ icon_state = "cargo_arrow";
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/surface/table/almayer,
-/obj/structure/prop{
- density = 1;
- desc = "A targeting system for dropships. It improves firing accuracy on laser targets. Far beyond repair.";
- icon = 'icons/obj/structures/props/almayer_props.dmi';
- icon_state = "targeting_system";
- layer = 3.1;
- name = "\improper Broken AN/AAQ-178 Weapon Targeting System";
- pixel_x = 7;
- pixel_y = 3
+/turf/open/floor/almayer/edge{
+ dir = 4
},
-/obj/item/prop/almayer/flight_recorder{
- pixel_x = -8;
- pixel_y = 9
+/area/golden_arrow/supply)
+"gqG" = (
+/obj/structure/machinery/door_control{
+ id = "lowerstorage3";
+ name = "lowerstorage3";
+ needs_power = 0;
+ pixel_y = 32
},
-/obj/item/reagent_container/food/drinks/coffee/marine{
- layer = 3.11;
- pixel_x = 7;
- pixel_y = 15
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow";
+ dir = 4
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"SQ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
- pixel_y = 25
+/turf/open/floor/almayer/edge{
+ dir = 4
},
-/obj/structure/pipes/vents/pump,
-/obj/item/trash/uscm_mre{
- pixel_x = 9;
- pixel_y = 14
+/area/golden_arrow/supply)
+"gwS" = (
+/obj/structure/machinery/recharge_station,
+/obj/structure/machinery/light/small{
+ light_color = "#C02526";
+ color = "#C02526";
+ dir = 1
},
-/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"SR" = (
/obj/effect/decal/warning_stripes{
- icon_state = "NE-out"
+ icon_state = "cargo"
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/hangar)
-"SS" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "cargo_arrow"
+ dir = 5;
+ icon_state = "plating"
},
-/area/golden_arrow/hangar)
-"ST" = (
+/area/golden_arrow/engineering)
+"gNW" = (
/obj/effect/decal/warning_stripes{
- icon_state = "W";
- layer = 3.3
+ icon_state = "cargo"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/supply)
+"gPu" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo"
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/hangar)
-"SU" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+/area/golden_arrow/supplydrop)
+"gSr" = (
+/obj/structure/machinery/light/double/blue{
+ light_color = "#dae2ff"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "cargo_arrow"
+/turf/open/floor/almayer,
+/area/golden_arrow/platoonarmory)
+"hbu" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/hangar)
-"SV" = (
-/obj/structure/bed/chair{
- dir = 1
+/obj/structure/pipes/vents/pump{
+ dir = 8;
+ pixel_x = -16
},
-/obj/structure/machinery/firealarm{
+/obj/structure/machinery/light/small/blue{
dir = 4;
- pixel_x = 21
+ light_color = "#dae2ff";
+ light_power = 0.25
},
-/turf/open/floor/almayer{
- icon_state = "cargo"
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
},
-/area/golden_arrow/briefing)
-"SW" = (
-/turf/closed/shuttle/midway{
- icon_state = "31";
- name = "\improper Tripoli"
+/area/golden_arrow/supply)
+"hcq" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/hangar)
-"SX" = (
-/obj/structure/machinery/door/poddoor/railing{
+/obj/structure/disposalpipe/segment{
dir = 2;
- id = "apcbayrailing1"
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/engineering)
+"hcJ" = (
+/obj/structure/surface/table/almayer,
+/obj/item/prop/almayer/chaff_launcher{
+ pixel_y = 9;
+ pixel_x = 3
+ },
+/obj/item/prop/almayer/flare_launcher{
+ pixel_y = 19;
+ pixel_x = 5
},
-/turf/open/floor/almayer{
- icon_state = "black"
+/obj/item/prop/almayer/handheld1{
+ pixel_y = -8;
+ pixel_x = 6
},
-/area/golden_arrow/hangar)
-"SY" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 8
+/turf/open/floor/almayer,
+/area/golden_arrow/engineering)
+"hhQ" = (
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 2
},
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "cargo_arrow"
- },
-/area/golden_arrow/supply)
-"SZ" = (
-/obj/structure/barricade/handrail,
-/obj/structure/reagent_dispensers/fueltank{
- anchored = 1;
- icon = 'icons/obj/structures/props/generic_props.dmi';
- icon_state = "weldtank_old";
- layer = 2.9
+ icon_state = "plate"
},
-/turf/open/floor/almayer,
/area/golden_arrow/engineering)
-"Ta" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
+"hwm" = (
+/obj/structure/stairs/perspective,
+/obj/structure/platform{
+ dir = 4;
+ layer = 2.7
},
-/obj/structure/cable{
+/turf/open/floor/almayer,
+/area/golden_arrow/supplydrop)
+"hxJ" = (
+/turf/closed/wall/almayer/outer,
+/area/golden_arrow/cargo_shuttle/upper)
+"hCn" = (
+/obj/structure/cable/heavyduty{
icon_state = "1-2"
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
},
+/area/golden_arrow/engineering)
+"hGr" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/golden_arrow/briefing)
-"Tb" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
},
/obj/structure/cable/heavyduty{
icon_state = "4-8"
},
-/obj/effect/decal/cleanable/blood/oil,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/open/floor/almayer,
+/area/golden_arrow/engineering)
+"hMX" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/platoonprep)
-"Td" = (
/obj/structure/cable/heavyduty{
icon_state = "4-8"
},
-/obj/structure/pipes/standard/manifold/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonprep)
-"Tg" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/door/poddoor/almayer{
- dir = 2;
- name = "\improper Storage Bay Blast Door"
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/engineering)
+"hPz" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
-/area/golden_arrow/hangar)
-"Tk" = (
-/obj/structure/machinery/prop{
- density = 1;
- desc = "A pump used for refueling the dropship.";
- icon_state = "pipe_d";
- layer = 2.7;
- name = "refueling pump";
- pixel_y = -5
+/obj/structure/machinery/door_control{
+ pixel_y = -19;
+ id = "synthbay";
+ name = "synthetic storage door-control";
+ req_access = list(36)
},
/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"Tm" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out";
- pixel_x = -1
- },
+/area/golden_arrow/synthcloset)
+"hUp" = (
/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_x = 1;
+ icon_state = "N";
pixel_y = 1
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"Tp" = (
-/obj/structure/machinery/camera/autoname/golden_arrow{
- dir = 8
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer{
- icon_state = "cargo_arrow"
- },
-/area/golden_arrow/hangar)
-"Tq" = (
-/obj/structure/machinery/medical_pod/sleeper,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "plate"
},
-/area/golden_arrow/medical)
-"Ts" = (
-/obj/structure/machinery/door/poddoor/railing{
- dir = 8
+/area/golden_arrow/supply)
+"icW" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
},
+/turf/open/floor/plating/plating_catwalk,
/area/golden_arrow/engineering)
-"Tt" = (
-/obj/structure/shuttle/part/dropship1/transparent/inner_right_weapons{
- name = "\improper Tripoli"
- },
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"Ty" = (
-/obj/structure/surface/table/almayer,
-/obj/effect/spawner/random/technology_scanner{
- pixel_x = 15
+"idK" = (
+/obj/structure/barricade/handrail,
+/obj/structure/reagent_dispensers/fueltank{
+ layer = 2.9;
+ icon = 'icons/obj/structures/props/generic_props.dmi';
+ icon_state = "weldtank_old";
+ anchored = 1
},
-/obj/effect/decal/cleanable/dirt,
-/obj/item/reagent_container/food/drinks/coffee/marine{
- pixel_x = 5;
- pixel_y = 12
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo"
},
-/obj/item/reagent_container/food/drinks/dry_ramen{
- pixel_x = 2;
- pixel_y = 5
+/turf/open/floor/almayer,
+/area/golden_arrow/engineering)
+"iGx" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "2-4"
},
-/obj/item/reagent_container/food/drinks/coffee/marine{
- pixel_x = -10;
- pixel_y = 1
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
},
-/turf/open/floor/almayer,
+/turf/open/floor/plating/plating_catwalk,
/area/golden_arrow/engineering)
-"TB" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+"iRi" = (
+/obj/structure/filingcabinet{
+ density = 0;
+ pixel_x = -8;
+ pixel_y = 18;
+ layer = 4.11
},
-/turf/open/floor/almayer,
-/area/golden_arrow/prep_hallway)
-"TD" = (
-/turf/closed/wall/almayer/outer,
-/area/golden_arrow/platoon_commander_rooms)
-"TF" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_x = 1;
- pixel_y = 1
+/obj/structure/filingcabinet{
+ density = 0;
+ pixel_x = 8;
+ pixel_y = 16;
+ layer = 4.11
},
-/obj/structure/machinery/gear{
- id = "supply_elevator_gear"
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-4"
},
+/turf/open/floor/plating/plating_catwalk,
/area/golden_arrow/engineering)
-"TI" = (
+"jnX" = (
/obj/effect/decal/warning_stripes{
- icon_state = "S"
+ icon_state = "cargo_arrow";
+ dir = 8
},
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+/obj/structure/sign/safety/hazard{
+ pixel_x = 14;
+ pixel_y = 27
},
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"TJ" = (
-/obj/structure/ladder{
- id = "enginorth"
+/obj/structure/sign/safety/bulkhead_door{
+ pixel_y = 27
},
-/obj/structure/machinery/light{
+/turf/open/floor/almayer/edge{
dir = 8
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"TK" = (
+/area/golden_arrow/supply)
+"jqA" = (
/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+ icon_state = "door_warning";
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/door/poddoor/railing{
- dir = 2
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"TL" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W";
- layer = 3.3
+/turf/open/floor/almayer/edge{
+ dir = 4
},
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out"
+/area/golden_arrow/engineering)
+"jqJ" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/light/small/blue{
+ dir = 8;
+ light_color = "#dae2ff";
+ light_power = 0.25
},
-/area/golden_arrow/hangar)
-"TP" = (
-/obj/effect/decal/cleanable/blood/oil,
-/obj/structure/machinery/light{
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/engineering)
+"jHV" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow";
dir = 4
},
-/turf/open/shuttle/dropship{
- icon_state = "rasputin3"
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
},
-/area/golden_arrow/hangar)
-"TQ" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "cargo_arrow"
+/area/golden_arrow/motor_pool)
+"jJX" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
},
-/area/golden_arrow/cryo_cells)
-"TU" = (
-/obj/structure/machinery/light{
- dir = 8
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/hangar)
-"TW" = (
-/obj/structure/platform{
+/area/golden_arrow/engineering)
+"jKX" = (
+/obj/structure/surface/table/almayer{
+ layer = 4.11
+ },
+/obj/structure/machinery/photocopier{
+ pixel_y = 16;
+ layer = 4.12
+ },
+/obj/item/reagent_container/food/drinks/coffeecup/uscm{
+ pixel_x = 7;
+ pixel_y = -7;
+ layer = 4.12
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/engineering)
+"jSb" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo"
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/light/small{
+ light_color = "#C02526";
+ color = "#C02526";
dir = 1
},
-/obj/structure/cable{
- icon_state = "2-8"
+/turf/open/floor/almayer,
+/area/golden_arrow/supply)
+"jWK" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning"
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/engineering)
+"jYS" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/vents/pump{
+ dir = 4
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
-/area/golden_arrow/briefing)
-"TY" = (
-/obj/structure/sign/banners/united_americas_flag{
- pixel_x = -16;
- pixel_y = 30
+/turf/open/floor/almayer/edge{
+ dir = 4
},
-/obj/structure/cable{
- icon_state = "4-8"
+/area/golden_arrow/engineering)
+"jZp" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning"
},
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
-/area/golden_arrow/briefing)
-"TZ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/surface/table/almayer,
-/obj/item/storage/fancy/cigarettes/lucky_strikes_4{
- pixel_x = 7;
- pixel_y = 7
- },
-/obj/item/storage/fancy/cigar/matchbook{
- pixel_x = -1;
- pixel_y = 6
+/area/golden_arrow/engineering)
+"kbQ" = (
+/obj/effect/decal/siding{
+ icon_state = "siding2"
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow2";
+ dir = 1
},
-/area/golden_arrow/platoonprep)
-"Ua" = (
-/obj/structure/pipes/vents/pump,
-/obj/structure/machinery/door/poddoor/shutters/almayer{
- id = "weapons_conny";
- name = "\improper Squad Two Weapons Locker";
- pixel_y = -4
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
+/obj/effect/decal/cleanable/blood/oil,
/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/golden_arrow/platoonarmory)
-"Uc" = (
-/obj/structure/bed/chair/comfy{
- buckling_y = 2;
- dir = 8;
- pixel_y = 2
+ dir = 5;
+ icon_state = "plating"
},
+/area/golden_arrow/engineering)
+"kgw" = (
+/obj/structure/pipes/vents/pump,
/turf/open/floor/almayer,
-/area/golden_arrow/cryo_cells)
-"Uf" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/door/poddoor/shutters/almayer{
- dir = 4;
- id = "squadarmory";
- name = "\improper Gear Lockers"
+/area/golden_arrow/motor_pool)
+"kiT" = (
+/obj/structure/machinery/computer/supply_drop_console/limited/alternate{
+ density = 1
},
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ dir = 5;
+ icon_state = "plating"
},
-/area/golden_arrow/platoonprep)
-"Ug" = (
-/obj/structure/machinery/gear{
- id = "supply_elevator_gear"
+/area/golden_arrow/supplydrop)
+"kjn" = (
+/obj/structure/machinery/recharge_station,
+/obj/structure/machinery/light/small{
+ light_color = "#C02526";
+ color = "#C02526";
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
+ icon_state = "cargo"
},
/turf/open/floor/almayer{
- dir = 8;
- icon_state = "blackcorner"
+ dir = 5;
+ icon_state = "plating"
},
-/area/golden_arrow/hangar)
-"Uj" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/landinglight/ds1/delaythree,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/area/golden_arrow/engineering)
+"knD" = (
+/obj/structure/machinery/light/small{
+ light_color = "#C02526";
+ color = "#C02526";
+ dir = 4
},
-/area/golden_arrow/hangar)
-"Uk" = (
-/obj/structure/machinery/door_control/brbutton{
- id = "apc2blastdoor";
- name = "vehicle bay blast door control";
- pixel_y = 28
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/machinery/door_control/brbutton{
- id = "apcbayrailing2";
- name = "vehicle bay railing control";
- pixel_x = 13;
- pixel_y = 28
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/supply)
+"kwe" = (
+/obj/structure/machinery/cm_vending/clothing/synth,
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/hangar)
-"Um" = (
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
+/turf/open/floor/almayer,
+/area/golden_arrow/synthcloset)
+"kDp" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/pipes/standard/simple/hidden/supply{
+/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/obj/structure/machinery/light,
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/platoonarmory)
-"Uo" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
+/turf/open/floor/almayer/edge/smooth{
dir = 8
},
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
+/area/golden_arrow/supply)
+"kGg" = (
+/obj/structure/platform{
+ dir = 4;
+ layer = 2.7
},
-/turf/open/floor/almayer{
+/obj/structure/machinery/telecomms/hub/preset{
+ pixel_x = -6
+ },
+/obj/structure/machinery/light/small/blue{
dir = 8;
- icon_state = "cargo_arrow"
+ light_color = "#dae2ff";
+ light_power = 0.25
},
-/area/golden_arrow/hangar)
-"Up" = (
-/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{
- req_access = list();
- req_one_access_txt = "8;12;39;40"
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
},
-/obj/item/reagent_container/food/drinks/cans/souto/lime{
- pixel_x = 10;
- pixel_y = 21
+/area/golden_arrow/engineering)
+"kKs" = (
+/obj/structure/machinery/light/small{
+ light_color = "#C02526";
+ color = "#C02526";
+ dir = 4
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonprep)
-"Ur" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
},
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
+/area/golden_arrow/motor_pool)
+"kQO" = (
+/turf/closed/wall/almayer/outer,
+/area/golden_arrow/supplydrop)
+"lov" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/hangar)
-"Us" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "cargo_arrow"
+ icon_state = "mono"
},
-/area/golden_arrow/prep_hallway)
-"Ut" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/machinery/door/poddoor/railing{
- dir = 4;
- id = "apcbayrailing2"
+/area/golden_arrow/motor_pool)
+"lve" = (
+/obj/structure/machinery/door_control{
+ id = "lowerstorage1";
+ name = "lowerstorage1";
+ needs_power = 0;
+ pixel_y = 32
},
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "black"
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow";
+ dir = 4
},
-/area/golden_arrow/hangar)
-"Uu" = (
-/obj/structure/machinery/gear{
- id = "supply_elevator_gear"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 6
+/turf/open/floor/almayer/edge{
+ dir = 4
},
+/area/golden_arrow/supply)
+"lAv" = (
/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 1
+ icon_state = "W"
},
/turf/open/floor/almayer{
- icon_state = "blackcorner"
- },
-/area/golden_arrow/hangar)
-"Uw" = (
-/obj/structure/machinery/autolathe,
-/obj/item/stack/sheet/mineral/phoron/small_stack{
- pixel_y = 15
+ icon_state = "plate"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"Ux" = (
-/obj/structure/shuttle/part/dropship1/transparent/middle_right_wing{
- name = "\improper Tripoli"
+/area/golden_arrow/supply)
+"lDt" = (
+/obj/structure/machinery/door_control{
+ id = "motorpoolnorth";
+ name = "motorpoolnorth";
+ needs_power = 0;
+ pixel_x = 32
},
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"Uz" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/landinglight/ds1/delayone{
+/turf/open/space/basic,
+/area/space)
+"lDX" = (
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer/edge/smooth{
dir = 8
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/area/golden_arrow/supply)
+"lEX" = (
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ dir = 2;
+ name = "\improper Hangar Lockdown Blast Door";
+ id = "cargobaylocks"
},
-/area/golden_arrow/hangar)
-"UA" = (
-/obj/structure/cargo_container/wy/left{
- opacity = 0;
- pixel_y = -17
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
},
+/area/golden_arrow/supply)
+"lGH" = (
/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+ icon_state = "cargo_arrow2"
},
-/obj/item/toy/plush/therapy/red{
- desc = "An unapproved bootleg copy of the patented Sergeant Huggs. Looks like he's seen better days.";
- force = 15;
- layer = 4.1;
- name = "Discharged Huggs";
- pixel_x = 5;
- pixel_y = 32;
- throwforce = 15
+/turf/open/floor/almayer,
+/area/golden_arrow/supplydrop)
+"lHE" = (
+/obj/structure/machinery/door/poddoor/almayer{
+ name = "\improper Lower Storage Bay Five Blast Door";
+ dir = 4;
+ id = "lowerstorage5"
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
-/area/golden_arrow/hangar)
-"UB" = (
-/obj/structure/surface/table/almayer,
-/obj/item/storage/toolbox/mechanical/green{
- pixel_y = 6
+/area/golden_arrow/supply)
+"lJP" = (
+/obj/structure/machinery/door/poddoor/almayer{
+ name = "\improper Lower Storage Bay Six Blast Door";
+ dir = 4;
+ id = "lowerstorage6"
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
-/area/golden_arrow/hangar)
-"UF" = (
-/obj/structure/machinery/camera/autoname/golden_arrow{
- dir = 4
+/area/golden_arrow/supply)
+"lJW" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = 32
},
-/turf/open/floor/almayer{
- icon_state = "cargo_arrow"
+/turf/open/floor/almayer,
+/area/golden_arrow/engineering)
+"lLT" = (
+/obj/structure/closet/firecloset/full,
+/turf/open/floor/almayer,
+/area/golden_arrow/engineering)
+"lNj" = (
+/turf/open/space/basic,
+/area/golden_arrow/lower_cargo)
+"lPm" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/hangar)
-"UH" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
},
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+/area/golden_arrow/supply)
+"lPH" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
},
-/obj/structure/machinery/door/poddoor/almayer/open{
- dir = 8
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"UI" = (
-/obj/structure/machinery/power/fusion_engine{
- name = "\improper S-52 fusion reactor 17"
+/area/golden_arrow/supplydrop)
+"lYO" = (
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ name = "\improper Hangar Lockdown Blast Door";
+ id = null
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"UK" = (
-/obj/structure/machinery/camera/autoname/golden_arrow{
- dir = 4
+/area/golden_arrow/motor_pool)
+"mhB" = (
+/obj/structure/sign/safety/five{
+ pixel_y = -24
},
-/turf/open/floor/almayer,
-/area/golden_arrow/prep_hallway)
-"UN" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow";
+ dir = 8
+ },
+/turf/open/floor/almayer/edge{
+ dir = 8
+ },
+/area/golden_arrow/supply)
+"miP" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/cable/heavyduty{
icon_state = "1-2"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/prep_hallway)
-"UQ" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/bedsheetbin{
- pixel_y = 6
- },
/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"US" = (
-/obj/structure/barricade/handrail{
- dir = 4
+/area/golden_arrow/engineering)
+"mla" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning";
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"UU" = (
-/obj/structure/closet/secure_closet/marine_personal{
- job = "Smartgunner";
- pixel_x = -7
+/area/golden_arrow/engineering)
+"mnT" = (
+/obj/effect/decal/siding{
+ icon_state = "siding2"
},
-/obj/structure/closet/secure_closet/marine_personal{
- job = "Squad Sergeant";
- pixel_x = 8
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow2";
+ dir = 1
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 5;
+ icon_state = "plating"
},
-/area/golden_arrow/cryo_cells)
-"UW" = (
-/obj/item/storage/toolbox/mechanical{
- pixel_x = 2;
- pixel_y = -6
+/area/golden_arrow/engineering)
+"moW" = (
+/obj/structure/gun_rack/m41/unloaded,
+/obj/structure/machinery/light/double/blue{
+ dir = 1;
+ light_color = "#dae2ff"
},
/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"UY" = (
+/area/golden_arrow/platoonarmory)
+"mpf" = (
/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 2
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "cargo"
},
-/area/golden_arrow/cryo_cells)
-"UZ" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+/obj/structure/machinery/light/small{
+ light_color = "#C02526";
+ color = "#C02526";
+ dir = 1
},
-/obj/structure/cable{
- icon_state = "4-8"
+/turf/open/floor/almayer,
+/area/golden_arrow/supply)
+"mpM" = (
+/obj/effect/decal/siding{
+ icon_state = "siding2"
},
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- layer = 1.9
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow2";
+ dir = 1
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ dir = 5;
+ icon_state = "plating"
},
-/area/golden_arrow/dorms)
-"Va" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/almayer{
- icon_state = "cargo"
+/area/golden_arrow/engineering)
+"mvk" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/cryo_cells)
-"Vd" = (
-/obj/structure/platform{
- dir = 8;
- layer = 2.7
+/turf/open/floor/almayer/edge/smooth,
+/area/golden_arrow/motor_pool)
+"mGo" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
+/obj/structure/cable/heavyduty{
+ icon_state = "2-4"
},
-/area/golden_arrow/hangar)
-"Ve" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
},
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/engineering)
+"mHq" = (
/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+ icon_state = "NE-out";
+ pixel_y = 1;
+ pixel_x = 1
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"Vh" = (
-/obj/structure/machinery/light{
- dir = 4
+/obj/structure/machinery/gear{
+ id = "supply_elevator_gear"
},
-/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/engineering)
+"mHX" = (
/obj/structure/cable/heavyduty{
icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/platoonprep)
-"Vi" = (
-/obj/structure/foamed_metal,
-/turf/open/floor/plating,
-/area/golden_arrow/cryo_cells)
-"Vj" = (
-/obj/item/device/flashlight/lamp/tripod/grey,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/hangar)
-"Vn" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{
- layer = 3.1;
- name = "Midway Remote Control Console";
- pixel_y = 6;
- shuttleId = "dropship_midway"
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/light/small/blue{
+ dir = 8;
+ light_color = "#dae2ff";
+ light_power = 0.25
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"Vo" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_x = 1;
- pixel_y = 1
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/engineering)
+"mJI" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/golden_arrow/engineering)
+"mKT" = (
/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- pixel_y = 1
+ icon_state = "cargo"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/vents/pump,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/hangar)
-"Vs" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/barricade/handrail{
- dir = 8
+/turf/open/floor/almayer,
+/area/golden_arrow/supply)
+"ngb" = (
+/obj/structure/machinery/recharge_station,
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/item/tool/hand_labeler{
- pixel_x = 1;
- pixel_y = 13
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo"
},
-/obj/item/device/flashlight/flare{
- pixel_x = 19;
- pixel_y = -1
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/machinery/door_control/brbutton{
- id = "squadarmory";
- name = "gear locker shutter control";
- pixel_y = 28;
- req_one_access_txt = "19;12"
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonprep)
-"Vu" = (
-/obj/structure/surface/table/almayer,
-/obj/item/storage/bible{
- desc = "As the legendary US Army chaplain once said, 'There are no Athiests in fancy offices'.";
- name = "Holy Bible";
- pixel_x = -5;
- pixel_y = 4
+/area/golden_arrow/engineering)
+"nja" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "lowerblastdoor"
},
-/obj/item/device/flashlight/lamp/on{
- pixel_x = 5;
- pixel_y = 14
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
},
-/obj/item/ashtray/plastic{
- icon_state = "ashtray_full_bl";
- pixel_x = 9;
- pixel_y = 2
+/area/golden_arrow/engineering)
+"nrp" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-8"
},
-/obj/item/trash/cigbutt{
- pixel_x = 1;
- pixel_y = 10;
- randpixel = 0
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer,
-/area/golden_arrow/shared_office)
-"Vv" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/reagent_container/glass/bucket/janibucket{
- pixel_x = -7;
- pixel_y = 15
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
},
/turf/open/floor/almayer,
/area/golden_arrow/engineering)
-"Vw" = (
-/obj/structure/shuttle/part/dropship1/transparent/nose_top_right{
- name = "\improper Tripoli"
+"nuK" = (
+/obj/structure/machinery/door/airlock/almayer/secure{
+ dir = 1;
+ name = "\improper Human AI Interface Access"
},
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"Vy" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
+/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/engineering)
+"nxj" = (
+/obj/structure/pipes/vents/pump{
dir = 8;
- icon_state = "cargo_arrow"
+ pixel_x = -16
},
-/area/golden_arrow/hangar)
-"Vz" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/landinglight/ds1{
- dir = 1
+/obj/structure/machinery/light/small/blue{
+ dir = 4;
+ light_color = "#dae2ff";
+ light_power = 0.25
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
},
-/area/golden_arrow/hangar)
-"VB" = (
-/turf/closed/shuttle/elevator/freight,
/area/golden_arrow/supply)
-"VD" = (
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/hangar)
-"VE" = (
-/obj/structure/machinery/floodlight/landing/floor,
-/obj/structure/machinery/landinglight/ds1,
-/turf/open/floor/almayer{
- icon_state = "plate"
+"nAo" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow";
+ dir = 4
},
-/area/golden_arrow/hangar)
-"VH" = (
-/obj/structure/closet/secure_closet/smartgunner{
- name = "squad two smartgunner locker";
- req_access_txt = "14;40";
- req_one_access = list()
+/turf/open/floor/almayer/edge{
+ dir = 4
},
+/area/golden_arrow/supply)
+"nBF" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/supplydrop)
+"nBM" = (
+/obj/structure/prop/almayer/computers/sensor_computer1,
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 5;
+ icon_state = "plating"
},
-/area/golden_arrow/platoonprep)
-"VK" = (
-/obj/structure/pipes/vents/pump{
- dir = 4
+/area/golden_arrow/supplydrop)
+"nEn" = (
+/obj/structure/machinery/disposal{
+ density = 0;
+ layer = 3.2;
+ pixel_y = 16
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer/edge/smooth{
+ dir = 1
+ },
+/area/golden_arrow/supply)
+"nEI" = (
+/obj/structure/platform{
+ dir = 8
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonprep)
-"VM" = (
-/obj/structure/cable/heavyduty{
- icon_state = "1-2"
+/obj/structure/machinery/telecomms/hub/preset{
+ pixel_x = 6
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"VN" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
+/obj/structure/machinery/light/small/blue{
+ dir = 4;
+ light_color = "#dae2ff";
+ light_power = 0.25
},
-/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+ dir = 5;
+ icon_state = "plating"
},
-/area/golden_arrow/cryo_cells)
-"VS" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+/area/golden_arrow/engineering)
+"nIL" = (
+/obj/structure/machinery/door/poddoor/almayer{
+ name = "\improper Lower Storage Bay One Blast Door";
+ dir = 4;
+ id = "lowerstorage1"
},
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
- dir = 8;
- icon_state = "cargo_arrow"
+ icon_state = "test_floor4"
},
-/area/golden_arrow/hangar)
-"VV" = (
-/obj/structure/sign/safety/storage{
- pixel_x = 9;
- pixel_y = 29
+/area/golden_arrow/supply)
+"nUJ" = (
+/obj/structure/machinery/door/poddoor/almayer{
+ name = "\improper Lower Storage Bay Three Blast Door";
+ dir = 4;
+ id = "lowerstorage3"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"VZ" = (
-/obj/structure/window/framed/almayer,
-/turf/open/floor/plating,
-/area/golden_arrow/platoonprep)
-"Wa" = (
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"Wd" = (
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "cargo_arrow"
+ icon_state = "test_floor4"
},
/area/golden_arrow/supply)
-"We" = (
-/obj/structure/bed{
- can_buckle = 0
+"odN" = (
+/obj/structure/machinery/door_control{
+ id = "cargolocksnorth";
+ name = "cargolocksnorth";
+ needs_power = 0;
+ pixel_x = 32
},
-/obj/structure/bed{
- buckling_y = 13;
- layer = 3.5;
- pixel_y = 13
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow";
+ color = "#E10600";
+ dir = 4
},
-/obj/item/bedsheet/brown{
- layer = 3.4
+/turf/open/space/basic,
+/area/space)
+"olN" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow";
+ dir = 8
},
-/obj/item/bedsheet/brown{
- pixel_y = 13
+/obj/vehicle/powerloader{
+ dir = 4
},
-/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"Wf" = (
-/obj/structure/machinery/camera/autoname/golden_arrow{
+/obj/structure/sign/safety/bulkhead_door{
+ pixel_y = 27
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_x = 14;
+ pixel_y = 27
+ },
+/turf/open/floor/almayer/edge{
dir = 8
},
+/area/golden_arrow/supply)
+"onj" = (
+/turf/open/floor/almayer/aicore/glowing,
+/area/golden_arrow/ai_interface)
+"opj" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
/turf/open/floor/almayer,
-/area/golden_arrow/platoonprep)
-"Wg" = (
+/area/golden_arrow/motor_pool)
+"otJ" = (
/obj/effect/decal/warning_stripes{
- icon_state = "W";
- pixel_x = -1;
- pixel_y = 1
+ icon_state = "cargo_arrow";
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/cryo_cells)
-"Wh" = (
-/turf/closed/wall/almayer/outer,
-/area/golden_arrow/cryo_cells)
-"Wk" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+/turf/open/floor/almayer/edge{
+ dir = 4
},
-/obj/structure/cable{
- icon_state = "4-8"
+/area/golden_arrow/supply)
+"oxf" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
-/turf/open/floor/almayer{
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/engineering)
+"oye" = (
+/obj/structure/machinery/light/small/blue{
dir = 4;
- icon_state = "cargo_arrow"
+ light_color = "#dae2ff";
+ light_power = 0.25
},
-/area/golden_arrow/platoonprep)
-"Wm" = (
-/obj/structure/machinery/landinglight/ds1/delaythree{
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
+ },
+/area/golden_arrow/supply)
+"ozf" = (
+/obj/structure/machinery/light/small{
+ light_color = "#C02526";
+ color = "#C02526";
dir = 8
},
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/supply)
+"oRK" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/hangar)
-"Wn" = (
-/obj/structure/pipes/vents/pump,
-/obj/structure/machinery/light{
- dir = 1
+/area/golden_arrow/supply)
+"oTo" = (
+/obj/structure/supply_drop/echo{
+ mouse_opacity = 0
},
/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"Wp" = (
+/area/golden_arrow/supplydrop)
+"oZQ" = (
/obj/effect/decal/warning_stripes{
- icon_state = "S"
+ icon_state = "door_warning";
+ dir = 1
},
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"Wq" = (
-/obj/structure/surface/table/almayer,
-/obj/item/reagent_container/food/condiment/peppermill{
- pixel_x = 1;
- pixel_y = 12
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/item/prop{
- desc = "An issue of The Marine Corps Gazette, the official newspaper of the United States Colonial Marines.";
- icon = 'icons/obj/items/paper.dmi';
- icon_state = "newspaper";
- name = "The Marine Corps Gazette";
- pixel_x = -1;
- pixel_y = -2
+/turf/open/floor/almayer{
+ icon_state = "mono"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/cryo_cells)
-"Wr" = (
-/obj/structure/barricade/handrail{
- dir = 4
+/area/golden_arrow/motor_pool)
+"pas" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"Ws" = (
-/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+ dir = 10
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "2-8"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"Wt" = (
-/obj/structure/barricade/handrail,
-/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
/area/golden_arrow/engineering)
-"Wu" = (
-/obj/structure/sign/safety/bulkhead_door{
- pixel_y = 38
- },
-/obj/structure/sign/safety/hazard{
- pixel_x = 14;
- pixel_y = 38
- },
-/obj/structure/sign/safety/ammunition{
- pixel_y = 26
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "cargo_arrow"
- },
-/area/golden_arrow/hangar)
-"Wv" = (
-/obj/structure/surface/table/almayer,
-/obj/item/reagent_container/food/drinks/coffeecup{
- pixel_x = -8
- },
-/obj/item/reagent_container/food/drinks/h_chocolate{
- pixel_y = 7
+"pce" = (
+/obj/structure/machinery/light/small/blue{
+ light_color = "#dae2ff";
+ light_power = 0.25
},
-/obj/item/clothing/glasses/disco_fever{
- pixel_x = 7;
- pixel_y = 1
+/turf/open/floor/almayer/edge{
+ dir = 4
},
-/turf/open/floor/almayer,
/area/golden_arrow/engineering)
-"Ww" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out";
- pixel_x = -1
+"pcD" = (
+/obj/structure/machinery/door/poddoor/almayer{
+ name = "\improper Lower Storage Bay Two Blast Door";
+ dir = 4;
+ id = "lowerstorage2"
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/cryo_cells)
-"Wx" = (
-/obj/structure/bed/chair{
- dir = 4
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"Wz" = (
+/area/golden_arrow/supply)
+"pFO" = (
/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+ icon_state = "SW-out"
},
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/cable/heavyduty{
- icon_state = "1-2"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer{
- icon_state = "cargo_arrow"
+ icon_state = "plate"
},
-/area/golden_arrow/hangar)
-"WA" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 1
+/area/golden_arrow/supply)
+"pGL" = (
+/obj/structure/ladder{
+ id = "engisouth";
+ height = -1
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/heavyduty{
- icon_state = "2-4"
+/turf/open/floor/almayer{
+ icon_state = "mono"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"WB" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/bed{
- can_buckle = 0;
- desc = "A lightweight support lattice.";
- icon = 'icons/obj/structures/structures.dmi';
- icon_state = "latticefull";
- layer = 2.1;
- name = "lattice"
+/area/golden_arrow/engineering)
+"pIe" = (
+/obj/structure/pipes/vents/pump{
+ dir = 8;
+ pixel_x = -16
},
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"WC" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+/turf/open/floor/almayer/edge/smooth{
+ dir = 4
},
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
+/area/golden_arrow/supply)
+"pLu" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/disposalpipe/junction{
- dir = 8
+/obj/structure/closet/secure_closet/surgical{
+ pixel_x = 30
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/prep_hallway)
-"WD" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/golden_arrow/synthcloset)
+"pPo" = (
+/obj/structure/barricade/handrail,
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
},
-/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/heavyduty{
- icon_state = "1-4"
+ icon_state = "1-2"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"WF" = (
-/turf/closed/shuttle/midway{
- icon_state = "62";
- name = "\improper Tripoli"
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/engineering)
+"pPt" = (
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 2
},
-/area/golden_arrow/hangar)
-"WG" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/light{
- dir = 1
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/hangar)
-"WK" = (
+/area/golden_arrow/engineering)
+"pRt" = (
/obj/effect/decal/warning_stripes{
- icon_state = "S"
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
+ icon_state = "cargo_arrow";
dir = 8
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/turf/open/floor/almayer/edge{
+ dir = 8
},
-/area/golden_arrow/cryo_cells)
-"WL" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 9
+/area/golden_arrow/supply)
+"pRD" = (
+/obj/structure/machinery/door_control{
+ id = "lowerstorage4";
+ name = "lowerstorage4";
+ needs_power = 0;
+ pixel_y = 32
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"WO" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"WR" = (
-/obj/structure/toilet{
- dir = 1
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow";
+ dir = 8
},
-/obj/structure/barricade/metal{
- dir = 8;
- pixel_x = -1
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/barricade/metal{
- dir = 4;
- pixel_x = 1
+/turf/open/floor/almayer/edge{
+ dir = 8
},
-/obj/structure/barricade/metal{
- dir = 8;
- pixel_x = -1;
- pixel_y = 8
+/area/golden_arrow/supply)
+"pSQ" = (
+/obj/structure/machinery/light/double/blue{
+ dir = 1;
+ light_color = "#dae2ff"
},
-/obj/structure/barricade/metal{
- dir = 4;
- pixel_x = 1;
- pixel_y = 8
+/obj/structure/surface/table/almayer,
+/obj/item/storage/briefcase/inflatable{
+ pixel_y = 10
},
-/obj/structure/curtain/red,
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/cryo_cells)
-"WT" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W";
- layer = 3.3;
- pixel_x = -1
+/obj/item/storage/briefcase/inflatable{
+ pixel_y = 5;
+ pixel_x = 3
},
/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"WU" = (
+/area/golden_arrow/engineering)
+"pWS" = (
/obj/effect/decal/warning_stripes{
- icon_state = "E";
+ icon_state = "SE-out";
pixel_x = 1
},
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/hangar)
-"WY" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_x = 1;
- pixel_y = 1
+/area/golden_arrow/supply)
+"pXl" = (
+/obj/structure/machinery/door_control{
+ pixel_y = 32;
+ id = "synthbay";
+ name = "synthetic storage door-control";
+ req_access = list(36)
},
-/obj/structure/machinery/gear{
- id = "supply_elevator_gear"
+/obj/item/prop/colony/canister{
+ pixel_y = 19;
+ pixel_x = 3
},
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 8
+/obj/item/tool/mop{
+ pixel_x = -10;
+ pixel_y = 20
},
+/obj/effect/decal/cleanable/blood/oil,
+/obj/effect/decal/cleanable/liquid_fuel,
/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"Xb" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/cable/heavyduty{
- icon_state = "1-2"
+/area/golden_arrow/engineering)
+"pZs" = (
+/obj/structure/sign/safety/four{
+ pixel_y = -24;
+ pixel_x = 11
},
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonprep)
-"Xd" = (
/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+ icon_state = "cargo_arrow";
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"Xe" = (
-/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/hangar)
-"Xh" = (
-/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{
- name = "\improper Emergency Infirmary";
- req_one_access = null
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
+/turf/open/floor/almayer/edge{
+ dir = 4
+ },
+/area/golden_arrow/supply)
+"qcH" = (
+/obj/structure/machinery/door/poddoor/railing,
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/camera/autoname/golden_arrow{
+ dir = 1
},
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "plate"
},
-/area/golden_arrow/medical)
-"Xi" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 9
+/area/golden_arrow/engineering)
+"qds" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo"
+ },
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
},
/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"Xj" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
+/area/golden_arrow/supply)
+"qiX" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable/heavyduty{
icon_state = "1-2"
},
+/obj/structure/cable/heavyduty{
+ icon_state = "node";
+ layer = 2.38
+ },
/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/platoonprep)
-"Xm" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "mono"
+/area/golden_arrow/engineering)
+"qjn" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/cryo_cells)
-"Xn" = (
-/obj/structure/sign/safety/bulkhead_door{
- pixel_y = 27
+/turf/open/floor/almayer,
+/area/golden_arrow/synthcloset)
+"qmu" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/sign/safety/hazard{
- pixel_x = 14;
- pixel_y = 27
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
- dir = 8;
icon_state = "cargo_arrow"
},
-/area/golden_arrow/hangar)
-"Xo" = (
-/obj/structure/machinery/firealarm{
- dir = 4;
- pixel_x = 21
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/golden_arrow/cryo_cells)
-"Xp" = (
-/obj/item/reagent_container/food/drinks/milk{
- pixel_y = 10
+/area/golden_arrow/supply)
+"qwH" = (
+/obj/structure/sign/safety/three{
+ pixel_y = -24
},
-/obj/item/reagent_container/food/drinks/milk{
- pixel_x = 6;
- pixel_y = 8
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow";
+ dir = 8
},
-/obj/item/reagent_container/food/drinks/milk{
- pixel_x = 5
+/turf/open/floor/almayer/edge{
+ dir = 8
},
-/obj/item/reagent_container/food/drinks/milk,
-/obj/structure/closet/secure_closet{
- icon_broken = "fridgebroken";
- icon_closed = "fridge";
- icon_locked = "fridge1";
- icon_off = "fridge1";
- icon_opened = "fridgeopen";
- icon_state = "fridge1";
- name = "beverage fridge"
+/area/golden_arrow/supply)
+"qEe" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/area/golden_arrow/cryo_cells)
-"Xu" = (
-/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+ dir = 5
},
-/obj/structure/cable{
- icon_state = "4-8"
+/obj/structure/cable/heavyduty{
+ icon_state = "1-4"
},
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/engineering)
+"qGj" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/cryo_cells)
-"Xv" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W";
- layer = 3.3;
- pixel_x = -1
+/area/golden_arrow/engineering)
+"qRO" = (
+/obj/structure/machinery/light/double/blue{
+ light_color = "#dae2ff"
},
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"Xw" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out";
- pixel_x = -1
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- layer = 2.5;
- pixel_x = -1;
- pixel_y = 1
+/area/golden_arrow/engineering)
+"qVj" = (
+/obj/structure/machinery/camera/autoname/golden_arrow{
+ dir = 1
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"Xx" = (
-/obj/structure/bed/chair/office/dark{
- dir = 4
+/obj/structure/cable/heavyduty{
+ icon_state = "1-8"
},
-/obj/structure/cable{
- icon_state = "2-8"
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoon_commander_rooms)
-"Xy" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
-"Xz" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/golden_arrow/briefing)
-"XC" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/engineering)
+"rdX" = (
/obj/effect/decal/warning_stripes{
- icon_state = "W"
+ icon_state = "cargo"
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/prop/dam/crane,
-/obj/structure/prop{
- density = 1;
- desc = "A cooling system for the Tripoli. It produces additional cooling reducing delays between launch. The pipes are crooked and bent, hoses are sliced open, and that's not even mentioning the bullet holes. Looks to be an older model as well.";
- icon = 'icons/obj/structures/props/almayer_props64.dmi';
- icon_state = "cooling_system";
- layer = 3.1;
- name = "Damaged FS/ACS-9 cooling system";
- pixel_y = 16
+/obj/structure/machinery/light/small{
+ light_color = "#C02526";
+ color = "#C02526"
},
/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"XD" = (
+/area/golden_arrow/supply)
+"rmN" = (
/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
+ icon_state = "E";
+ pixel_x = 1
},
-/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- layer = 2.5;
- pixel_y = 1
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/hangar)
-"XE" = (
-/obj/structure/machinery/light{
- dir = 8
+/area/golden_arrow/supply)
+"rnt" = (
+/obj/structure/pipes/vents/pump,
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
-/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/golden_arrow/motor_pool)
+"rqE" = (
/obj/structure/cable/heavyduty{
icon_state = "1-2"
},
+/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/platoonprep)
-"XF" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
+/area/golden_arrow/engineering)
+"rzk" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "door_warning";
dir = 8
},
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- layer = 1.9
+/obj/structure/machinery/door_control/brbutton{
+ pixel_y = 27;
+ id = "lowerblastdoor"
},
-/obj/structure/machinery/door/poddoor/almayer/open{
- closed_layer = 3.3;
- dir = 4;
- layer = 3.3;
- name = "Maintenance Bay Blast Door";
- open_layer = 3.3
+/turf/open/floor/almayer/edge{
+ dir = 8
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"XI" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+/area/golden_arrow/engineering)
+"rBy" = (
+/obj/structure/sign/safety/one{
+ pixel_y = -24
},
-/obj/structure/closet/fireaxecabinet{
- pixel_y = 30
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow";
+ dir = 8
},
-/obj/structure/surface/table/almayer,
-/obj/item/prop/almayer/comp_closed{
- pixel_y = 10
+/turf/open/floor/almayer/edge{
+ dir = 8
},
-/turf/open/floor/almayer,
-/area/golden_arrow/synthcloset)
-"XK" = (
-/turf/closed/shuttle/midway/transparent{
- icon_state = "26";
- name = "\improper Tripoli"
+/area/golden_arrow/supply)
+"rMy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8
},
-/area/golden_arrow/hangar)
-"XM" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 1
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
/obj/structure/cable/heavyduty{
icon_state = "4-8"
},
-/obj/structure/cable/heavyduty{
- icon_state = "0-2"
- },
-/obj/structure/cable{
- layer = 2.36
- },
/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/platoonprep)
-"XN" = (
-/obj/structure/machinery/cm_vending/clothing/medic,
-/obj/structure/machinery/door/poddoor/shutters/almayer{
- id = "squadarmory";
- name = "\improper Gear Lockers"
+/area/golden_arrow/engineering)
+"rOB" = (
+/obj/structure/machinery/light/small/blue{
+ dir = 1;
+ light_color = "#dae2ff";
+ light_power = 0.25
},
-/turf/closed/wall/almayer,
-/area/golden_arrow/medical)
-"XO" = (
+/turf/open/floor/almayer/edge{
+ dir = 4
+ },
+/area/golden_arrow/engineering)
+"rQj" = (
/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- pixel_y = 1
+ icon_state = "cargo_arrow"
+ },
+/turf/open/floor/almayer/edge,
+/area/golden_arrow/motor_pool)
+"rRA" = (
+/turf/closed/wall/almayer/aicore/hull,
+/area/golden_arrow/ai_interface)
+"rTJ" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/supply)
+"rWx" = (
+/obj/structure/machinery/light/small{
+ light_color = "#C02526";
+ color = "#C02526";
+ dir = 4
},
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/supply)
+"rYI" = (
/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_x = 1;
- pixel_y = 1
+ icon_state = "S"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/vents/pump,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/hangar)
-"XQ" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out";
- pixel_x = -1
+/area/golden_arrow/supply)
+"rZR" = (
+/obj/structure/gun_rack/mk221{
+ pixel_x = -11
+ },
+/obj/structure/gun_rack/flamer/unloaded{
+ pixel_x = 7
+ },
+/turf/open/floor/almayer,
+/area/golden_arrow/platoonarmory)
+"sgG" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/bare_catwalk,
+/area/golden_arrow/engineering)
+"sgR" = (
/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- layer = 2.5;
- pixel_x = -1;
+ icon_state = "NE-out";
+ pixel_x = 1;
pixel_y = 1
},
/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+ icon_state = "plate"
},
-/area/golden_arrow/medical)
-"XR" = (
+/area/golden_arrow/supply)
+"shd" = (
/obj/effect/decal/warning_stripes{
- icon_state = "SW-out";
- pixel_x = -1
+ icon_state = "SE-out";
+ pixel_x = 1
},
/turf/open/floor/almayer{
- icon_state = "dark_sterile"
- },
-/area/golden_arrow/medical)
-"XS" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/cable/heavyduty{
- icon_state = "1-2"
+ icon_state = "plate"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"XT" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/largecrate/random/case/double,
-/obj/item/storage/box/cups{
- pixel_x = -1;
- pixel_y = 16
+/area/golden_arrow/supply)
+"soC" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
},
/turf/open/floor/almayer{
- icon_state = "cargo"
- },
-/area/golden_arrow/hangar)
-"XU" = (
-/obj/structure/curtain/red,
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
+ icon_state = "plate"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoon_commander_rooms)
-"XZ" = (
-/obj/structure/machinery/light{
- dir = 8
+/area/golden_arrow/supply)
+"srv" = (
+/turf/open/floor/almayer/empty/golden_arrow/vehicle_one,
+/area/golden_arrow/vehicle_shuttle/upper)
+"srO" = (
+/obj/structure/sign/safety/bulkhead_door{
+ pixel_y = 27
},
-/obj/structure/largecrate/random/case,
-/turf/open/shuttle/dropship{
- icon_state = "rasputin3"
+/obj/structure/sign/safety/hazard{
+ pixel_x = 14;
+ pixel_y = 27
},
-/area/golden_arrow/hangar)
-"Ya" = (
-/obj/structure/prop{
- can_buckle = 1;
- desc = "A rather cozy case you can sit on. The label says it's full of pillows - though it's probably empty.";
- icon = 'icons/obj/structures/crates.dmi';
- icon_state = "case";
- name = "\improper cozy case";
- pixel_y = 6
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo_arrow";
+ dir = 4
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"Yc" = (
-/obj/structure/closet/secure_closet,
-/obj/structure/machinery/prop{
- desc = "This stylized recruitment poster for the USCM depicts a the head of a screaming eagle breaking into orbit, surrounded by flames. Death from above.";
- icon = 'icons/obj/structures/props/posters.dmi';
- icon_state = "poster41";
- layer = 3.5;
- name = "USCM recruitment poster";
- pixel_x = -1;
- pixel_y = 34
+/turf/open/floor/almayer/edge{
+ dir = 4
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoon_commander_rooms)
-"Ye" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+/area/golden_arrow/supply)
+"sse" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
},
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
+/turf/open/floor/almayer/aicore/glowing,
+/area/golden_arrow/ai_interface)
+"svL" = (
+/obj/structure/machinery/door/poddoor/almayer{
+ name = "\improper Lower Storage Bay Four Blast Door";
+ dir = 4;
+ id = "lowerstorage4"
},
/turf/open/floor/almayer{
- dir = 8;
- icon_state = "cargo_arrow"
+ icon_state = "test_floor4"
},
-/area/golden_arrow/platoonarmory)
-"Yf" = (
-/obj/structure/pipes/vents/pump{
+/area/golden_arrow/supply)
+"sCG" = (
+/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"Yg" = (
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
- },
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 1
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/platoonarmory)
-"Yi" = (
-/obj/structure/machinery/alarm/almayer{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/vents/pump,
-/turf/open/floor/almayer,
-/area/golden_arrow/platoon_commander_rooms)
-"Yj" = (
-/obj/structure/platform{
- dir = 8;
- layer = 2.7
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/stairs/perspective,
/turf/open/floor/almayer,
-/area/golden_arrow/briefing)
-"Yk" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/cable/heavyduty{
- icon_state = "1-2"
+/area/golden_arrow/engineering)
+"sMB" = (
+/obj/structure/ladder{
+ id = "enginorth";
+ height = -1;
+ pixel_y = 16
},
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "cargo_arrow"
+ icon_state = "mono"
},
-/area/golden_arrow/prep_hallway)
-"Yn" = (
+/area/golden_arrow/engineering)
+"sTP" = (
/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply{
+ icon_state = "door_warning";
dir = 8
},
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/golden_arrow/cryo_cells)
-"Yo" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "cargo_arrow"
+/turf/open/floor/almayer/edge{
+ dir = 8
},
/area/golden_arrow/engineering)
-"Yr" = (
-/turf/open/floor/almayer,
-/area/golden_arrow/platoonprep)
-"Ys" = (
-/obj/structure/machinery/door/poddoor/railing{
- dir = 4
+"tjT" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/engineering)
-"Yt" = (
-/obj/structure/largecrate/supply/generator,
-/turf/open/floor/almayer{
- icon_state = "cargo"
+/area/golden_arrow/supply)
+"tkm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/golden_arrow/hangar)
-"Yu" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer,
-/area/golden_arrow/prep_hallway)
-"Yv" = (
-/turf/closed/wall/almayer/outer,
-/area/golden_arrow/synthcloset)
-"Yw" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/engineering)
+"two" = (
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/light/small/blue{
+ dir = 4;
+ light_color = "#dae2ff";
+ light_power = 0.5
+ },
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/cryo_cells)
-"Yx" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/light{
- dir = 4
+/area/golden_arrow/engineering)
+"txJ" = (
+/obj/structure/machinery/door/poddoor/almayer{
+ name = "\improper Lower Storage Bay Six Blast Door";
+ dir = 4;
+ id = "lowerstorage6"
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
-/area/golden_arrow/hangar)
-"YA" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
+/area/golden_arrow/supply)
+"tBe" = (
+/obj/structure/platform{
+ dir = 4;
+ layer = 2.7
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"YD" = (
-/obj/structure/machinery/cm_vending/sorted/medical/blood{
- density = 0;
- pixel_y = 24;
- req_access = list()
+/obj/structure/machinery/telecomms/hub/preset{
+ pixel_x = -6
},
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
- icon_state = "test_floor5"
+ dir = 5;
+ icon_state = "plating"
},
-/area/golden_arrow/medical)
-"YF" = (
-/obj/structure/surface/table/reinforced/almayer_B,
-/obj/structure/phone_base{
- name = "overwatch receiver";
- phone_id = "Overwatch";
- pixel_x = 9;
- pixel_y = 30
+/area/golden_arrow/engineering)
+"tDA" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo"
},
-/obj/structure/machinery/computer/ares_console{
- dir = 4;
- pixel_x = 2;
- pixel_y = 6
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/item/tool/pen{
- pixel_x = -5;
- pixel_y = -11
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
},
/turf/open/floor/almayer,
-/area/golden_arrow/platoon_commander_rooms)
-"YH" = (
-/obj/structure/machinery/shower{
- dir = 8
- },
-/obj/structure/barricade/handrail{
- layer = 3.1;
- pixel_y = -1
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/cryo_cells)
-"YJ" = (
-/turf/closed/shuttle/midway{
- icon_state = "104";
- name = "\improper Tripoli"
+/area/golden_arrow/supply)
+"tDZ" = (
+/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{
+ req_one_access = list()
},
-/area/golden_arrow/hangar)
-"YK" = (
-/obj/structure/window/framed/almayer,
-/turf/open/floor/plating,
-/area/golden_arrow/shared_office)
-"YL" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/stool{
- pixel_x = 1;
- pixel_y = 20
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer,
-/area/golden_arrow/platoonprep)
-"YM" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/machinery/door/poddoor/railing{
- dir = 4;
- id = "apcbayrailing2"
+/area/golden_arrow/engineering)
+"tEH" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "black"
+/obj/structure/machinery/light/double/blue,
+/turf/open/floor/almayer,
+/area/golden_arrow/synthcloset)
+"tTk" = (
+/obj/structure/machinery/computer/ares_console{
+ pixel_y = 16;
+ layer = 4.12
},
-/area/golden_arrow/hangar)
-"YP" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W";
- layer = 3.3
+/obj/structure/surface/table/reinforced/aicore{
+ layer = 4.11;
+ pixel_y = 8;
+ density = 0
},
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"YS" = (
+/obj/structure/bed/chair/comfy/ares{
+ dir = 1;
+ layer = 4.13
+ },
+/turf/open/floor/plating/plating_catwalk/aicore,
+/area/golden_arrow/ai_interface)
+"uel" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/heavyduty{
icon_state = "4-8"
},
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/cryo_cells)
-"YT" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- layer = 2.5;
- pixel_y = 1
+/area/golden_arrow/engineering)
+"uls" = (
+/obj/structure/machinery/light/double/blue{
+ dir = 4;
+ light_color = "#dae2ff"
},
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_x = 1;
- pixel_y = 1
+/turf/open/floor/almayer,
+/area/golden_arrow/motor_pool)
+"umm" = (
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ dir = 2;
+ name = "\improper Hangar Lockdown Blast Door";
+ id = "cargobaylocks"
},
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 9
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"YU" = (
-/obj/effect/decal/cleanable/dirt,
+/area/golden_arrow/supply)
+"uoJ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 8
},
/obj/structure/cable/heavyduty{
icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/almayer,
-/area/golden_arrow/prep_hallway)
-"YV" = (
-/obj/structure/machinery/door/airlock/almayer/medical{
- dir = 8;
- name = "\improper Chemistry Subsection";
- req_one_access = list();
- req_one_access_txt = "8;12"
+/turf/open/floor/almayer/edge{
+ dir = 10
},
+/area/golden_arrow/platoonarmory)
+"uEm" = (
/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 1
+ icon_state = "N";
+ pixel_y = 1
},
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/cable{
- icon_state = "4-8"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+ icon_state = "plate"
},
-/area/golden_arrow/medical)
-"YW" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/vents/pump{
- dir = 1
+/area/golden_arrow/supply)
+"uPX" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer,
-/area/golden_arrow/prep_hallway)
-"YY" = (
-/turf/closed/wall/almayer,
-/area/golden_arrow/briefing)
-"YZ" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/golden_arrow/shared_office)
-"Zc" = (
-/obj/structure/bed/bedroll{
- layer = 3.1;
- pixel_x = 3;
- pixel_y = -8
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
},
-/obj/item/clothing/head/cmcap{
- layer = 4.2;
- pixel_x = 4;
- pixel_y = 6
+/area/golden_arrow/supply)
+"uVo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/turf/closed/wall/almayer/outer,
-/area/golden_arrow/hangar)
-"Zd" = (
+/turf/open/floor/almayer,
+/area/golden_arrow/engineering)
+"vfK" = (
/obj/structure/surface/table/almayer,
-/obj/item/prop/almayer/chaff_launcher{
- pixel_x = 3;
- pixel_y = 9
+/obj/structure/machinery/reagentgrinder/industrial{
+ pixel_y = 8
},
-/obj/item/prop/almayer/flare_launcher{
- pixel_x = 5;
- pixel_y = 19
+/obj/item/reagent_container/food/drinks/coffee/marine{
+ pixel_y = 2;
+ pixel_x = 5
},
-/obj/item/prop/almayer/handheld1{
- pixel_x = 6;
- pixel_y = -8
+/obj/structure/machinery/light/small/blue{
+ dir = 4;
+ light_color = "#dae2ff";
+ light_power = 0.5
},
-/turf/open/floor/plating/plating_catwalk,
+/turf/open/floor/almayer,
/area/golden_arrow/engineering)
-"Ze" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 1
+"vve" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/cable{
- icon_state = "4-8"
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/cryo_cells)
-"Zg" = (
+/area/golden_arrow/supply)
+"vCJ" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
pixel_y = 1
},
-/obj/structure/cable{
- icon_state = "1-8"
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/supply)
+"vDs" = (
+/obj/structure/machinery/camera/autoname/golden_arrow{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/engineering)
+"vFy" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/item/stool{
+ pixel_y = 12;
+ pixel_x = -1
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
+ },
+/obj/structure/machinery/light/small/blue{
+ dir = 4;
+ light_color = "#dae2ff";
+ light_power = 0.5
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/golden_arrow/supplydrop)
+"vRh" = (
+/obj/structure/ship_ammo/heavygun{
+ pixel_y = 8
+ },
+/obj/structure/ship_ammo/heavygun{
+ layer = 3.01
},
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer{
- dir = 1;
+ dir = 10;
+ icon_state = "cargo"
+ },
+/area/golden_arrow/hangar)
+"vYW" = (
+/turf/open/floor/almayer{
icon_state = "cargo_arrow"
},
-/area/golden_arrow/platoonprep)
-"Zh" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 8
+/area/golden_arrow/supply)
+"vZm" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
},
-/obj/structure/prop/invuln/lattice_prop{
- icon_state = "lattice3";
- pixel_x = 16;
- pixel_y = -15
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/obj/structure/cable{
- icon_state = "4-8"
+/area/golden_arrow/engineering)
+"wdE" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/disposalpipe/segment{
+/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/dorms)
-"Zi" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/machinery/prop/almayer/computer/PC{
- dir = 8;
- pixel_y = 10
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
/area/golden_arrow/engineering)
-"Zj" = (
-/turf/closed/shuttle/midway{
- icon_state = "92";
- name = "\improper Tripoli"
- },
-/area/golden_arrow/hangar)
-"Zk" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S";
- pixel_y = 1
+"wnq" = (
+/obj/structure/sign/safety/hazard{
+ pixel_y = -25
},
-/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/cable/heavyduty{
icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/engineering)
+"woR" = (
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ name = "\improper Hangar Lockdown Blast Door";
+ id = "cargolocksnorth"
+ },
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "cargo_arrow"
+ icon_state = "test_floor4"
},
-/area/golden_arrow/hangar)
-"Zn" = (
-/obj/structure/machinery/door/poddoor/almayer{
+/area/golden_arrow/supply)
+"wAd" = (
+/obj/structure/platform_decoration{
+ dir = 8
+ },
+/obj/structure/machinery/camera/autoname/golden_arrow{
dir = 4;
- id = "apc1blastdoor";
- name = "\improper Vehicle Bay One Blast Door"
+ name = "ship-grade camera"
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/area/golden_arrow/hangar)
-"Zo" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 4
+/turf/open/floor/almayer,
+/area/golden_arrow/supplydrop)
+"wBW" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/plating/plating_catwalk,
/area/golden_arrow/engineering)
-"Zp" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W";
- layer = 3.3;
- pixel_x = -1
+"wDL" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
},
-/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
},
-/area/golden_arrow/medical)
-"Zq" = (
-/obj/structure/ladder{
- height = -1;
- id = "engisouth"
+/turf/open/floor/almayer/edge{
+ dir = 9
},
-/turf/open/floor/almayer,
-/area/golden_arrow/engineering)
-"Zs" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 1
+/area/golden_arrow/platoonarmory)
+"wPI" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+/obj/structure/ship_ammo/heavygun{
+ pixel_y = 8
+ },
+/obj/structure/ship_ammo/heavygun{
+ layer = 3.01
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "cargo"
},
-/turf/open/floor/almayer,
/area/golden_arrow/hangar)
-"Zt" = (
-/obj/structure/machinery/door/poddoor/almayer,
+"wRv" = (
+/obj/structure/machinery/recharge_station,
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "test_floor5"
},
-/area/golden_arrow/prep_hallway)
-"Zu" = (
-/obj/structure/surface/table/almayer,
-/obj/item/weapon/straight_razor{
- pixel_x = -5;
- pixel_y = -5
+/area/golden_arrow/synthcloset)
+"wSf" = (
+/turf/open/space/basic,
+/area/golden_arrow/supply)
+"xiW" = (
+/obj/structure/barricade/handrail{
+ pixel_y = -2;
+ layer = 2.9
},
-/obj/item/clothing/head/cmcap/bridge{
- pixel_x = 5;
- pixel_y = 6
+/turf/open/floor/almayer/aicore,
+/area/golden_arrow/ai_interface)
+"xlL" = (
+/obj/structure/machinery/light/double/blue{
+ dir = 1;
+ light_color = "#dae2ff"
},
-/turf/open/floor/almayer,
-/area/golden_arrow/platoon_commander_rooms)
-"Zv" = (
-/turf/closed/shuttle/midway{
- icon_state = "64";
- name = "\improper Tripoli"
+/turf/open/floor/almayer/edge/smooth/corner,
+/area/golden_arrow/motor_pool)
+"xxa" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/light/small/blue{
+ dir = 8;
+ light_color = "#dae2ff";
+ light_power = 0.25
},
-/area/golden_arrow/hangar)
-"Zz" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/oil,
-/obj/effect/decal/siding{
- icon_state = "siding6"
+/turf/open/floor/almayer/edge/smooth{
+ dir = 8
},
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"ZA" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/door/poddoor/almayer{
- dir = 2;
- name = "\improper Storage Bay Blast Door"
+/area/golden_arrow/supply)
+"xzY" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
},
-/area/golden_arrow/hangar)
-"ZE" = (
-/obj/structure/bed/chair/office/dark{
- dir = 1
+/obj/structure/machinery/light/small/blue{
+ dir = 8;
+ light_color = "#dae2ff";
+ light_power = 0.25
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/golden_arrow/shared_office)
-"ZF" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
+/turf/open/floor/almayer/edge/smooth{
dir = 8
},
-/turf/open/floor/almayer{
- dir = 10;
- icon_state = "cargo"
+/area/golden_arrow/supply)
+"xHO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/golden_arrow/hangar)
-"ZI" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
},
-/obj/item/tool/warning_cone,
/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"ZJ" = (
-/obj/structure/pipes/vents/scrubber{
- dir = 8
+/area/golden_arrow/engineering)
+"xIP" = (
+/obj/structure/machinery/door_control{
+ id = "lowerstorage2";
+ name = "lowerstorage2";
+ needs_power = 0;
+ pixel_y = 32
},
/obj/effect/decal/warning_stripes{
- icon_state = "W"
+ icon_state = "cargo_arrow";
+ dir = 8
},
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/turf/open/floor/almayer/edge{
+ dir = 8
},
-/area/golden_arrow/briefing)
-"ZL" = (
-/obj/structure/machinery/landinglight/ds1/delaythree{
- dir = 1
+/area/golden_arrow/supply)
+"xKb" = (
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/golden_arrow/hangar)
-"ZN" = (
-/obj/structure/cable{
- icon_state = "4-8"
+/area/golden_arrow/engineering)
+"xOB" = (
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/obj/structure/pipes/standard/simple/hidden/supply{
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer/edge/smooth{
dir = 8
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/platoon_commander_rooms)
-"ZO" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/almayer,
-/area/golden_arrow/hangar)
-"ZS" = (
-/obj/structure/machinery/gear{
- id = "supply_elevator_gear"
+/area/golden_arrow/supply)
+"xTf" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
},
-/obj/effect/decal/cleanable/dirt,
+/area/golden_arrow/supply)
+"xXq" = (
/obj/effect/decal/warning_stripes{
icon_state = "SW-out"
},
+/obj/structure/machinery/gear{
+ id = "supply_elevator_gear"
+ },
/turf/open/floor/almayer{
- dir = 8;
- icon_state = "blackcorner"
+ icon_state = "plate"
},
-/area/golden_arrow/hangar)
-"ZT" = (
-/obj/structure/pipes/standard/manifold/hidden/supply,
-/obj/structure/cable/heavyduty{
- icon_state = "1-8"
+/area/golden_arrow/engineering)
+"xXR" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
},
-/obj/structure/cable{
- icon_state = "0-4";
- layer = 2.36
+/obj/effect/decal/cleanable/dirt{
+ layer = 2.52
},
-/turf/open/floor/plating/plating_catwalk,
-/area/golden_arrow/prep_hallway)
-"ZU" = (
-/obj/structure/shuttle/part/dropship1/transparent/lower_right_wing{
- name = "\improper Tripoli"
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/golden_arrow/hangar)
-"ZX" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/vending/walkman{
- density = 0;
- pixel_x = 10;
- pixel_y = 21
+/area/golden_arrow/supply)
+"ydL" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "cargo"
},
-/obj/item/trash/kepler{
- pixel_x = 8;
- pixel_y = 44
+/obj/structure/machinery/light/small{
+ light_color = "#C02526";
+ color = "#C02526"
},
-/obj/item/trash/barcardine,
/turf/open/floor/almayer,
-/area/golden_arrow/dorms)
+/area/golden_arrow/supply)
+"yfG" = (
+/obj/structure/machinery/door/poddoor/almayer/locked{
+ name = "\improper Hangar Lockdown Blast Door";
+ id = "cargolocksnorth"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/supply)
(1,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(2,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(3,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(4,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(5,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(6,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+awa
+awa
+ahl
+aLG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(7,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+ahl
+soC
+soC
+sgR
+ozf
+shd
+soC
+soC
+ahl
+soC
+soC
+sgR
+ozf
+shd
+rmN
+soC
+ahl
+soC
+soC
+fIR
+fWz
+pWS
+soC
+soC
+ahl
+aPy
+aPy
+ahl
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(8,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+ahl
+gNW
+xTf
+hUp
+rTJ
+rYI
+vYW
+gNW
+ahl
+mKT
+vve
+vCJ
+eGR
+xXR
+uPX
+mKT
+ahl
+mKT
+vve
+hUp
+rTJ
+xXR
+uPX
+mKT
+ahl
+alr
+aJu
+ahl
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(9,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+ahl
+jSb
+vve
+hUp
+rTJ
+xXR
+uPX
+rdX
+ahl
+jSb
+vve
+hUp
+rTJ
+xXR
+uPX
+rdX
+ahl
+mpf
+xTf
+hUp
+eGR
+rYI
+uPX
+rdX
+ahl
+aoZ
+awa
+ahl
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(10,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+ahl
+qds
+xTf
+hUp
+rTJ
+xXR
+uPX
+gNW
+ahl
+qds
+xTf
+hUp
+rTJ
+xXR
+uPX
+gNW
+ahl
+qds
+xTf
+vCJ
+eGR
+xXR
+uPX
+gNW
+ahl
+aGZ
+aze
+ahl
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(11,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+ahl
+fqq
+lAv
+cTL
+rTJ
+pFO
+lAv
+lAv
+ahl
+fqq
+lAv
+cTL
+rTJ
+pFO
+bcc
+lAv
+ahl
+fqq
+lAv
+tjT
+eGR
+pFO
+bcc
+bcc
+ahl
+acz
+aUn
+ahl
+ahl
+fbw
+fbw
+fbw
+fbw
+fbw
+fbw
+fbw
+fbw
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(12,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+ahl
+ahl
+lve
+otJ
+otJ
+otJ
+otJ
+ahl
+ahl
+ahl
+gqG
+nAo
+nAo
+nAo
+nAo
+ahl
+ahl
+ahl
+gkN
+nAo
+nAo
+nAo
+nAo
+ahl
+ahl
+aLS
+auc
+ahl
+aUE
+fbw
+cGQ
+cGQ
+cGQ
+cGQ
+cGQ
+aTM
+fbw
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(13,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+odN
+aEG
+aEG
+aEG
+aEG
+lNj
+ahl
+nIL
+nIL
+nIL
+nIL
+nIL
+ahl
+aUE
+ahl
+nUJ
+nUJ
+nUJ
+nUJ
+nUJ
+ahl
+aUE
+ahl
+lHE
+lHE
+lHE
+lHE
+lHE
+ahl
+ahl
+avB
+aho
+ahl
+ahl
+fbw
+cGQ
+cGQ
+cGQ
+cGQ
+cGQ
+cGQ
+fbw
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(14,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+jnX
+pRt
+pRt
+pRt
+rBy
+ahl
+ahl
+ahl
+jnX
+pRt
+pRt
+pRt
+qwH
+ahl
+ahl
+ahl
+olN
+pRt
+eNC
+eNC
+mhB
+ahl
+ahl
+aPb
+aho
+aMI
+aps
+azo
+cGQ
+cGQ
+cGQ
+cGQ
+cGQ
+cGQ
+fbw
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(15,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aOm
+cqk
+lDX
+aXB
+yfG
+xxa
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+cXg
+aXB
+aXB
+aXB
+aXB
+xOB
+xOB
+aXB
+xzY
+xOB
+eqr
+eqr
+xOB
+xOB
+xOB
+xxa
+kDp
+aUO
+aOp
+aVX
+aps
+azo
+cGQ
+cGQ
+cGQ
+cGQ
+cGQ
+cGQ
+fbw
+aJA
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(16,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+avc
+cqk
+avc
+avc
+woR
+oye
+avc
+avc
+avc
+avc
+avc
+avc
+avc
+nxj
+avc
+avc
+lPm
+lPm
+lPm
+lPm
+lPm
+hbu
+lPm
+lPm
+lPm
+lPm
+avc
+lPm
+oye
+pIe
+ahw
+aOp
+aVX
+aps
+azo
+cGQ
+cGQ
+cGQ
+cGQ
+cGQ
+cGQ
+fbw
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(17,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+srO
+nAo
+nAo
+nAo
+bwh
+ahl
+ahl
+ahl
+srO
+otJ
+otJ
+otJ
+pZs
+aYm
+ahl
+ahl
+srO
+otJ
+otJ
+otJ
+brA
+ahl
+ahl
+aCA
+aOp
+ayP
+aSm
+azo
+cGQ
+cGQ
+cGQ
+cGQ
+cGQ
+cGQ
+fbw
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aWh
+aWh
+aWh
+aWh
+aWh
+aWh
+aWh
+aWh
+aWh
+aWh
+aWh
+aWh
+aWh
+aWh
+aWh
+aWh
+aWh
+aWh
+aWh
+aWh
+aWh
+aWh
+aWh
+aWh
+aWh
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(18,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+lNj
+ahl
+eyx
+eyx
+eyx
+pcD
+eyx
+ahl
+aUE
+ahl
+svL
+svL
+svL
+svL
+svL
+ahl
+aUE
+ahl
+txJ
+txJ
+txJ
+lJP
+txJ
+ahl
+ahl
+aTN
+aOp
+ahl
+ahl
+fbw
+cGQ
+cGQ
+cGQ
+cGQ
+cGQ
+cGQ
+fbw
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aWh
+auV
+aAK
+akL
+aAK
+akL
+aqy
+aAK
+akL
+aAK
+akL
+awI
+azx
+aMo
+aAK
+akL
+aAK
+akL
+azJ
+aAK
+akL
+aAK
+akL
+aWW
+aWh
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(19,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+ahl
+ahl
+xIP
+eNC
+eNC
+eNC
+eNC
+ahl
+ahl
+ahl
+pRD
+eNC
+eNC
+pRt
+pRt
+ahl
+ahl
+ahl
+eqM
+eNC
+eNC
+cdX
+eNC
+ahl
+ahl
+aSD
+aOp
+ahl
+aUE
+fbw
+cGQ
+cGQ
+cGQ
+cGQ
+cGQ
+cGQ
+fbw
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aWh
+aEZ
+aEI
+aQQ
+acV
+asK
+aAU
+aEI
+aQQ
+acV
+asK
+aPL
+amP
+arD
+aFy
+axL
+aKr
+azh
+abh
+aFy
+axL
+aKr
+azh
+aUY
+aWh
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(20,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+ahl
+oRK
+soC
+fIR
+rTJ
+pWS
+soC
+soC
+ahl
+oRK
+rmN
+fIR
+rTJ
+pWS
+rmN
+soC
+ahl
+oRK
+soC
+fIR
+rTJ
+pWS
+soC
+soC
+ahl
+aSD
+aOp
+aYm
+ahl
+fbw
+fbw
+fbw
+fbw
+fbw
+fbw
+fbw
+fbw
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aWh
+aWw
+abW
+acb
+acb
+abW
+aAt
+abW
+acb
+acb
+ahi
+aiL
+adA
+aQZ
+aOs
+ajU
+aOs
+afh
+aKH
+aOs
+aOs
+ajU
+aOs
+aOE
+aWh
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(21,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+ahl
+gNW
+xTf
+vCJ
+rTJ
+xXR
+uPX
+gNW
+ahl
+gNW
+xTf
+hUp
+rTJ
+xXR
+uPX
+gNW
+ahl
+gNW
+xTf
+hUp
+eGR
+xXR
+qmu
+mKT
+ahl
+adg
+aOp
+aGB
+aBt
+avc
+ago
+aBt
+avc
+ahl
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aWh
+aLK
+adW
+aog
+aLK
+akO
+akO
+akO
+adW
+aog
+aUi
+aih
+abx
+abx
+abx
+abx
+abx
+abx
+abx
+abx
+abx
+abx
+avb
+aWh
+aWh
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(22,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+ahl
+jSb
+vve
+hUp
+rTJ
+xXR
+uPX
+ydL
+ahl
+jSb
+vve
+hUp
+rTJ
+xXR
+uPX
+rdX
+ahl
+jSb
+vve
+uEm
+rTJ
+xXR
+uPX
+ydL
+ahl
+aPb
+aho
+aGB
+ahl
+aKb
+aLe
+aho
+aUy
+ahl
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aWh
+awS
+alP
+atN
+aLz
+aBk
+axN
+aLz
+aLz
+apV
+atM
+aBk
+abx
+aec
+ack
+abx
+afL
+aVJ
+abx
+akK
+aJU
+acv
+avb
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(23,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+ahl
+tDA
+vve
+vCJ
+rTJ
+xXR
+uPX
+mKT
+ahl
+tDA
+vve
+hUp
+rTJ
+xXR
+uPX
+mKT
+ahl
+tDA
+xTf
+vCJ
+rTJ
+xXR
+uPX
+mKT
+ahl
+aZR
+aaw
+aQf
+awv
+aXB
+auu
+aGR
+aOm
+ahl
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aWh
+aQd
+aTj
+adE
+aqd
+ajm
+aFK
+aTS
+aQd
+ase
+aZl
+aqd
+abx
+aeL
+aeM
+amw
+axW
+ajy
+atI
+aFt
+aWx
+aNr
+avb
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(24,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+ahl
+lAv
+bcc
+cTL
+knD
+pFO
+lAv
+lAv
+ahl
+lAv
+lAv
+tjT
+rWx
+ckD
+bcc
+bcc
+ahl
+bcc
+bcc
+cTL
+rWx
+ckD
+lAv
+lAv
+ahl
+aPb
+aho
+awN
+aXc
+aCW
+aad
+aIn
+aCW
+ahl
+aEG
+aEG
+aEG
+aDh
+aDh
+aDh
+aDh
+aEG
+aUI
+aUI
+aUI
+aUI
+aUI
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aWh
+aog
+aQr
+anC
+aQr
+aog
+aog
+aog
+amC
+ayv
+aDi
+aog
+abx
+aqX
+aFO
+aQR
+aao
+amo
+aPS
+asx
+aya
+acL
+avb
+aEG
+aEG
+avb
+avb
+avb
+avb
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(25,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+ahl
+aPb
+aAe
+aBI
+ahV
+aiv
+alA
+aEv
+aiv
+arf
+aOK
+aOK
+aOK
+aTv
+aNx
+aPh
+aDh
+aEG
+aUI
+agb
+aUI
+aUI
+aUI
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aWh
+aEe
+apA
+aax
+aRE
+aoU
+aog
+aoU
+apA
+aax
+aBq
+aEe
+abx
+aDs
+aFt
+asE
+aHs
+aMg
+alw
+aMQ
+aHk
+aWM
+aKo
+aOK
+aOK
+aKo
+ahx
+aeo
+avb
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(26,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+wSf
+wSf
+wSf
+wSf
+wSf
+wSf
+wSf
+aYv
+aYv
+aYv
+aYv
+aYv
+aYv
+tDZ
+fKv
+dij
+bnm
+vDs
+abb
+idK
+jKX
+aJF
+ahl
+afq
+aho
+aAm
+ahl
+aPG
+aKl
+aho
+aUy
+ahl
+aEG
+aEG
+aEG
+aDh
+aPh
+aPh
+aDh
+aEG
+aUI
+aUI
+aUI
+aUI
+aUI
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aWh
+aog
+awW
+aAv
+asd
+aog
+aog
+aog
+afy
+aAv
+aTn
+aog
+abx
+aPp
+aMD
+axf
+aeo
+aRd
+aEN
+aJQ
+aCu
+apG
+avb
+aEG
+aEG
+avb
+aeo
+aeo
+avb
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(27,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-Wh
-Wh
-Wh
-Wh
-Wh
-Wh
-Wh
-Wh
-Wh
-Wh
-Wh
-Wh
-Wh
-Wh
-Wh
-Wh
-Wh
-Wh
-Wh
-Wh
-Wh
-Wh
-Wh
-Wh
-Wh
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aYv
+aYv
+avw
+wRv
+aYv
+aYv
+fpt
+mGo
+dMj
+fPI
+qiX
+jYS
+pPo
+iRi
+sCG
+ahl
+nEn
+ate
+aRv
+ati
+aOm
+aon
+aGR
+aff
+ahl
+aEG
+aEG
+aEG
+aDh
+aDh
+aDh
+aDh
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aWh
+aFo
+awW
+aAv
+alD
+alc
+aog
+alc
+awW
+aAv
+aTn
+aFo
+abx
+agI
+abp
+afn
+amT
+aUe
+abx
+aAH
+aOV
+ahY
+avb
+aEG
+aEG
+avb
+avb
+avb
+avb
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(28,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-Wh
-wu
-AK
-kL
-AK
-kL
-ik
-AK
-kL
-AK
-kL
-mR
-zx
-dF
-AK
-kL
-AK
-kL
-nl
-AK
-kL
-AK
-kL
-Hf
-Wh
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aYv
+aYv
+aDJ
+qjn
+tEH
+aYv
+pSQ
+jJX
+wBW
+vZm
+qGj
+wdE
+gjs
+tkm
+qRO
+ahl
+ahl
+aeO
+aAm
+awN
+awN
+awN
+aGB
+awN
+ahl
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aWh
+aog
+awW
+aAv
+aPo
+aog
+aog
+aog
+aYb
+aAv
+aTn
+aog
+abx
+ayp
+aeo
+aBc
+aeo
+akE
+abx
+arz
+aeo
+aIK
+avb
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(29,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-Wh
-EZ
-sk
-BH
-hM
-sk
-AU
-sk
-BH
-hM
-sk
-HL
-mP
-WK
-Aa
-IE
-It
-It
-ON
-Aa
-IE
-It
-It
-UY
-Wh
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aYv
+aYv
+aXI
+ecj
+byT
+bMl
+mla
+hMX
+anm
+apr
+apr
+apr
+apr
+cQH
+uVo
+jWK
+umm
+aPz
+aAm
+afz
+afz
+afz
+afz
+aCW
+ahl
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aWh
+aWh
+aWh
+aWh
+aAI
+aZw
+amS
+azT
+aoU
+aog
+aoU
+aZw
+amS
+aWb
+aAI
+abx
+alX
+aGx
+agV
+awk
+afm
+abx
+aij
+aBU
+agf
+avb
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(30,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-Wh
-Ww
-eI
-cb
-cb
-eI
-sv
-eI
-cb
-cb
-xp
-BS
-dA
-mp
-Wg
-jU
-Wg
-fh
-kB
-Wg
-Wg
-jU
-Wg
-pc
-Wh
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aYv
+kwe
+aCy
+bvd
+hPz
+aYv
+pXl
+frR
+aIC
+dws
+jqA
+bPL
+aIC
+hGr
+cwD
+jZp
+lEX
+aKZ
+aAj
+afz
+afz
+aCW
+aZP
+aCW
+ahl
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aWh
+avH
+ael
+aog
+aog
+aog
+aWy
+ajR
+aog
+aog
+aog
+ave
+ayz
+aog
+aog
+abx
+abx
+abx
+aTG
+aXG
+abx
+abx
+abx
+acQ
+abx
+avb
+auh
+auh
+auh
+auh
+auh
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(31,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-Wh
-aN
-Bk
-og
-Bk
-Bk
-Bk
-Bk
-Bk
-og
-yQ
-jo
-bx
-bx
-bx
-bx
-bx
-bx
-bx
-bx
-bx
-bx
-vb
-Wh
-Wh
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+rRA
+rRA
+rRA
+rRA
+rRA
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aYv
+aqi
+pLu
+aBr
+cgo
+aYv
+apr
+jJX
+aIC
+nja
+nja
+nja
+aIC
+rMy
+apr
+ahl
+ahl
+axv
+agD
+afz
+aIC
+aIC
+aIC
+aIC
+aIC
+aIC
+aIC
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aWh
+ari
+aOu
+aKz
+aFW
+awD
+aqN
+adW
+aay
+aLb
+adW
+avj
+agG
+adt
+acO
+acO
+aRz
+aog
+afT
+aAP
+aHc
+auL
+aTH
+aHc
+avi
+apP
+aTc
+aer
+aWi
+auE
+aBN
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(32,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-Wh
-od
-Sb
-du
-NA
-Bk
-xN
-NA
-NA
-kw
-yQ
-aN
-bx
-ZX
-We
-bx
-We
-GM
-bx
-LC
-RY
-bx
-vb
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+rRA
+rRA
+onj
+onj
+onj
+rRA
+rRA
+aIC
+aIC
+aIC
+aIC
+aIC
+aYv
+aYv
+aYv
+aYv
+aYv
+aYv
+apr
+bug
+aIC
+rzk
+sTP
+sTP
+aIC
+uel
+apr
+ahl
+ahl
+ahl
+aIC
+aIC
+aIC
+aek
+aek
+aIC
+aek
+aek
+aIC
+aIC
+axS
+axS
+axS
+axS
+axS
+axS
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aWh
+aeF
+aQw
+aHd
+aog
+aog
+aFX
+aBk
+aht
+aRo
+aQm
+aQr
+aBw
+atm
+aPf
+aOM
+ave
+aog
+atY
+ayJ
+aUN
+aUN
+akR
+aAo
+aGT
+aiU
+avO
+aYk
+aGT
+agR
+aBN
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(33,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-Wh
-aN
-aN
-hq
-aN
-Xo
-oi
-ne
-aN
-Og
-Yw
-aN
-bx
-oo
-mk
-gg
-Pc
-hn
-Qu
-Xy
-Wx
-Qg
-vb
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+rRA
+onj
+baN
+baN
+baN
+onj
+rRA
+aIC
+tBe
+kGg
+tBe
+aIC
+iGx
+jqJ
+mJI
+rqE
+mHX
+rqE
+mJI
+qVj
+aIC
+sMB
+aKn
+pGL
+aIC
+pas
+miP
+crq
+qEe
+ajV
+aIC
+aDe
+aHX
+apw
+aru
+aSt
+aru
+aru
+aIs
+aIC
+aIh
+adL
+aJn
+aSg
+adL
+aIh
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aWh
+afI
+aHF
+aHd
+aog
+arr
+azv
+aNp
+aKk
+anJ
+aNn
+aAs
+agh
+aUh
+aXW
+ato
+aSu
+aog
+aEs
+aeA
+aCE
+aCE
+aCE
+aCE
+aCE
+aCE
+aaI
+auh
+auh
+auh
+auh
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(34,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-Wh
-og
-aN
-Ez
-aN
-og
-og
-og
-bl
-br
-jw
-og
-bx
-SQ
-hQ
-aJ
-SE
-pg
-PS
-zX
-Do
-uj
-vb
-EG
-EG
-vb
-vb
-vb
-vb
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+rRA
+sse
+xiW
+tTk
+duL
+duL
+duL
+hCn
+sgG
+sgG
+sgG
+nuK
+nrp
+anm
+anm
+apr
+lJW
+anm
+apr
+anm
+aIC
+rOB
+dhC
+pce
+aIC
+dLD
+anm
+anm
+tkm
+apr
+aiN
+aJV
+aHX
+aHt
+aib
+adI
+aow
+aMb
+akN
+aIC
+aFT
+adL
+apj
+aXr
+aWZ
+agM
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aWh
+afI
+aHF
+aHd
+aog
+arr
+asL
+aBk
+aKk
+ahK
+aLw
+ahS
+axK
+aGr
+aoO
+aNT
+aQr
+aog
+aCH
+adj
+aHp
+avJ
+aiM
+aKW
+aMY
+aCE
+aaI
+aEG
+aSP
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(35,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-Wh
-UU
-aN
-bm
-aN
-oU
-og
-oU
-aN
-bm
-QH
-UU
-bx
-vf
-Xy
-Pr
-Hs
-vZ
-lw
-MQ
-Hk
-bP
-Ko
-OK
-OK
-Ko
-hx
-eo
-vb
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+rRA
+onj
+baN
+baN
+baN
+onj
+rRA
+aIC
+brg
+nEI
+brg
+aIC
+anm
+kQO
+kQO
+dNn
+kQO
+lLT
+exb
+aIC
+aIC
+cHw
+oxf
+wnq
+aIC
+aIC
+hcJ
+vfK
+bZF
+apS
+aIC
+aYq
+axm
+and
+and
+aoT
+aOi
+aty
+aMc
+aIC
+aIh
+aWZ
+aoC
+adL
+adL
+aIh
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aWh
+aWh
+aWh
+aWh
+aWh
+aIQ
+asS
+aBk
+aht
+aCB
+aQm
+ahS
+aBw
+adt
+aYH
+aYH
+azq
+aog
+aDd
+aeA
+aHp
+aKW
+ajr
+aiQ
+akT
+azM
+aaI
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(36,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-Wh
-og
-NA
-YS
-cg
-og
-og
-og
-ar
-YS
-NA
-og
-bx
-We
-MD
-uW
-eo
-Rd
-Wr
-JQ
-Cu
-GP
-vb
-EG
-EG
-vb
-eo
-eo
-vb
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+rRA
+rRA
+onj
+onj
+onj
+rRA
+rRA
+aIC
+aIC
+aIC
+aIC
+aIC
+kQO
+kQO
+eTc
+ccO
+kQO
+kQO
+kQO
+aIC
+eUL
+aYs
+xKb
+aYs
+mHq
+aIC
+aIC
+aIC
+xHO
+ayu
+aIC
+aIC
+aIC
+aek
+aek
+aIC
+aek
+aek
+aIC
+aIC
+aLM
+aLM
+aLN
+aLM
+aLM
+aLM
+axS
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aWh
+avr
+aHQ
+aLz
+aKk
+aBD
+aQm
+ahS
+aBd
+aog
+aog
+aog
+aog
+aog
+aIz
+aGD
+aCE
+anc
+aHM
+aNj
+aFA
+ahh
+aaI
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(37,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-IC
-wV
-wV
-wV
-IC
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-Wh
-Fo
-NA
-YS
-Bk
-Gw
-og
-Gw
-NA
-YS
-NA
-Fo
-bx
-ut
-bp
-Zh
-mT
-Oo
-bx
-tL
-rg
-NZ
-vb
-EG
-EG
-vb
-vb
-vb
-vb
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+rRA
+rRA
+rRA
+rRA
+rRA
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+kQO
+nBM
+lPH
+lGH
+hwm
+wAd
+oTo
+fWu
+hhQ
+ayS
+ayS
+ayS
+afx
+fWu
+kjn
+kbQ
+tkm
+ape
+axS
+aqP
+aIC
+aIC
+aIC
+aIC
+aIC
+aIC
+aIC
+aqP
+aqP
+aqP
+ach
+aqP
+ach
+aqP
+aqP
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aWh
+ajq
+aXX
+aLz
+aLz
+aBk
+aBk
+aRP
+axK
+akA
+aog
+acX
+auL
+aBK
+aot
+aeA
+aCE
+aCE
+aYV
+aCE
+aCE
+aCE
+aaI
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(38,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-IC
-IC
-IC
-IC
-ua
-Yo
-Zq
-IC
-IC
-IC
-IC
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-Wh
-og
-NA
-YS
-Kf
-og
-og
-og
-gm
-YS
-NA
-og
-bx
-lg
-eo
-uM
-eo
-lQ
-bx
-Of
-eo
-gk
-vb
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+kQO
+kiT
+vFy
+nBF
+cxa
+bPy
+kQO
+fWu
+pPt
+ayS
+ayS
+ayS
+qcH
+fWu
+ngb
+mpM
+tkm
+anm
+axS
+aqP
+aqP
+aaO
+aRg
+aqP
+aJD
+atF
+aBe
+aBe
+aBe
+aEb
+aPU
+aBe
+aGf
+azr
+aMA
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aWh
+aIQ
+aqB
+avE
+aKd
+aWH
+avW
+aWI
+aBW
+abi
+aBx
+aZx
+aHx
+arY
+aQS
+aeA
+aHp
+axh
+ajt
+aed
+aVT
+aNY
+aaI
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(39,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-IC
-bd
-Vv
-Uw
-uq
-Oc
-bb
-SZ
-qr
-JF
-IC
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-Wh
-Wh
-Wh
-Wh
-pE
-QH
-fa
-Xm
-oU
-og
-oU
-Xm
-fa
-aN
-pE
-bx
-Ln
-KE
-rA
-lB
-We
-bx
-ET
-wh
-UQ
-vb
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+kQO
+kQO
+kQO
+eES
+gPu
+kQO
+kQO
+aIC
+xXq
+aTs
+two
+aTs
+alR
+aIC
+ngb
+mpM
+hcq
+aWo
+aQT
+arB
+aaK
+aaK
+aeT
+aaK
+amd
+aCx
+aCx
+aCx
+aCx
+adv
+amd
+aCx
+aFh
+aeZ
+aqP
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aWh
+arr
+alD
+aBk
+aGl
+aZr
+arj
+aBk
+aBk
+ama
+aJB
+ahz
+aDd
+aEx
+aiH
+aGD
+aHp
+aJs
+ajt
+aXk
+anM
+abz
+aaI
+aaI
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(40,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-IC
-ei
-Ii
-LQ
-mj
-Zo
-ex
-Wt
-oM
-fV
-IC
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-Wh
-Dn
-gF
-og
-og
-og
-yc
-sX
-og
-og
-og
-TQ
-Hm
-og
-og
-bx
-bx
-bx
-UZ
-oe
-bx
-bx
-bx
-cQ
-bx
-vb
-uh
-uh
-uh
-uh
-uh
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+kQO
+kQO
+kQO
+kQO
+kQO
+aIC
+aIC
+fWu
+fWu
+fWu
+aIC
+aIC
+gwS
+mnT
+icW
+apr
+axS
+aFL
+aqP
+aUX
+aev
+ach
+ayG
+aCZ
+aCZ
+aCZ
+aCZ
+aPE
+all
+arO
+apH
+aeZ
+aqP
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aWh
+arr
+alD
+ave
+anG
+atc
+aUc
+aBk
+aBk
+aDS
+azx
+aKL
+axB
+aYu
+adf
+aKM
+aXh
+aIZ
+aNK
+aZp
+aFb
+aKS
+aPt
+aaI
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(41,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-IC
-av
-PR
-Gs
-Ys
-Ys
-Ys
-TF
-PR
-Ss
-IC
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-Wh
-Mm
-Ou
-Kz
-VN
-wD
-BJ
-Qr
-KU
-CL
-aN
-Xm
-Ll
-sW
-cO
-cO
-Rz
-og
-zH
-be
-EL
-UK
-PP
-EL
-Fk
-nX
-Zt
-er
-Cm
-uE
-oB
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+abO
+aqg
+ach
+azp
+azp
+aqP
+aqP
+aqP
+aUL
+apn
+aPE
+aqP
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aWh
+aog
+azT
+aBk
+aBk
+aEY
+aBk
+aBk
+aLz
+aDS
+azx
+aQb
+aWC
+aCm
+acs
+aIR
+aHR
+afX
+aIw
+ayf
+avI
+awf
+aov
+aaI
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(42,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-IC
-pK
-yW
-em
-yS
-yS
-yS
-fx
-rb
-Zi
-IC
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-Wh
-eF
-Qw
-WR
-og
-og
-ie
-Bk
-su
-dw
-su
-Bk
-jW
-Bk
-Bk
-Bk
-QH
-og
-zj
-mZ
-UN
-UN
-mZ
-Ao
-vQ
-jJ
-vF
-Yk
-UN
-gR
-oB
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+adz
+axS
+axS
+axS
+axS
+axS
+axS
+axS
+aDZ
+awl
+aNC
+aRg
+aRg
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aWh
+aog
+aEi
+azd
+aQd
+aZl
+ars
+agH
+aVk
+adJ
+aog
+alf
+aDd
+aGD
+aCE
+aCE
+aCE
+apC
+ahJ
+aKW
+aEh
+auJ
+aCE
+aaI
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(43,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-IC
-IC
-IC
-IC
-IC
-GL
-Qs
-OP
-yS
-yS
-yS
-IF
-gt
-DA
-IC
-IC
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-Wh
-fI
-HF
-WR
-og
-rr
-Ze
-Np
-Wq
-Ax
-DI
-As
-Em
-dZ
-cd
-FZ
-cn
-og
-jg
-Cm
-CE
-CE
-CE
-CE
-CE
-CE
-aI
-uh
-uh
-uh
-uh
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+adz
+ast
+alz
+aUq
+aGv
+aGv
+aGv
+aGv
+aag
+aeV
+aap
+aqP
+aqP
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aWh
+aWh
+aWh
+aWh
+azB
+aYn
+apy
+aog
+aog
+aog
+aog
+aPa
+aDd
+aYy
+aCE
+anb
+aXN
+aBv
+ayr
+aNI
+aCj
+ans
+aRI
+aaI
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(44,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-IC
-jn
-Bl
-uX
-DA
-DA
-lU
-ui
-Ts
-rS
-Ts
-lR
-PR
-pr
-Ty
-IC
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-Wh
-fI
-HF
-WR
-og
-rr
-jW
-Bk
-DI
-DI
-iI
-hS
-bm
-Bk
-Bk
-NA
-aN
-og
-OU
-kQ
-Hp
-fS
-Hg
-MY
-CE
-CE
-aI
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+adz
+azA
+aUT
+aUT
+aUT
+aUT
+asC
+aEb
+aVA
+aGf
+aXV
+aBe
+aEb
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aWh
+aeG
+aHF
+arQ
+aHF
+aqI
+ahm
+aog
+aCM
+azU
+axF
+axt
+aCE
+anb
+aCE
+aPm
+aQv
+aAh
+alm
+aXR
+aug
+aaI
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(45,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-IC
-mD
-SL
-di
-di
-AM
-Zo
-LQ
-oP
-LQ
-CG
-Sp
-wj
-cc
-pu
-IC
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-Wh
-Wh
-Wh
-Wh
-Wh
-HH
-bm
-Bk
-Uc
-Uc
-db
-hS
-Xu
-sW
-YH
-YH
-zq
-og
-QP
-Cm
-Hp
-KW
-iQ
-kT
-Lg
-CE
-aI
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+adz
+aUP
+aWS
+aaQ
+aWS
+aWS
+aaQ
+aBV
+aEO
+adk
+ahA
+abD
+aiT
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aWh
+afl
+aHF
+arQ
+aHF
+aHF
+aHF
+aog
+aVa
+apO
+aLV
+aEd
+aCE
+anb
+aaI
+aaI
+aaI
+aaI
+aaI
+aaI
+aaI
+aaI
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(46,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-IC
-lV
-Co
-wd
-lV
-DA
-po
-jP
-Lc
-Zd
-uy
-tO
-yW
-Wv
-in
-IC
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-Wh
-Xp
-bm
-NA
-Bk
-Bk
-Bk
-hS
-Qn
-og
-og
-og
-og
-og
-Iz
-EL
-CE
-En
-HM
-FA
-FD
-CE
-aI
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+adz
+aHz
+aGa
+aGa
+aGa
+aGa
+aGa
+aeZ
+aDr
+awp
+aLB
+awp
+aeZ
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aWh
+azG
+aaA
+acr
+anW
+aNz
+aaq
+aog
+anp
+aiK
+aIz
+aWc
+aCE
+anb
+aaI
+aRJ
+aRJ
+aRJ
+aRJ
+aRJ
+aah
+hxJ
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(47,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-IC
-Jm
-GQ
-DP
-tX
-IC
-IC
-IC
-IC
-IC
-IC
-EU
-nI
-IC
-IC
-IC
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-Wh
-Nu
-bm
-NA
-mO
-Ro
-Qm
-hL
-Fq
-aN
-og
-pF
-UK
-Cm
-YU
-Cm
-CE
-CE
-YV
-CE
-CE
-CE
-aI
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+adz
+aEq
+aLv
+aLv
+aLv
+aOq
+aOq
+aBV
+aEO
+abD
+ahA
+adk
+aiT
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aDQ
+aDQ
+aDQ
+aDQ
+aDQ
+aDQ
+aIr
+aIr
+aIr
+aIr
+aIr
+aIr
+aog
+aog
+aJq
+aIz
+aXH
+aaI
+aaI
+aaI
+aRJ
+aRJ
+aRJ
+aRJ
+aRJ
+aRJ
+hxJ
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(48,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-IC
-ke
-mc
-Lh
-tX
-IC
-Yv
-vw
-GG
-Yv
-IC
-vK
-UH
-IC
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-Wh
-HH
-pB
-HK
-tB
-gU
-gp
-Nb
-uK
-cM
-uY
-FB
-IJ
-rY
-QS
-Cm
-Hp
-Gj
-jt
-tJ
-kW
-Tq
-aI
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+adz
+arp
+aAA
+aAA
+aAA
+aAA
+adx
+aPE
+aAT
+aCZ
+aBE
+atE
+aPE
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aDQ
+adC
+ayi
+aIr
+axq
+afr
+aIr
+aVO
+apm
+awM
+aAR
+aIr
+aVi
+aog
+aKL
+aIz
+acH
+ayY
+aEK
+arc
+aRJ
+aRJ
+aRJ
+aRJ
+aRJ
+aRJ
+hxJ
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(49,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-IC
-IC
-IC
-IC
-IC
-IC
-Yv
-DJ
-ro
-Ri
-IC
-Kg
-iR
-IC
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-Wh
-rr
-Bk
-Bk
-Kk
-Hy
-Da
-Bk
-Bk
-cJ
-JB
-er
-QP
-EL
-DD
-EL
-Hp
-aC
-jt
-hP
-nM
-gz
-aI
-aI
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+adz
+aGv
+aFc
+aBB
+aBB
+aDG
+aVL
+aGv
+aag
+axX
+aue
+ach
+aqP
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aDQ
+aDQ
+aYG
+ard
+aIr
+ard
+ard
+aIr
+ard
+ard
+ard
+ard
+aIr
+aIr
+aIr
+aOO
+aIz
+aKt
+aiX
+aEK
+aDX
+aRJ
+aRJ
+aRJ
+aRJ
+aRJ
+aRJ
+hxJ
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(50,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-Yv
-Yv
-XI
-Fw
-aY
-DV
-mj
-Jd
-IC
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-Wh
-rr
-Bk
-NA
-mO
-gW
-Qm
-Bk
-Bk
-QH
-zx
-Cm
-xB
-Yu
-df
-rT
-Xh
-IZ
-NK
-Zp
-XQ
-KS
-tu
-aI
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+adz
+axS
+axS
+axS
+axS
+axS
+axS
+axS
+aDZ
+aYO
+aYX
+aev
+aRg
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+azs
+azs
+azs
+azs
+azs
+azs
+azs
+azs
+aCS
+aDQ
+aMS
+aOS
+aOS
+alW
+aun
+agE
+ayy
+aOS
+aOS
+aOS
+agE
+aqf
+aTr
+aIr
+amF
+aIz
+aWJ
+aiX
+aEK
+aDX
+aRJ
+aRJ
+aRJ
+aRJ
+aRJ
+aRJ
+hxJ
+aFv
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(51,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-Yv
-xZ
-Cy
-gr
-oY
-IC
-fb
-ak
-IC
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-Wh
-og
-NA
-Bk
-Kk
-BD
-Qm
-Bk
-NA
-QH
-zx
-if
-WC
-Cm
-Cm
-mN
-HR
-fX
-Iw
-NH
-BF
-wf
-zP
-aI
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+adz
+alz
+alz
+alz
+aGv
+aGv
+alz
+aGv
+aag
+aeV
+aDu
+aqP
+aqP
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+azs
+atR
+aDj
+aIV
+aEo
+aCw
+aCw
+aKs
+afv
+aoj
+aia
+akv
+ahZ
+aoE
+awz
+aqD
+aaW
+aqD
+aqD
+adB
+aqO
+aVC
+auU
+aiq
+ayw
+aER
+ayZ
+azc
+aEK
+aiV
+aRJ
+aRJ
+aRJ
+aRJ
+aRJ
+aRJ
+hxJ
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(52,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-Yv
-qi
-Bs
-Br
-GI
-IC
-Fi
-wj
-IC
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-Wh
-og
-DC
-Lq
-aN
-EY
-QH
-fg
-QH
-kq
-og
-jD
-QP
-EL
-CE
-CE
-CE
-QV
-hJ
-KW
-Eh
-oh
-CE
-aI
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+adz
+azA
+aUT
+aUT
+aUT
+aUT
+aUT
+aEb
+aaM
+aGf
+aDx
+aGf
+aEb
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+azs
+afC
+aQW
+aMK
+auH
+ajO
+aMp
+amB
+amK
+aYY
+arK
+abL
+aYp
+aIr
+avU
+aSk
+aSk
+aSk
+aAr
+aIr
+ayE
+aTX
+aLE
+aFY
+ahz
+aji
+azn
+aTD
+aTD
+aTD
+aRJ
+aRJ
+aRJ
+aRJ
+aRJ
+aRJ
+hxJ
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(53,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-Yv
-Yv
-Yv
-Yv
-Yv
-IC
-VV
-PR
-IC
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-Wh
-Wh
-Wh
-Wh
-zB
-Yn
-py
-og
-og
-og
-og
-bN
-QP
-LI
-CE
-nb
-XN
-Pj
-yr
-NI
-Qo
-ns
-RI
-aI
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+aEq
+aWS
+aWS
+aWS
+aaQ
+aaQ
+aBV
+aEO
+adk
+ano
+adk
+aiT
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+azs
+anB
+aQW
+aDO
+aTO
+aAg
+aoL
+aEr
+azE
+atq
+aHV
+aPv
+aYI
+aIr
+aVp
+afO
+aQF
+afO
+aQF
+aIr
+ace
+aOe
+act
+azw
+anu
+afR
+aeA
+aeW
+aAy
+aTD
+aRJ
+aRJ
+aRJ
+aRJ
+aRJ
+aRJ
+hxJ
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(54,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-IC
-IC
-rF
-pr
-pq
-pr
-Kn
-IC
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-Wh
-nD
-HF
-rQ
-HF
-Fl
-AV
-og
-CM
-Bf
-RZ
-rk
-CE
-nb
-CE
-YD
-Qv
-Ah
-pb
-XR
-RS
-aI
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+axS
+eEG
+oZQ
+adQ
+aCf
+awp
+aPq
+adQ
+aCf
+awp
+aPq
+adQ
+aCf
+aLY
+axS
+aHz
+aGa
+aGa
+aGa
+aGa
+aGa
+aeZ
+aDr
+aBO
+aAk
+aBO
+aeZ
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+azs
+aHr
+aQW
+aso
+akD
+aup
+acA
+acA
+adV
+anA
+aXt
+aTX
+aoq
+aIr
+aiD
+aRC
+aRC
+aRC
+aqC
+aIr
+amL
+aww
+aLE
+ail
+ahz
+aOn
+aeA
+aeW
+aAy
+aTD
+aTD
+aTD
+aTD
+aTD
+hxJ
+hxJ
+hxJ
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(55,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-IC
-eq
-MF
-Yo
-IC
-Yo
-nI
-IC
-EG
-EG
-EG
-EG
-EG
-UI
-UI
-UI
-UI
-UI
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-Wh
-fl
-HF
-rQ
-HF
-HF
-HF
-og
-Va
-TB
-LV
-YW
-CE
-nb
-aI
-aI
-aI
-aI
-aI
-aI
-aI
-aI
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+axS
+eEG
+oZQ
+aBO
+aCf
+aBO
+oZQ
+aBO
+aCf
+aBO
+aPq
+awp
+aBG
+aLY
+axS
+aEq
+aLv
+aLv
+aOq
+aOq
+aOq
+aBV
+aEO
+adk
+aVW
+adk
+aiT
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+azs
+aIB
+ajv
+aRN
+aWQ
+aCw
+aCw
+aCw
+aat
+aYY
+aRt
+aXM
+acx
+awR
+aXj
+aBP
+ank
+aXj
+aRA
+aVQ
+acx
+aac
+ayI
+aFY
+aKY
+asU
+aob
+aeW
+aAy
+aeW
+aFa
+aJc
+aeW
+aTD
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(56,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-IC
-Mf
-Jy
-wF
-IC
-wV
-qm
-IC
-EG
-EG
-EG
-EG
-EG
-UI
-gb
-UI
-UI
-UI
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-Wh
-zG
-aA
-vN
-nW
-Nz
-eM
-og
-Dq
-Ms
-Iz
-Qx
-CE
-nb
-aI
-Cq
-GA
-GA
-GA
-GA
-PX
-hl
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+axS
+eEG
+oZQ
+aBO
+aCf
+awp
+oZQ
+aBO
+aBG
+awp
+aPq
+awp
+aBG
+aeZ
+axS
+aOH
+ayM
+aAA
+aAA
+aAA
+adx
+aPE
+aAT
+atE
+aBE
+atE
+aPE
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+azs
+aVq
+aIu
+aYj
+aPQ
+aCw
+aSV
+awL
+aHh
+aYY
+ayH
+aVl
+alN
+alN
+aoa
+aaV
+aaV
+aFm
+aEX
+aAl
+aaV
+aZW
+awt
+aeW
+aHw
+aHw
+aqG
+aeW
+aeW
+aeW
+afw
+afc
+aqV
+aTD
+aTD
+aTD
+aTD
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(57,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-IC
-IC
-Qz
-PT
-IC
-sR
-sR
-IC
-EG
-EG
-EG
-EG
-EG
-UI
-UI
-UI
-UI
-UI
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-DQ
-DQ
-DQ
-DQ
-DQ
-DQ
-Ir
-Ir
-Ir
-Ir
-Ir
-Ir
-og
-og
-Hv
-Iz
-LI
-aI
-aI
-aI
-IH
-Kc
-hN
-hN
-Kc
-Lo
-hl
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+axS
+eEG
+oZQ
+aBO
+aCf
+awp
+oZQ
+lov
+aBG
+awp
+aPq
+awp
+aBG
+aeZ
+axS
+ast
+alz
+aPM
+aZD
+aBB
+ayO
+aGv
+akF
+asJ
+aue
+ach
+aqP
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+azs
+azs
+azs
+azs
+azs
+azs
+azs
+aYY
+aYY
+abk
+aVZ
+aRD
+aQU
+aVZ
+aIr
+aJw
+aha
+axO
+aCY
+ado
+aYK
+aUC
+aYK
+aeW
+aAS
+aNE
+aJS
+aBp
+aeH
+aiW
+aAZ
+arx
+anF
+aeW
+aOT
+alI
+aTD
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(58,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-IC
-IC
-IC
-IC
-IC
-pW
-Xi
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-DQ
-lJ
-VH
-Ir
-sA
-ab
-Ir
-qW
-IM
-Fe
-nn
-Ir
-Vi
-og
-Cm
-Iz
-bF
-uR
-EK
-SY
-mY
-hN
-Lf
-aG
-hN
-IH
-hl
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+lDt
+aEG
+aEG
+aEG
+aEG
+aEG
+axS
+eEG
+oZQ
+aBO
+aCf
+awp
+aPq
+aBO
+aCf
+awp
+aPq
+awp
+aBG
+aeZ
+axS
+axS
+axS
+axS
+axS
+axS
+axS
+axS
+aIk
+awl
+aYX
+aRg
+aRg
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aHZ
+abk
+abk
+ada
+awQ
+aIb
+aNS
+aPs
+abk
+abk
+ado
+aYK
+aYK
+ado
+apZ
+awK
+aKx
+aeW
+asi
+alY
+azi
+auk
+aop
+aiW
+auk
+afG
+aDt
+aXU
+avC
+axM
+aTD
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(59,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-DQ
-DQ
-Uf
-rd
-Ir
-rd
-rd
-Ir
-rd
-rd
-rd
-rd
-Ir
-Ir
-Ir
-MT
-Iz
-Ca
-nX
-EK
-Wd
-rm
-QE
-Lf
-Lf
-QE
-IH
-hl
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+axS
+axS
+axS
+axS
+axS
+axS
+axS
+xlL
+axd
+axd
+axd
+aCZ
+axd
+axd
+axd
+aCZ
+axd
+axd
+axd
+afD
+axS
+aqP
+aqP
+ach
+ach
+aqP
+aqP
+aqP
+ach
+aeV
+aap
+ach
+aqP
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aHZ
+aGm
+aTE
+apI
+aOt
+aFd
+aOt
+aBa
+aDW
+aJR
+ado
+ahj
+alG
+aAQ
+apM
+aTf
+aAO
+aeW
+aii
+auk
+aRl
+aXA
+aeC
+aTT
+amM
+aBn
+aqo
+aeW
+ant
+azV
+aTD
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(60,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-DQ
-Mk
-rI
-rI
-tr
-VK
-Yr
-PJ
-rI
-rI
-rI
-Yr
-AN
-Yr
-Ir
-ra
-Iz
-bF
-nX
-EK
-Wd
-rm
-QE
-Lf
-aG
-QE
-IH
-hl
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+rQj
+lYO
+dVU
+aqP
+rQj
+bmu
+dVU
+aqP
+aqP
+aqP
+aqP
+aqP
+aqP
+aqP
+awp
+aqP
+ach
+ach
+aqP
+aqP
+aRg
+aqP
+ach
+ach
+ach
+ach
+ach
+aqP
+aqP
+aqP
+aAk
+ach
+aqP
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aHZ
+dzT
+aSv
+gjM
+aJX
+aqb
+aJX
+aqk
+aGY
+asD
+ado
+aQh
+aJk
+aBR
+aVI
+ayL
+aiB
+aeW
+aZm
+aEt
+aoz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(61,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-zs
-zs
-zs
-zs
-zs
-zs
-zs
-zs
-zs
-oj
-jf
-bc
-KC
-yR
-Dv
-qD
-aW
-qD
-qD
-Vh
-Xb
-sb
-dN
-iq
-Us
-ER
-bF
-NG
-EK
-Ne
-rm
-QE
-Lf
-aG
-hN
-VB
-hl
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+rQj
+lYO
+dVU
+kgw
+rQj
+bmu
+dLT
+opj
+bDB
+opj
+opj
+opj
+rnt
+aeK
+aeK
+afo
+aeK
+ayj
+aeK
+aeK
+aCV
+afo
+afo
+akM
+aIm
+ayd
+aFx
+aAG
+aAG
+aAG
+aDU
+aqP
+aqP
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aHZ
+rZR
+aSv
+aZV
+adl
+abk
+arh
+aRQ
+aGY
+avX
+ado
+arP
+arP
+arP
+arP
+arP
+arP
+aTD
+adz
+adz
+adz
+adz
+afP
+amn
+afP
+akb
+afP
+alT
+afP
+adz
+ayX
+adz
+alp
+amn
+anE
+akb
+ayN
+alT
+anE
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(62,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-zs
-jK
-Dj
-IV
-Fp
-Cw
-Cw
-Cw
-Sz
-YY
-qx
-Tb
-Gy
-Ir
-JE
-JE
-JE
-JE
-JE
-Ir
-Vs
-bI
-iJ
-FY
-er
-ji
-mr
-TD
-TD
-TD
-qK
-Jo
-hN
-QE
-vt
-Lo
-hl
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+rQj
+lYO
+dVU
+aqP
+rQj
+bmu
+dVU
+aqP
+uls
+aAE
+aAE
+aAE
+aAE
+aAE
+uls
+aAE
+aAE
+aAE
+aFr
+aFr
+aev
+aqP
+ach
+abu
+ach
+aFr
+aFr
+aFr
+aFr
+aAE
+aqP
+aqP
+aqP
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aHZ
+moW
+aSv
+aRQ
+adl
+eZR
+arh
+aRQ
+aGY
+gSr
+akb
+aEy
+azW
+add
+acZ
+ayC
+acP
+aEM
+aLT
+adz
+ayX
+adz
+aEf
+aZb
+aEf
+akb
+aEf
+aWl
+aDz
+adz
+ayX
+adz
+aEf
+aWl
+aEf
+akb
+aDz
+aWl
+aDz
+adz
+ayX
+adz
+afs
+akt
+acZ
+alT
+ayx
+akt
+aEM
+adz
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(63,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-zs
-uZ
-QW
-oH
-TW
-lq
-kI
-DB
-Ta
-tp
-Zg
-Td
-wU
-Ir
-Up
-Cb
-wE
-Cb
-wE
-Ir
-tP
-HT
-cx
-zw
-aS
-ZT
-Cm
-eW
-Ay
-TD
-Si
-GA
-GA
-GA
-GA
-qJ
-hl
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+axS
+axS
+axS
+axS
+axS
+axS
+axS
+axS
+axS
+aIh
+aIh
+aIh
+aIh
+aIh
+axS
+aNa
+aNa
+aNa
+aNa
+aNa
+axS
+adH
+adH
+apQ
+axS
+aOw
+aOw
+aOw
+aOw
+aOw
+axS
+axS
+axS
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aHZ
+aJY
+aKj
+aQJ
+aDg
+aga
+arh
+aoI
+aDW
+aoG
+akb
+aej
+aum
+aBg
+abC
+aWl
+aVb
+art
+aUV
+adz
+ayX
+adz
+aBu
+avA
+aAW
+avA
+avA
+avA
+aPx
+adz
+ayX
+adz
+aBu
+aAW
+avA
+avA
+avA
+avA
+aPx
+adz
+ayX
+adz
+auN
+aeR
+aBQ
+aVD
+aVb
+art
+aZy
+adz
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(64,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-zs
-TY
-QW
-DO
-Mh
-kh
-La
-ZJ
-sT
-YY
-mH
-bI
-NX
-Ir
-JE
-JE
-JE
-JE
-JE
-Ir
-dc
-ww
-iJ
-il
-er
-Oh
-Cm
-eW
-Ay
-TD
-TD
-TD
-TD
-TD
-hl
-hl
-hl
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+axS
+aJD
+jHV
+jHV
+jHV
+aEb
+axS
+aSd
+aSd
+aSd
+aSd
+ajF
+axS
+asV
+afd
+aLs
+axS
+aSd
+aSd
+aSd
+aSd
+aRL
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aHZ
+afk
+agS
+wDL
+awQ
+aLp
+aLk
+uoJ
+aDW
+aSr
+akb
+adz
+aNm
+aHa
+aSo
+akG
+aQL
+aEa
+aEa
+adz
+ayX
+adz
+ajM
+vRh
+aVD
+wPI
+aVD
+vRh
+ajI
+adz
+ayX
+adz
+axV
+arN
+aWl
+arN
+aVD
+arN
+aNk
+adz
+ayX
+adz
+aNR
+aDk
+atD
+akG
+aQL
+aDk
+aDk
+adz
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(65,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-zs
-IB
-Xz
-Ny
-LU
-Cw
-Cw
-Cw
-Sx
-YY
-hG
-XM
-cx
-XE
-Xj
-DF
-Sy
-Xj
-RA
-Oz
-cx
-GH
-QX
-FY
-er
-FN
-pL
-eW
-Ay
-eW
-Ov
-mz
-eW
-TD
-pf
-hl
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+axS
+eEG
+aPq
+aBO
+aCf
+aeZ
+axS
+aSd
+aSd
+aSd
+aSd
+aSd
+axS
+aGu
+aVG
+abS
+axS
+aSd
+aSd
+aSd
+aSd
+aSd
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aHZ
+afk
+aSv
+aXJ
+aOt
+aQe
+aOt
+amI
+aGY
+aJM
+akb
+aqa
+aiz
+aAu
+aOG
+aeb
+aLu
+atb
+aZy
+adz
+ayX
+adz
+aza
+vRh
+aVD
+akZ
+aWl
+vRh
+acR
+adz
+ayX
+adz
+aza
+arN
+aWl
+aoA
+aXe
+aoA
+aCi
+adz
+ayX
+adz
+aSI
+aBg
+aVf
+aRG
+aLu
+art
+aEf
+adz
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(66,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-zs
-Jt
-Iu
-Yj
-yg
-Cw
-SV
-zf
-uA
-YY
-Yr
-Gk
-Cd
-rI
-FM
-Yr
-Yr
-YL
-RH
-Wf
-Yr
-Wk
-Yr
-eW
-Hw
-Hw
-fp
-eW
-eW
-eW
-fw
-Xx
-pR
-TD
-TD
-TD
-TD
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+axS
+eEG
+oZQ
+aBO
+aCf
+aeZ
+axS
+aSd
+aSd
+aSd
+aSd
+aSd
+axS
+aYd
+agj
+aqz
+axS
+aSd
+aSd
+aSd
+aSd
+aSd
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aHZ
+aHZ
+aUv
+aKw
+aur
+arl
+aIX
+aRq
+afZ
+abk
+akb
+adz
+aSB
+aRK
+aDH
+aGg
+aWU
+aoX
+adP
+adz
+ayX
+adz
+aPD
+aUJ
+asP
+auD
+aYP
+aYP
+aYT
+adz
+ayX
+adz
+aMV
+aYP
+aYP
+auD
+aYP
+aUJ
+aYT
+adz
+ayX
+adz
+aLP
+aNO
+aFS
+aQc
+apD
+aEa
+adP
+adz
+aEG
+aEG
+adz
+asY
+asY
+aDE
+asY
+asY
+adz
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(67,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-zs
-zs
-zs
-zs
-zs
-zs
-zs
-YY
-YY
-YY
-VZ
-RD
-kS
-VZ
-Ir
-Ej
-cK
-Aq
-TZ
-do
-YK
-ai
-YK
-eW
-Yi
-tx
-OI
-tl
-JI
-iW
-AZ
-DK
-rV
-eW
-Yc
-Zu
-TD
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+axS
+mvk
+oZQ
+aBO
+aBG
+aeZ
+axS
+aSd
+aSd
+aSd
+aSd
+aSd
+axS
+ayo
+auG
+atz
+axS
+aSd
+aSd
+aSd
+aSd
+aSd
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aHZ
+aCC
+avs
+azu
+avs
+aDL
+abk
+akb
+akb
+adz
+adz
+aSn
+afN
+aEA
+afN
+afN
+adz
+adz
+ayX
+adz
+adz
+aSn
+afN
+aEA
+afN
+afN
+adz
+adz
+adz
+adz
+adz
+aSn
+afN
+aEA
+aok
+aok
+adz
+adz
+ayX
+adz
+adz
+aok
+aok
+aEA
+afN
+afN
+adz
+adz
+aEG
+aEG
+adz
+afN
+afN
+aEA
+afN
+afN
+adz
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(68,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-HZ
-bk
-bk
-da
-wQ
-Ye
-OB
-Ps
-bk
-bk
-do
-YK
-YK
-do
-Lx
-Bh
-Fg
-eW
-YF
-lY
-ZN
-uk
-BC
-iW
-uk
-vu
-MC
-XU
-tl
-sr
-TD
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+axS
+mvk
+aPq
+aBO
+aBG
+aeZ
+axS
+aSd
+aSd
+aSd
+aSd
+aSd
+axS
+axS
+axS
+axS
+axS
+aSd
+aSd
+aSd
+aSd
+aSd
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aHZ
+aoc
+aoc
+ahk
+aoc
+aoc
+abk
+amq
+aLD
+aIv
+adz
+aIf
+aIf
+aca
+aIf
+aIf
+adz
+aDR
+ayX
+aTl
+adz
+aid
+aid
+aKi
+aid
+aid
+adz
+aLj
+aEl
+aDz
+adz
+aiy
+aiy
+aGo
+aiy
+aiy
+adz
+ams
+ayX
+anU
+adz
+aXa
+aXa
+aGE
+aXa
+aXa
+adz
+aEG
+aEG
+aEG
+adz
+aTV
+aTV
+aNl
+aTV
+aTV
+adz
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(69,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-HZ
-oK
-NU
-pI
-Ot
-Ck
-Ot
-Ba
-qE
-JR
-do
-NQ
-ZE
-AQ
-nP
-nS
-ip
-eW
-nj
-uk
-fK
-Cc
-MZ
-al
-pU
-QA
-QK
-eW
-uF
-xi
-TD
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+axS
+mvk
+oZQ
+aBO
+aBG
+aeZ
+axS
+aSd
+aSd
+aSd
+aSd
+aSd
+axS
+aGK
+aGK
+aGK
+axS
+aSd
+aSd
+aSd
+aSd
+aSd
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+alL
+agY
+aUo
+agY
+aqU
+akb
+age
+aPn
+age
+adz
+ajH
+aey
+asm
+agY
+bEj
+adz
+adz
+adz
+adz
+adz
+aIG
+aey
+aVy
+agY
+agY
+adz
+aQk
+aCp
+auT
+adz
+aAi
+agY
+asm
+agY
+aey
+adz
+adz
+adz
+adz
+adz
+aGt
+aey
+asm
+agY
+aKF
+adz
+adz
+adz
+adz
+adz
+aGt
+agY
+aFI
+aey
+aKF
+adz
+adz
+adz
+adz
+adz
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(70,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-HZ
-CX
-gQ
-qk
-Cv
-au
-Cv
-qk
-PY
-iF
-do
-Vu
-Jk
-pl
-wJ
-Pu
-YZ
-eW
-vP
-dX
-cj
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+axS
+ayG
+atE
+kKs
+atE
+aPE
+axS
+aSd
+aSd
+aSd
+aSd
+aSd
+axS
+aNc
+aGK
+aTi
+axS
+aSd
+aSd
+aSd
+aSd
+aSd
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+adz
+acS
+amm
+alu
+aJp
+aIN
+aYN
+aST
+afu
+aGS
+aST
+aST
+aUd
+aST
+asy
+aST
+aXD
+aST
+aST
+asy
+aMw
+aST
+aBz
+aJp
+amh
+alu
+acT
+aST
+aST
+asy
+aST
+aST
+ajd
+aEf
+aTx
+aEf
+awx
+aST
+aST
+asy
+aST
+aST
+atA
+alu
+amh
+alu
+acT
+aST
+aST
+asy
+afu
+afu
+aBz
+aUl
+amh
+aAB
+acT
+aST
+aST
+asy
+aST
+afu
+aBz
+alu
+aKa
+akb
+adz
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(71,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-HZ
-CX
-gQ
-HY
-wQ
-ga
-wQ
-Yg
-Gd
-HE
-do
-rP
-rP
-rP
-rP
-rP
-rP
-TD
-dz
-dz
-dz
-dz
-fP
-oy
-fP
-kb
-fP
-TU
-fP
-dz
-AY
-dz
-lp
-oy
-nE
-kb
-pa
-TU
-nE
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+axS
+axS
+axS
+axS
+axS
+axS
+axS
+axS
+axS
+axS
+axS
+axS
+axS
+aGK
+aGK
+aGK
+axS
+axS
+axS
+axS
+axS
+axS
+axS
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+aHu
+aHu
+aqL
+aWa
+aRF
+aWa
+aaZ
+azD
+axE
+ayD
+axx
+apv
+aXf
+aJg
+aLF
+aJg
+asj
+aHn
+aMO
+atH
+aMO
+aKN
+alK
+aMO
+aMO
+aUD
+anf
+abJ
+aUD
+acw
+aUD
+aTA
+aos
+aDz
+aCp
+azL
+aJh
+aDm
+aDm
+amb
+aJi
+aJi
+aAd
+aQY
+aWa
+aWa
+abf
+aJi
+aJi
+amb
+aDm
+aDm
+atf
+aWa
+aWa
+aHu
+aZM
+aqS
+aJi
+amb
+aDm
+atf
+aWa
+aWa
+alu
+alu
+adz
+adz
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(72,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-HZ
-bk
-gn
-et
-wQ
-ga
-wQ
-Um
-gn
-bk
-kb
-Zc
-UA
-JL
-cZ
-vx
-yF
-yb
-jz
-dz
-AY
-dz
-Ef
-ki
-Ef
-kb
-Ef
-jY
-QB
-dz
-AY
-dz
-Ef
-jY
-Ef
-kb
-Ef
-jY
-QB
-dz
-AY
-dz
-fE
-jC
-cZ
-VD
-yx
-jC
-jT
-dz
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aDh
+aDh
+aDh
+aDh
+aDh
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+ajA
+alK
+aNP
+aOA
+aMO
+azQ
+aFf
+aWa
+aWa
+afU
+axj
+aor
+aZC
+aVD
+akk
+aVD
+aTz
+aWE
+aES
+avq
+aES
+aVY
+aYE
+aES
+aES
+aES
+akm
+aYE
+aES
+avq
+aES
+aVY
+aJa
+aYh
+aIW
+auP
+aou
+azN
+azN
+aqp
+azN
+azN
+aWV
+aGX
+aXS
+aXS
+aTu
+azN
+azN
+aqp
+azN
+azN
+afB
+azZ
+aXS
+aXS
+aGX
+aaR
+azN
+aqp
+aXs
+afB
+acD
+ajs
+aWa
+anV
+akb
+adz
+adz
+adz
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(73,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-HZ
-zk
-Ua
-QJ
-Cv
-ga
-wQ
-oI
-Dc
-bZ
-kb
-cy
-wm
-Bg
-bC
-jY
-tK
-xy
-fi
-dz
-AY
-dz
-xI
-yB
-cI
-yB
-yB
-yB
-pz
-dz
-AY
-dz
-xI
-cI
-yB
-yB
-yB
-yB
-pz
-dz
-AY
-dz
-OZ
-Mr
-BQ
-VD
-tK
-xy
-wH
-dz
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+axH
+aeQ
+aoN
+aVr
+azS
+aPk
+aBY
+aEB
+aVD
+axu
+aWl
+ajZ
+aFf
+aHu
+aWa
+afU
+aMq
+aor
+akx
+arL
+aXe
+aVD
+aRX
+aOR
+azF
+azF
+azF
+aCR
+aQl
+aRw
+aRw
+azF
+agy
+aQl
+azF
+azF
+azF
+aCR
+aeX
+arq
+ayl
+aZa
+aCl
+agT
+agT
+agT
+agT
+agT
+aFj
+alt
+atW
+aHu
+aSK
+agT
+agT
+agT
+agT
+agT
+aFj
+aWa
+aWa
+aWa
+aWa
+aSK
+agT
+agT
+agT
+aIT
+abf
+adr
+atf
+ait
+aUF
+aSA
+aBg
+agC
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(74,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-HZ
-CX
-jh
-qk
-wQ
-MG
-Cv
-qk
-Dc
-ja
-kb
-dz
-IL
-Ha
-XO
-kG
-QL
-Ea
-Ea
-dz
-AY
-dz
-jM
-cG
-VD
-wi
-VD
-cG
-jI
-dz
-AY
-dz
-xV
-cG
-jY
-cG
-VD
-cG
-OD
-dz
-AY
-dz
-NR
-JG
-Vo
-kG
-QL
-JG
-JG
-dz
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+axH
+axH
+aJz
+aVr
+aEF
+aPk
+abA
+aan
+aRB
+aMz
+aMz
+ajZ
+aFf
+awA
+amu
+abw
+aYR
+aFH
+agc
+asB
+asB
+asB
+aJl
+aFF
+adq
+adq
+aPC
+afW
+aKv
+aPC
+aPC
+adq
+aYB
+aKv
+aPC
+aPC
+aPC
+aYl
+aWa
+aWa
+aKV
+aHu
+aWa
+aqA
+azb
+asY
+asY
+asY
+asY
+azb
+asY
+asY
+asY
+anL
+asY
+asY
+adp
+aCO
+aBm
+asY
+alC
+azb
+azb
+asY
+asY
+asY
+asY
+aSM
+aRe
+aIU
+aor
+ait
+art
+aSA
+aBg
+agC
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(75,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-HZ
-oK
-pd
-Jx
-Ot
-aP
-Ot
-mI
-Rh
-JM
-kb
-im
-zt
-Au
-gw
-LX
-Lu
-tb
-wH
-dz
-AY
-dz
-za
-cG
-VD
-jQ
-jY
-cG
-cR
-dz
-AY
-dz
-za
-cG
-jY
-wi
-Xe
-wi
-tt
-dz
-AY
-dz
-Df
-Bg
-Ij
-RG
-Lu
-xy
-Ef
-dz
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+aMP
+akg
+ana
+aVr
+aEF
+aPk
+aWa
+adU
+aaT
+aVD
+aWl
+ajZ
+aCt
+aOQ
+abs
+aPA
+aGF
+azl
+axD
+axb
+aGF
+ahb
+axD
+axb
+azO
+avL
+aSj
+axb
+aGF
+ahb
+axD
+aPA
+aGF
+ahb
+aSj
+aPA
+axn
+acB
+aWa
+aWa
+ami
+aWa
+aHu
+aFG
+aJe
+alu
+aKa
+alu
+alu
+alu
+alu
+aKa
+alu
+alu
+alu
+aJe
+alu
+aKa
+aKa
+aKa
+alu
+alu
+alu
+alu
+aKa
+alu
+aJe
+acB
+aRe
+agv
+aXL
+aWP
+ajX
+adD
+aSS
+aCe
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(76,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-HZ
-HZ
-kn
-Ia
-ur
-rl
-IX
-gK
-fZ
-bk
-kb
-dz
-Db
-sa
-xA
-Gg
-WU
-oX
-Nv
-dz
-AY
-dz
-KB
-th
-bE
-uD
-YP
-YP
-YT
-dz
-AY
-dz
-MV
-YP
-YP
-uD
-YP
-th
-YT
-dz
-AY
-dz
-cp
-CN
-FS
-sz
-Ur
-Ea
-Nv
-dz
-EG
-EG
-dz
-sY
-sY
-DE
-sY
-sY
-dz
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+aHG
+aiu
+aZH
+aGh
+adG
+aGO
+aDM
+adK
+aJv
+aSF
+aHI
+abK
+aCt
+aOQ
+ayA
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ahc
+aiG
+aWa
+aWa
+aME
+aWa
+aMz
+aos
+alu
+abX
+aSq
+aSq
+awb
+aSq
+aSq
+aSq
+aSq
+aSq
+aSq
+aSq
+aSq
+aSq
+aSq
+aSq
+aSq
+aSq
+aSq
+aSq
+awb
+aEp
+alu
+acB
+aRe
+aIU
+aor
+ait
+art
+aSA
+aBg
+agC
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(77,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-HZ
-cF
-vs
-sI
-vs
-DL
-bk
-kb
-kb
-dz
-dz
-Sn
-fN
-EA
-fN
-fN
-dz
-dz
-AY
-dz
-dz
-Sn
-fN
-EA
-fN
-fN
-dz
-dz
-dz
-dz
-dz
-Sn
-fN
-EA
-cl
-cl
-dz
-dz
-AY
-dz
-dz
-cl
-cl
-EA
-fN
-fN
-dz
-dz
-EG
-EG
-dz
-fN
-fN
-EA
-fN
-fN
-dz
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+aRf
+axH
+aPB
+aas
+azS
+amf
+aSw
+aWa
+aRm
+aHu
+ayn
+aWa
+aFf
+aOQ
+aMi
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+aDy
+aiG
+aHu
+axg
+asw
+aWa
+aHu
+aos
+aKa
+aRR
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ahp
+azz
+acB
+aSK
+axk
+aFj
+ait
+art
+aSA
+aBg
+agC
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(78,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-HZ
-sQ
-sQ
-Lt
-sQ
-sQ
-bk
-TJ
-LD
-Iv
-dz
-wX
-wX
-dO
-wX
-wX
-dz
-AY
-AY
-AY
-dz
-kX
-kX
-hO
-kX
-kX
-dz
-sp
-jj
-ud
-dz
-vk
-vk
-mt
-vk
-vk
-dz
-AY
-AY
-AY
-dz
-FJ
-FJ
-Ol
-FJ
-FJ
-dz
-EG
-EG
-EG
-dz
-eY
-eY
-aD
-eY
-eY
-dz
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+arM
+ani
+aWa
+aHu
+aWa
+aoR
+atZ
+aOQ
+aox
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+anx
+aLW
+aMO
+aUD
+aSJ
+aUD
+aUD
+apJ
+aKa
+aRR
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+anN
+als
+aHP
+aPw
+aMl
+aWa
+awo
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(79,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-lL
-fM
-Uo
-fM
-PI
-kb
-nT
-XF
-nT
-dz
-jH
-ey
-JC
-fM
-FU
-dz
-dz
-dz
-dz
-dz
-Wu
-ey
-Vy
-fM
-fM
-dz
-Qk
-Cp
-rH
-dz
-Ai
-fM
-JC
-fM
-ey
-dz
-dz
-dz
-dz
-dz
-Xn
-ey
-JC
-fM
-IO
-dz
-dz
-dz
-dz
-dz
-Xn
-fM
-VS
-ey
-IO
-dz
-dz
-dz
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+atb
+axa
+aBg
+alK
+aUD
+aTw
+aMO
+aKN
+aWa
+aas
+aKI
+aPk
+aOx
+arC
+ahR
+aUD
+aUD
+aTA
+aFf
+aOQ
+abT
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+aUR
+aAn
+aWl
+abR
+abR
+abR
+aVD
+aOY
+aKa
+aRR
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+aLm
+aKa
+acB
+abf
+adr
+aTA
+ait
+art
+aql
+amf
+abJ
+aMO
+aTw
+aUD
+aTA
+atb
+axa
+aBg
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(80,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-dz
-aH
-vy
-lu
-Jp
-le
-qt
-ST
-TL
-wg
-FC
-FC
-PF
-ST
-sy
-ST
-XD
-ST
-ST
-sy
-Mw
-ST
-Bz
-vg
-Jp
-vg
-cT
-ST
-ST
-sy
-ST
-ST
-jd
-Ef
-xc
-Ef
-wx
-ST
-ST
-sy
-ST
-ST
-tA
-vg
-lu
-vg
-cT
-ST
-ST
-sy
-Qt
-Qt
-Bz
-Nt
-Jp
-nO
-cT
-ST
-ST
-sy
-ST
-Qt
-ee
-kb
-dz
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+atb
+axa
+aoV
+ayU
+arE
+aic
+aRU
+aVt
+acD
+aux
+agd
+aln
+aen
+axU
+axo
+aEu
+aEu
+aNL
+aKG
+alE
+ayA
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+aOC
+aOd
+abR
+aUb
+axs
+awT
+abR
+aJj
+alu
+aRR
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+aLm
+alu
+aiG
+aRe
+afA
+agy
+aTo
+aDw
+arw
+abH
+awZ
+aRU
+aRU
+aRU
+aVt
+ajB
+axa
+aBg
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(81,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-cE
-cE
-qL
-Wa
-RF
-Wa
-aZ
-zD
-Wp
-KR
-yT
-yT
-AL
-bq
-QN
-bq
-WY
-DM
-cE
-Ws
-cE
-cE
-cE
-cE
-cE
-Wa
-II
-cE
-Wa
-Sw
-Wa
-Wa
-os
-QB
-Cp
-zL
-qh
-sY
-sY
-bg
-Xd
-Xd
-Oj
-QY
-Wa
-Wa
-Rb
-Xd
-Xd
-bg
-sY
-sY
-SM
-Wa
-Wa
-cE
-II
-hC
-Xd
-bg
-sY
-SM
-lu
-lu
-dz
-dz
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+atb
+axa
+avM
+aEC
+aMz
+aEw
+aMz
+ajZ
+aWa
+aas
+aKI
+amf
+aOx
+avV
+aRm
+aMz
+aMz
+ajZ
+aFf
+aOQ
+aBi
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+aED
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+amQ
+aUM
+abR
+aFz
+ala
+aHb
+abR
+aJj
+aJe
+aRR
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+aQa
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+aLm
+aJe
+aiG
+aRe
+agv
+aVY
+aWP
+ajX
+aVm
+amA
+are
+aWN
+aCT
+aRm
+aYz
+atb
+axa
+aBg
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(82,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-tT
-cE
-pN
-OJ
-cE
-Wa
-Ff
-Wa
-os
-hy
-OL
-lu
-fY
-VD
-hv
-VD
-Cn
-dS
-ES
-vq
-ES
-zD
-zD
-ES
-ES
-ES
-Kp
-zD
-ES
-vq
-ES
-zD
-Ja
-eD
-Ek
-Ig
-TI
-ES
-ES
-vq
-ES
-ES
-aX
-Kp
-zD
-zD
-uI
-ES
-ES
-vq
-ES
-ES
-vo
-lj
-zD
-zD
-Kp
-Ja
-ES
-vq
-Id
-vo
-DM
-SN
-kb
-dz
-dz
-dz
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+atb
+axa
+aoV
+awZ
+aRU
+arE
+arE
+aVt
+aNw
+aux
+aBL
+aju
+atG
+aLZ
+aky
+aEu
+aEu
+aNL
+aKG
+alE
+aae
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+anx
+aUM
+abR
+abV
+aom
+alx
+abR
+aOY
+alu
+aRR
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+aLm
+alu
+acB
+aRe
+arX
+agy
+aTo
+aaz
+arw
+abH
+ayU
+arE
+arE
+arE
+avd
+aBj
+axa
+aBg
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(83,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-ni
-Pi
-NJ
-SU
-zS
-MR
-Wa
-aB
-Wa
-sO
-cE
-Wa
-Ff
-cE
-os
-hy
-KO
-lu
-TK
-ys
-Xe
-VD
-xP
-vn
-zF
-zF
-zF
-NF
-NF
-fe
-fe
-zF
-VM
-NF
-zF
-zF
-zF
-NF
-td
-Mt
-Oa
-Xv
-Xw
-WT
-WT
-WT
-WT
-WT
-bn
-UW
-WB
-cE
-iw
-WT
-WT
-WT
-WT
-WT
-bn
-Wa
-Wa
-Wa
-Wa
-iw
-WT
-WT
-WT
-JO
-FE
-Ke
-UF
-zS
-Bg
-gC
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+atb
+axa
+aBg
+aKX
+aJv
+aWj
+aJv
+aRV
+aWa
+aas
+aKI
+aPk
+aSw
+aKX
+aMe
+aHI
+aHI
+abK
+aFf
+aOQ
+abT
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+aZL
+aOd
+aVD
+abR
+abR
+abR
+aVD
+aFG
+alu
+aRR
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+aLm
+alu
+acB
+aSK
+axk
+abK
+ait
+atb
+aql
+amf
+aKX
+aHI
+atw
+aHI
+aRV
+art
+axa
+aBg
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(84,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-ni
-wG
-Hi
-SU
-ZA
-MR
-cE
-va
-Ya
-Wa
-Wa
-Wa
-Ff
-WA
-gs
-Se
-gA
-hU
-QO
-PN
-PN
-PN
-bj
-FV
-Xd
-Xd
-sY
-sY
-sY
-sY
-sY
-Xd
-Xd
-sY
-sY
-sY
-sY
-SM
-Wa
-Wa
-KV
-cE
-Wa
-hC
-Xd
-sY
-sY
-sY
-sY
-Xd
-sY
-sY
-sY
-sY
-sY
-sY
-dp
-SO
-zm
-sY
-Km
-Xd
-Xd
-sY
-sY
-sY
-sY
-rv
-RG
-ol
-xy
-zS
-Bg
-gC
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+afQ
+aHu
+arJ
+aWa
+aHu
+axY
+anY
+aOQ
+ame
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ahc
+ahH
+aHI
+aHI
+aqF
+aHI
+aHI
+awq
+alu
+aRR
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+aLm
+aKa
+aGU
+azD
+aMl
+aWa
+awo
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(85,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-ni
-PW
-cW
-SU
-ZA
-MR
-Wa
-Rj
-Ra
-Wa
-cE
-Wa
-ul
-OQ
-wC
-PA
-GF
-QM
-Gn
-jL
-GF
-hb
-Gn
-jL
-sh
-sn
-Sj
-jL
-GF
-hb
-Gn
-PA
-GF
-hb
-Sj
-PA
-SH
-cB
-Wa
-Wa
-oW
-Wa
-cE
-nH
-xz
-lu
-cC
-lu
-lu
-lu
-lu
-cC
-lu
-lu
-lu
-ng
-lu
-cC
-cC
-cC
-lu
-lu
-lu
-lu
-cC
-lu
-xz
-Ve
-gZ
-Fn
-uo
-uv
-SS
-Ce
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+arW
+aEG
+adz
+aKq
+aTe
+aVg
+aas
+azS
+amf
+aSw
+aWa
+arJ
+aWa
+aMz
+aWa
+aFf
+aOQ
+aNV
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ahc
+acB
+aWa
+aWa
+azR
+aWa
+aWa
+aos
+alu
+aRR
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ahp
+alu
+acB
+abf
+adr
+atf
+aqs
+art
+aSA
+aBg
+agC
+aEG
+aEG
+aEG
+aIY
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(86,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-Wn
-lj
-lj
-bt
-Tg
-Gq
-DM
-cE
-cE
-Qj
-Wa
-Wa
-ul
-OQ
-yA
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-hc
-jN
-Wa
-Wa
-LO
-Wa
-Wa
-os
-lu
-bX
-Sq
-Sq
-MM
-Sq
-Sq
-Sq
-Sq
-Sq
-Sq
-cU
-Mj
-Sq
-Sq
-Sq
-Sq
-Sq
-Sq
-Sq
-MM
-Ep
-lu
-Ve
-RG
-ol
-xy
-zS
-Bg
-gC
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+ahI
+aiu
+aqe
+ahg
+auv
+aGO
+aWL
+abJ
+alb
+aRx
+aVP
+aTA
+aFf
+aOQ
+aae
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+ayX
+aDy
+aiG
+aMz
+aWa
+aiP
+aWa
+aHu
+aos
+alu
+amU
+aCh
+aCh
+aCh
+aCh
+aCh
+aCh
+aCh
+aCh
+aCh
+aCh
+aCh
+aCh
+aCh
+aCh
+aCh
+aCh
+aCh
+aCh
+aCh
+aZY
+alu
+acB
+aRe
+aIU
+aor
+ait
+atb
+aSA
+aBg
+agC
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(87,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-JJ
-Wa
-Wa
-as
-zS
-mf
-zY
-zD
-WO
-lj
-JW
-zD
-nY
-OQ
-Mi
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-Dy
-jN
-cE
-Tk
-Vn
-Wa
-cE
-os
-cC
-RR
-yX
-PV
-yX
-Rc
-fF
-yX
-ml
-tn
-MJ
-PK
-Mu
-hf
-Ie
-jx
-Dl
-yX
-mv
-yX
-yX
-gu
-zz
-jp
-Ky
-CD
-xy
-zS
-Bg
-gC
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+aMP
+aWa
+aWa
+aVr
+azS
+amf
+aWa
+aZG
+aVc
+akp
+awc
+ajc
+aFf
+aOQ
+aJN
+air
+aPl
+aaa
+abo
+air
+aVx
+aCr
+abo
+air
+aPl
+aiY
+aWm
+aNN
+aqT
+aAJ
+aWm
+aNN
+aPl
+aAJ
+aWm
+air
+aEc
+acB
+aWa
+aWa
+aFu
+aHu
+aWa
+aos
+aJe
+alu
+aKa
+aKa
+alu
+aKa
+alu
+alu
+alu
+alu
+alu
+aJe
+alu
+alu
+aKa
+alu
+alu
+alu
+aVj
+alu
+aKa
+alu
+aJe
+acB
+aRe
+agv
+aXL
+aWP
+ajX
+adD
+aSS
+aCe
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(88,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-HS
-Wa
-VD
-jY
-VD
-oR
-QC
-OQ
-Uj
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-nx
-cB
-cE
-Wa
-MH
-Wa
-Wa
-os
-cC
-RR
-yX
-yX
-yX
-Rc
-PZ
-eh
-dM
-QD
-WF
-qH
-RM
-CK
-KP
-KA
-RT
-ft
-hX
-Rc
-yX
-kz
-dh
-HP
-Md
-Ma
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+aVF
+aKD
+aNf
+aVr
+aEF
+aPk
+aWa
+aEC
+aaL
+aGc
+acq
+aLd
+aFf
+akd
+aJZ
+aJZ
+aZf
+aHB
+aCz
+avY
+aBo
+agO
+aHB
+ali
+aZf
+aZf
+aJZ
+aHB
+aiO
+aJZ
+aJZ
+aJZ
+aHB
+ali
+aJZ
+aJZ
+aJZ
+apk
+aWa
+aWa
+aWa
+aRm
+aWa
+axl
+aYA
+aYA
+aYA
+axQ
+aYA
+aYA
+axQ
+axQ
+axQ
+aYA
+aYA
+aYA
+aYA
+aYA
+axQ
+axQ
+aOk
+aEE
+aYA
+axQ
+axQ
+aYA
+aYA
+awn
+aRe
+aIU
+aor
+ait
+atb
+aSA
+aBg
+agC
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(89,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-Wa
-cE
-Wa
-Wa
-cE
-cE
-Wa
-as
-xa
-MR
-ZF
-Wa
-cE
-Wa
-Wa
-Wa
-Ff
-OQ
-bT
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-dY
-sM
-jY
-bR
-Qp
-bR
-VD
-os
-cC
-RR
-yX
-yX
-yX
-yX
-Tt
-kU
-fj
-Kh
-Qi
-lo
-Pd
-Pd
-bG
-mx
-de
-vm
-HO
-cY
-yX
-Lm
-cC
-Zs
-FE
-Ke
-xy
-xa
-mf
-Wa
-cE
-Wa
-Wa
-Wa
-Wa
-dz
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+axH
+axH
+axH
+aVr
+aEF
+aPk
+aWa
+aEC
+aph
+aLy
+aLy
+ajZ
+aFf
+avh
+azF
+azF
+aRw
+agy
+agP
+amJ
+anw
+amJ
+agy
+agP
+aRw
+aRw
+aRw
+aCR
+agP
+aRw
+aRw
+azF
+agy
+agP
+aRw
+aRw
+aRw
+agy
+aMx
+amu
+apx
+asY
+aZB
+aDm
+aJi
+aDm
+aJi
+aJi
+aAd
+aHu
+aMz
+aWa
+abf
+aDm
+aJi
+aJi
+aJi
+aDm
+atf
+aHu
+aRm
+aHu
+aWa
+aqS
+aDm
+aDm
+aDm
+atf
+aSK
+axk
+aFj
+ait
+aTp
+aSA
+aBg
+agC
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(90,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-Wa
-cE
-Wa
-Wa
-cE
-cE
-Wa
-as
-KJ
-MR
-ZF
-Wa
-cE
-Wa
-Wa
-cE
-Ff
-OQ
-yA
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-Vz
-cB
-bR
-Ni
-xs
-IA
-bR
-nH
-lu
-RR
-yX
-DN
-gL
-Zj
-BT
-iA
-nZ
-uC
-RO
-mV
-sH
-XZ
-ly
-sH
-Sc
-Rc
-yX
-yX
-yX
-Lm
-lu
-we
-RG
-ol
-xy
-xa
-mf
-Wa
-cE
-cE
-cE
-cE
-cE
-dz
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+adz
+adz
+adz
+anz
+adz
+adz
+aMP
+adK
+afJ
+aHI
+aHI
+aRV
+axw
+aYE
+aES
+arG
+aES
+aVY
+aVU
+aES
+akG
+aES
+aXq
+aYE
+aES
+akG
+aES
+aVY
+aYE
+aES
+aES
+aES
+aeg
+aYE
+aES
+akG
+aES
+aVY
+aSC
+aIg
+aIW
+auP
+aou
+azN
+azN
+ajb
+azN
+azN
+aWV
+aFR
+aXS
+azZ
+aaR
+aXs
+aXs
+ajb
+azN
+azN
+aWV
+aXS
+aXS
+aXS
+aus
+aTu
+azN
+ajb
+azN
+aWV
+acD
+aGN
+aWa
+aXg
+akb
+adz
+adz
+adz
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(91,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-cE
-Wa
-Wa
-Wa
-oR
-XS
-XS
-Wz
-wB
-Zk
-xJ
-zF
-GW
-zF
-zF
-VM
-HA
-lE
-VE
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-ED
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-lZ
-jN
-Qp
-io
-CI
-zg
-Qp
-nH
-xz
-RR
-yX
-aF
-Dp
-Nq
-EP
-EQ
-kj
-ML
-Aw
-mE
-sH
-sH
-sH
-sH
-eS
-yX
-yX
-yX
-yX
-Lm
-xz
-we
-gZ
-Fn
-uo
-oD
-mA
-lj
-lj
-DY
-cE
-cE
-Wa
-dz
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+aez
+aWa
+arJ
+aWa
+aWa
+aWa
+aKa
+aKX
+aHI
+aNh
+aHI
+abK
+aTC
+aHI
+aHI
+ako
+abK
+aKX
+aHI
+aNh
+aHI
+aRV
+aKX
+aHI
+aHI
+aHI
+aje
+aKX
+aJv
+akV
+aHI
+abK
+aFG
+atv
+aCp
+aqu
+amW
+agT
+aGC
+axG
+agT
+aZQ
+aFj
+aYf
+aHu
+aWa
+aSK
+agT
+agT
+aea
+agT
+agT
+aFj
+aWa
+aWa
+aWa
+aIc
+aSK
+agT
+aea
+agT
+aFj
+aWa
+aWa
+alu
+aLA
+adz
+adz
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(92,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-Wa
-Wa
-cE
-Wa
-Wa
-cE
-cE
-as
-xa
-mf
-ZF
-Wa
-rJ
-Wa
-Wa
-cE
-Ff
-OQ
-ae
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-nx
-jN
-bR
-Iq
-nK
-es
-bR
-os
-lu
-RR
-yX
-Vw
-kl
-CQ
-JH
-Mn
-cN
-Ab
-oF
-He
-sH
-TP
-sH
-sH
-eS
-yX
-yX
-yX
-yX
-Lm
-lu
-Ve
-RG
-ol
-tb
-xa
-mf
-cE
-Wa
-Wa
-Wa
-Wa
-Wa
-dz
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+adz
+aKa
+ahT
+alu
+aEH
+aRk
+aeE
+aIo
+aIo
+aIl
+aLL
+aIo
+axe
+axr
+aRk
+alu
+aeE
+aLL
+aLL
+aIl
+aLL
+aLL
+axe
+aJP
+alS
+aTh
+agq
+aLL
+aLL
+aIl
+aLL
+aLL
+avl
+ass
+anQ
+aDz
+aOW
+aQI
+aLL
+aIl
+aLL
+aLL
+aSR
+aeU
+alS
+alu
+agB
+aLL
+aLL
+aIl
+aLL
+aLL
+axe
+aKa
+aRk
+aEH
+agB
+aLL
+aLL
+aIl
+aLL
+aLL
+aSR
+alu
+alu
+akb
+adz
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(93,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-Wa
-Wa
-cE
-cE
-cE
-cE
-Wa
-as
-xa
-MR
-ZF
-Wa
-ZO
-Wa
-Wa
-Wa
-Ff
-OQ
-bT
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-ZL
-cB
-VD
-bR
-Qp
-bR
-VD
-nH
-lu
-RR
-yX
-yX
-yX
-yX
-Pe
-FQ
-BZ
-eP
-Vd
-mg
-jl
-jl
-SW
-FP
-YJ
-nR
-hu
-oJ
-yX
-Lm
-lu
-jp
-Ky
-CD
-tb
-xa
-mf
-Wa
-Wa
-Wa
-Wa
-cE
-cE
-dz
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+aGt
+aok
+abY
+aok
+aKF
+adz
+adz
+adz
+adz
+adz
+aGt
+aok
+aEA
+afN
+aKF
+adz
+adz
+adz
+adz
+adz
+aAc
+afN
+aEA
+afN
+aFU
+adz
+aIy
+akY
+abQ
+adz
+aJf
+aHC
+aEA
+aoQ
+aKF
+adz
+adz
+adz
+adz
+adz
+aMy
+aok
+aEA
+afN
+aKF
+adz
+adz
+adz
+adz
+adz
+aGt
+afN
+aEA
+aok
+aKF
+adz
+adz
+adz
+adz
+adz
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(94,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-HS
-cE
-HW
-VD
-jY
-xY
-nY
-OQ
-lM
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-hc
-cB
-Wa
-Wa
-qv
-Wa
-Wa
-os
-lu
-RR
-yX
-yX
-fF
-yX
-lO
-ld
-Oy
-uz
-Zv
-hd
-Sl
-HD
-NM
-XK
-Dl
-Rc
-jS
-sF
-yX
-Lm
-cC
-GU
-Md
-Ma
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+aTV
+aTV
+aNl
+aTV
+aTV
+adz
+aEG
+aEG
+aEG
+adz
+auQ
+auQ
+ahB
+auQ
+auQ
+adz
+aig
+ayX
+ayX
+adz
+abM
+abM
+aGi
+abM
+abM
+adz
+api
+aks
+adn
+adz
+aGJ
+aGJ
+aIp
+aGJ
+aGJ
+adz
+ayX
+ayX
+aOr
+adz
+ayV
+ayV
+asf
+ayV
+ayV
+adz
+aEG
+aEG
+aEG
+adz
+aTV
+aTV
+aNl
+aTV
+aTV
+adz
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(95,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-Gp
-Wa
-Wa
-as
-zS
-mf
-LJ
-Xd
-OF
-sY
-Xd
-sY
-hs
-OQ
-GV
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-hc
-cB
-Wa
-Wa
-tg
-Wa
-Wa
-os
-lu
-RR
-Rc
-yX
-yX
-yX
-yX
-yX
-hE
-Ux
-ZU
-yX
-fH
-hD
-No
-pX
-RT
-yX
-kf
-yX
-yX
-gu
-lu
-Zs
-FE
-yt
-xy
-zS
-Bg
-gC
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+aey
+aey
+aVy
+aey
+aey
+adz
+aEG
+aEG
+adz
+adz
+aey
+aey
+aVy
+aey
+aey
+adz
+adz
+adz
+adz
+adz
+aEg
+aey
+aVy
+aey
+aey
+adz
+adz
+adz
+adz
+adz
+agN
+agY
+aVy
+agY
+agY
+adz
+adz
+adz
+adz
+adz
+aey
+aey
+aVy
+aey
+aey
+adz
+adz
+aEG
+aEG
+adz
+aey
+aey
+aVy
+aey
+aey
+adz
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(96,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-CJ
-US
-MX
-hg
-uv
-Gq
-eJ
-jE
-iZ
-yK
-aE
-QB
-MB
-OQ
-ae
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-Dy
-jN
-Wa
-Wa
-nh
-Wa
-cE
-os
-lu
-mU
-Ch
-Ch
-Ch
-Ch
-Ch
-Ch
-Ch
-Ch
-Ch
-Ch
-Ch
-Ch
-Ch
-Ch
-Ch
-Ch
-Ch
-Ch
-Ch
-Zz
-lu
-Ve
-RG
-ol
-tb
-zS
-Bg
-gC
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+aAC
+aAC
+aku
+aAC
+aAC
+adz
+aEG
+aEG
+adz
+aws
+akt
+acZ
+aHU
+acP
+akt
+aEM
+adz
+adz
+aLR
+aYN
+afu
+afu
+asy
+afu
+aST
+ais
+aKa
+adz
+agX
+aSh
+afu
+aST
+asy
+afu
+aST
+aBz
+aKa
+adz
+adz
+aEM
+aIx
+aYQ
+auO
+acP
+akt
+aEM
+adz
+aEG
+aEG
+adz
+aAC
+aAC
+aku
+aAC
+aAC
+adz
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(97,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-ni
-iE
-ni
-SU
-zS
-mf
-os
-yh
-tC
-VD
-vG
-QB
-MB
-OQ
-Gz
-ir
-Pl
-MU
-qM
-ir
-Ho
-Cr
-qM
-ir
-Pl
-wr
-Wm
-eu
-Uz
-AJ
-Wm
-eu
-Pl
-AJ
-Wm
-ir
-lh
-cB
-Wa
-Wa
-PH
-cE
-Wa
-os
-xz
-lu
-cC
-cC
-lu
-cC
-lu
-lu
-lu
-lu
-lu
-CP
-lu
-lu
-cC
-lu
-lu
-lu
-Vj
-lu
-cC
-lu
-xz
-Ve
-gZ
-Fn
-uo
-uv
-SS
-gC
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+aEf
+aBg
+aBQ
+aRG
+aVb
+art
+aZy
+adz
+adz
+aUG
+aCs
+aqj
+aqj
+aBM
+axC
+aqj
+aRp
+aKa
+adz
+aLi
+axT
+aHJ
+arn
+adT
+aHJ
+aHJ
+aNd
+aKa
+adz
+adz
+aDz
+aBg
+aBQ
+aRG
+aVb
+art
+aqu
+adz
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(98,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-ni
-ni
-ni
-SU
-ZA
-MR
-os
-Yt
-Ng
-By
-Lr
-Ef
-MB
-Rn
-YA
-YA
-cm
-YA
-ZI
-sq
-EV
-sN
-YA
-cm
-cm
-cm
-YA
-YA
-YA
-YA
-YA
-YA
-YA
-cm
-YA
-YA
-YA
-wn
-Wa
-Wa
-Wa
-cE
-Wa
-xl
-YA
-YA
-YA
-cm
-YA
-YA
-cm
-cm
-cm
-YA
-YA
-YA
-YA
-YA
-cm
-cm
-XC
-EE
-YA
-cm
-cm
-YA
-YA
-tS
-RG
-ol
-tb
-zS
-Bg
-gC
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+aEa
+aRr
+atD
+avq
+aQL
+aDk
+aDk
+adz
+adz
+aXP
+aAz
+srv
+srv
+srv
+srv
+anr
+aSa
+ajG
+adz
+aef
+aqR
+aWX
+aWX
+aWX
+aWX
+aRy
+ady
+aaU
+adz
+adz
+aDk
+aDk
+arR
+avq
+aQL
+aDk
+aDk
+adz
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(99,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-ni
-ni
-ni
-SU
-ZA
-MR
-os
-dm
-he
-Jb
-Lr
-Ef
-MB
-zy
-zF
-zF
-fe
-VM
-VM
-mJ
-KK
-mJ
-VM
-VM
-fe
-fe
-fe
-NF
-VM
-fe
-fe
-zF
-VM
-VM
-fe
-fe
-fe
-VM
-KT
-mu
-WD
-sY
-Fs
-sY
-Xd
-sY
-Xd
-Xd
-Oj
-cE
-Wa
-Wa
-Rb
-sY
-Xd
-Xd
-Xd
-sY
-SM
-cE
-cE
-cE
-Wa
-hC
-sY
-sY
-sY
-Tm
-Ky
-CD
-Tp
-zS
-Bg
-gC
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+akC
+aBg
+aVf
+aVD
+aLu
+aZK
+aEf
+adz
+adz
+aUB
+aAz
+srv
+srv
+srv
+srv
+srv
+aSa
+aKa
+adz
+aKa
+aqR
+aWX
+aWX
+aWX
+aWX
+aWX
+ady
+aci
+adz
+adz
+azL
+aBg
+aBQ
+aVD
+aLu
+aZK
+azL
+adz
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(100,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-dz
-dz
-dz
-wY
-dz
-dz
-sZ
-ep
-iZ
-yK
-Lr
-QB
-cu
-zD
-ES
-qQ
-ES
-zD
-vS
-ES
-kG
-ES
-sg
-zD
-ES
-kG
-ES
-zD
-zD
-ES
-ES
-ES
-vS
-zD
-ES
-kG
-ES
-zD
-uI
-Ig
-Ek
-Ig
-TI
-ES
-ES
-kG
-ES
-ES
-aX
-vS
-zD
-lj
-Ja
-Id
-Id
-kG
-ES
-ES
-aX
-zD
-zD
-zD
-Sf
-uI
-ES
-kG
-ES
-aX
-WL
-Af
-kb
-dz
-dz
-dz
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+aAp
+aEa
+aFS
+auB
+apD
+aEa
+adP
+adz
+adz
+aKQ
+aAz
+srv
+srv
+srv
+srv
+srv
+aSa
+aGb
+adz
+aKa
+aqR
+aWX
+aWX
+aWX
+aWX
+aWX
+ady
+ajk
+adz
+adz
+aAp
+aEa
+aFS
+app
+aWU
+aEa
+aYC
+adz
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(101,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-gx
-YA
-Ob
-YA
-YA
-YA
-cf
-Wa
-Wa
-Sw
-Wa
-Wa
-Yf
-Wa
-Wa
-kr
-Wa
-Wa
-Wa
-Sw
-Wa
-cE
-Wa
-Wa
-Wa
-Wa
-qn
-Wa
-cE
-Ws
-Wa
-Wa
-nH
-tv
-Cp
-nq
-dR
-WT
-Xv
-gi
-WT
-ub
-bn
-Yf
-cE
-Wa
-iw
-WT
-WT
-Ky
-WT
-WT
-bn
-Wa
-Wa
-Wa
-ye
-iw
-WT
-Ky
-WT
-bn
-lu
-LA
-dz
-dz
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+aCU
+aby
+srv
+srv
+srv
+srv
+srv
+aRW
+aKa
+adz
+aKa
+azK
+aWX
+aWX
+aWX
+aWX
+aWX
+amG
+alu
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+aDh
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(102,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-dz
-cC
-HN
-lu
-EH
-Yx
-qq
-qw
-qw
-Il
-LL
-qw
-ba
-kP
-cC
-ny
-qq
-LL
-LL
-Il
-LL
-LL
-ba
-AD
-EH
-Yx
-gq
-LL
-LL
-Il
-LL
-LL
-vl
-ss
-vz
-QB
-OW
-Ge
-LL
-Il
-LL
-LL
-SR
-hW
-lu
-ny
-gB
-LL
-LL
-Il
-LL
-LL
-uS
-cC
-LH
-lu
-am
-LL
-LL
-Il
-LL
-LL
-SR
-kb
-dz
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+anv
+aHl
+srv
+srv
+srv
+srv
+srv
+ahF
+aKa
+adz
+aPO
+aqY
+aWX
+aWX
+aWX
+aWX
+aWX
+apY
+alu
+adz
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(103,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-Xn
-cl
-ta
-cl
-IO
-dz
-dz
-dz
-dz
-dz
-Xn
-cl
-EA
-fN
-IO
-dz
-dz
-dz
-dz
-dz
-Xn
-fN
-EA
-fN
-FU
-dz
-XT
-kY
-bQ
-dz
-bv
-vR
-EA
-Ns
-IO
-dz
-dz
-dz
-dz
-dz
-ds
-cl
-EA
-fN
-IO
-dz
-dz
-dz
-dz
-dz
-Xn
-fN
-EA
-cl
-IO
-dz
-dz
-dz
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+aKa
+aHl
+srv
+srv
+srv
+srv
+srv
+aIS
+aKa
+adz
+akc
+aqY
+aWX
+aWX
+aWX
+aWX
+aWX
+atj
+alu
+adz
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(104,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-zC
-zC
-rU
-zC
-zC
-dz
-EG
-EG
-EG
-dz
-tV
-tV
-tU
-tV
-tV
-dz
-EG
-EG
-EG
-dz
-Zn
-Zn
-bB
-Zn
-Zn
-dz
-vD
-iC
-af
-dz
-xR
-xR
-Qy
-xR
-xR
-dz
-EG
-EG
-EG
-dz
-zC
-zC
-rU
-zC
-zC
-dz
-EG
-EG
-EG
-dz
-zC
-zC
-rU
-zC
-zC
-dz
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+aKu
+aHl
+srv
+srv
+srv
+srv
+srv
+atk
+ajG
+adz
+akJ
+aqY
+aWX
+aWX
+aWX
+aWX
+aWX
+apY
+aPg
+adz
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(105,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-ey
-ey
-Vy
-ey
-ey
-dz
-EG
-EG
-EG
-dz
-ey
-ey
-Vy
-ey
-ey
-dz
-EG
-dz
-dz
-dz
-Eg
-ey
-Vy
-ey
-ey
-dz
-dz
-dz
-dz
-dz
-vv
-fM
-Vy
-fM
-fM
-dz
-dz
-dz
-EG
-dz
-ey
-ey
-Vy
-ey
-ey
-dz
-EG
-EG
-EG
-dz
-ey
-ey
-Vy
-ey
-ey
-dz
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+aKa
+aEW
+avT
+ayk
+ayk
+ayk
+avT
+aIP
+aKa
+adz
+aKa
+aVR
+aMW
+aZZ
+aZZ
+aZZ
+aZZ
+amy
+aKa
+adz
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(106,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-AC
-AC
-ku
-AC
-AC
-dz
-EG
-EG
-EG
-dz
-AC
-AC
-ku
-AC
-AC
-dz
-EG
-dz
-wy
-qt
-Qt
-Qt
-sy
-Qt
-ST
-ee
-cC
-dz
-Uk
-oS
-Qt
-ST
-sy
-Qt
-ST
-Bz
-cC
-dz
-EG
-dz
-AC
-AC
-ku
-AC
-AC
-dz
-EG
-EG
-EG
-dz
-AC
-AC
-ku
-AC
-AC
-dz
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+aco
+alu
+alu
+aKa
+alu
+aKa
+aKa
+aKa
+aKa
+adz
+aix
+aKa
+aKa
+aKa
+alu
+alu
+aKa
+aKa
+aKa
+adz
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(107,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-lu
-Uu
-DT
-DT
-gl
-wP
-DT
-iS
-cC
-dz
-cC
-eN
-YM
-Ut
-MN
-YM
-YM
-iS
-cC
-dz
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+adz
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(108,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-aj
-lv
-ki
-VD
-VD
-jY
-jY
-lF
-ts
-dz
-WG
-vp
-VD
-VD
-VD
-VD
-jY
-EJ
-JK
-dz
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(109,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-UB
-lv
-jY
-cC
-lu
-lu
-jY
-lF
-cC
-dz
-cC
-vp
-VD
-lu
-cC
-lu
-Xe
-EJ
-ci
-dz
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(110,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-KQ
-lv
-VD
-cC
-lu
-lu
-VD
-lF
-Gb
-dz
-cC
-vp
-VD
-lu
-cC
-lu
-jY
-EJ
-jk
-dz
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(111,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-QG
-lH
-VD
-cC
-lk
-cC
-VD
-gJ
-cC
-dz
-cC
-sc
-Xe
-cC
-lu
-lu
-jY
-ry
-lu
-dz
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(112,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-nv
-SX
-VD
-cC
-lu
-lu
-ew
-Ru
-cC
-dz
-rZ
-Cg
-VD
-cC
-lu
-lu
-jY
-uw
-lu
-dz
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(113,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-cC
-SX
-VD
-lu
-lu
-lu
-VD
-ym
-cC
-dz
-kc
-Cg
-VD
-lu
-lu
-lu
-jY
-qc
-lu
-dz
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(114,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-NW
-SX
-VD
-VD
-jY
-VD
-jY
-sG
-ts
-dz
-mX
-Cg
-VD
-VD
-VD
-jY
-jY
-uw
-Mv
-dz
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(115,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-cC
-Ug
-pt
-JT
-JT
-JT
-pT
-sl
-cC
-dz
-cC
-ZS
-BA
-uf
-uf
-uf
-uf
-CF
-cC
-dz
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(116,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-co
-lu
-lu
-cC
-lu
-cC
-cC
-cC
-cC
-dz
-OX
-cC
-cC
-cC
-lu
-lu
-cC
-cC
-cC
-dz
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(117,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-dz
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(118,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(119,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(120,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(121,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(122,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(123,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(124,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(125,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(126,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(127,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(128,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(129,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(130,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(131,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(132,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(133,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(134,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(135,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(136,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(137,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(138,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(139,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(140,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(141,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(142,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(143,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(144,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(145,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(146,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(147,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(148,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(149,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
(150,1,1) = {"
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
-EG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
+aEG
"}
diff --git a/maps/map_files/golden_arrow_classic/golden_arrow_classic.dmm b/maps/map_files/golden_arrow_classic/golden_arrow_classic.dmm
index ab5d87ee73..8b6ad0c427 100644
--- a/maps/map_files/golden_arrow_classic/golden_arrow_classic.dmm
+++ b/maps/map_files/golden_arrow_classic/golden_arrow_classic.dmm
@@ -533,7 +533,7 @@
pixel_x = 5;
pixel_y = 7
},
-/obj/item/storage/box/co2_knife{
+/obj/item/storage/box/loadout/co2_knife{
pixel_x = 3;
pixel_y = 13
},
@@ -613,7 +613,7 @@
/area/golden_arrow/prep_hallway)
"cV" = (
/obj/structure/surface/table/almayer,
-/obj/item/storage/box/guncase/pumpshotgun/special,
+/obj/item/storage/box/guncase/shotguncombat,
/turf/open/floor/almayer{
icon_state = "plate"
},
@@ -4989,7 +4989,7 @@
name = "spent snailshot";
layer = 2.7
},
-/obj/item/storage/box/guncase/pumpshotgun/special,
+/obj/item/storage/box/guncase/shotguncombat,
/turf/open/floor/almayer{
icon_state = "plate"
},
@@ -6236,7 +6236,6 @@
"Kp" = (
/obj/structure/largecrate/supply/motiondetectors,
/obj/structure/largecrate/supply/explosives/grenades/less{
- icon_state = "case";
pixel_y = 10;
pixel_x = 3
},
@@ -7126,9 +7125,7 @@
},
/area/golden_arrow/cryo_cells)
"Pm" = (
-/obj/structure/largecrate/supply/explosives/grenades/less{
- icon_state = "case"
- },
+/obj/structure/largecrate/supply/explosives/grenades/less,
/obj/structure/largecrate/supply/motiondetectors{
pixel_y = 10
},
diff --git a/maps/map_files/rover/rover.dmm b/maps/map_files/rover/rover.dmm
index e672e1b887..fcd21b1f3a 100644
--- a/maps/map_files/rover/rover.dmm
+++ b/maps/map_files/rover/rover.dmm
@@ -485,13 +485,13 @@
/area/golden_arrow/hangar)
"en" = (
/obj/structure/surface/rack,
-/obj/item/weapon/gun/shotgun/pump/special{
- pixel_y = 10
- },
/obj/structure/machinery/light{
dir = 8
},
-/obj/item/ammo_magazine/shotgun/buckshot/special,
+/obj/item/storage/box/guncase/shotguncombat,
+/obj/item/storage/box/guncase/shotguncombat{
+ pixel_y = 6
+ },
/turf/open/floor/almayer{
icon_state = "plate"
},
@@ -1136,6 +1136,7 @@
/obj/structure/machinery/light{
dir = 8
},
+/obj/item/weapon/gun/rifle/m4ra/pve,
/turf/open/floor/almayer{
icon_state = "plate"
},
@@ -4707,7 +4708,6 @@
/area/golden_arrow/dorms)
"Uc" = (
/obj/structure/surface/rack,
-/obj/item/weapon/gun/rifle/m4ra/pve,
/turf/open/floor/almayer{
icon_state = "plate"
},
diff --git a/maps/rover.json b/maps/rover.json
index 96c6e90b96..a379f03358 100644
--- a/maps/rover.json
+++ b/maps/rover.json
@@ -4,6 +4,6 @@
"map_file": "rover.dmm",
"webmap_url": "GoldenArrow",
"traits": [{"Marine Main Ship": true}],
- "nightmare_path": "maps/Nightmare/maps/golden_arrow/",
+ "nightmare_path": "maps/Nightmare/maps/rover/",
"platoon": "/datum/squad/marine/forecon"
}
diff --git a/maps/shuttles/dropship_cyclone.dmm b/maps/shuttles/dropship_cyclone.dmm
index 2a5ac47a67..2976d18827 100644
--- a/maps/shuttles/dropship_cyclone.dmm
+++ b/maps/shuttles/dropship_cyclone.dmm
@@ -334,9 +334,7 @@
/turf/template_noop,
/area/shuttle/cyclone)
"yA" = (
-/obj/structure/shuttle/part/cyclone/transparent{
- icon_state = "101"
- },
+/obj/structure/shuttle/part/cyclone/gunpod_prop,
/turf/template_noop,
/area/shuttle/cyclone)
"yP" = (
@@ -364,7 +362,7 @@
},
/area/shuttle/cyclone)
"zL" = (
-/obj/structure/shuttle/part/cyclone/transparent{
+/obj/structure/shuttle/part/cyclone/transparent/nosecone{
icon_state = "102"
},
/turf/template_noop,
@@ -578,7 +576,7 @@
/turf/template_noop,
/area/shuttle/cyclone)
"RR" = (
-/obj/structure/shuttle/part/cyclone/transparent{
+/obj/structure/shuttle/part/cyclone/transparent/nosecone{
icon_state = "100"
},
/turf/template_noop,
diff --git a/maps/shuttles/dropship_midway.dmm b/maps/shuttles/dropship_midway.dmm
index a1e0627e88..19582a7611 100644
--- a/maps/shuttles/dropship_midway.dmm
+++ b/maps/shuttles/dropship_midway.dmm
@@ -49,7 +49,7 @@
/turf/template_noop,
/area/shuttle/midway)
"go" = (
-/obj/structure/shuttle/part/midway/transparent{
+/obj/structure/shuttle/part/midway/transparent/nosecone{
icon_state = "102"
},
/turf/template_noop,
@@ -215,10 +215,6 @@
},
/area/shuttle/midway)
"tf" = (
-/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
- pixel_y = 26;
- pixel_x = -10
- },
/turf/closed/shuttle/midway/transparent{
icon_state = "97a"
},
@@ -350,7 +346,7 @@
},
/area/shuttle/midway)
"Cr" = (
-/obj/structure/shuttle/part/midway/transparent{
+/obj/structure/shuttle/part/midway/transparent/nosecone{
icon_state = "100"
},
/turf/template_noop,
@@ -528,9 +524,7 @@
},
/area/shuttle/midway)
"LY" = (
-/obj/structure/shuttle/part/midway/transparent{
- icon_state = "101"
- },
+/obj/structure/shuttle/part/midway/gunpod_prop,
/turf/template_noop,
/area/shuttle/midway)
"LZ" = (
diff --git a/maps/shuttles/dropship_tornado.dmm b/maps/shuttles/dropship_tornado.dmm
index 240420ff0d..4586189c82 100644
--- a/maps/shuttles/dropship_tornado.dmm
+++ b/maps/shuttles/dropship_tornado.dmm
@@ -174,9 +174,7 @@
},
/area/shuttle/tornado)
"hE" = (
-/obj/structure/shuttle/part/tornado/transparent{
- icon_state = "101"
- },
+/obj/structure/shuttle/part/tornado/gunpod_prop,
/turf/template_noop,
/area/shuttle/tornado)
"jP" = (
@@ -259,7 +257,7 @@
},
/area/shuttle/tornado)
"sx" = (
-/obj/structure/shuttle/part/tornado/transparent{
+/obj/structure/shuttle/part/tornado/transparent/nosecone{
icon_state = "100"
},
/turf/template_noop,
@@ -536,7 +534,7 @@
},
/area/shuttle/tornado)
"Pi" = (
-/obj/structure/shuttle/part/tornado/transparent{
+/obj/structure/shuttle/part/tornado/transparent/nosecone{
icon_state = "102"
},
/turf/template_noop,
diff --git a/maps/shuttles/dropship_tripoli.dmm b/maps/shuttles/dropship_tripoli.dmm
index 9caea2f03a..f068b75d85 100644
--- a/maps/shuttles/dropship_tripoli.dmm
+++ b/maps/shuttles/dropship_tripoli.dmm
@@ -320,7 +320,7 @@
/turf/template_noop,
/area/shuttle/tripoli)
"wL" = (
-/obj/structure/shuttle/part/tripoli{
+/obj/structure/shuttle/part/tripoli/transparent/nosecone{
icon_state = "100"
},
/turf/template_noop,
@@ -347,9 +347,7 @@
/turf/template_noop,
/area/shuttle/tripoli)
"yF" = (
-/obj/structure/shuttle/part/tripoli{
- icon_state = "101"
- },
+/obj/structure/shuttle/part/tripoli/gunpod_prop,
/turf/template_noop,
/area/shuttle/tripoli)
"zt" = (
@@ -461,7 +459,7 @@
/turf/template_noop,
/area/shuttle/tripoli)
"Fq" = (
-/obj/structure/shuttle/part/tripoli{
+/obj/structure/shuttle/part/tripoli/transparent/nosecone{
icon_state = "102"
},
/turf/template_noop,
diff --git a/maps/shuttles/dropship_typhoon.dmm b/maps/shuttles/dropship_typhoon.dmm
index 331bb09506..9e184dd846 100644
--- a/maps/shuttles/dropship_typhoon.dmm
+++ b/maps/shuttles/dropship_typhoon.dmm
@@ -105,7 +105,7 @@
},
/area/shuttle/tornado)
"jt" = (
-/obj/structure/shuttle/part/typhoon/transparent{
+/obj/structure/shuttle/part/typhoon/transparent/nosecone{
icon_state = "102"
},
/turf/template_noop,
@@ -172,9 +172,7 @@
/turf/template_noop,
/area/shuttle/tornado)
"qa" = (
-/obj/structure/shuttle/part/typhoon/transparent{
- icon_state = "101"
- },
+/obj/structure/shuttle/part/typhoon/gunpod_prop,
/turf/template_noop,
/area/shuttle/tornado)
"rb" = (
@@ -354,7 +352,7 @@
},
/area/shuttle/tornado)
"FO" = (
-/obj/structure/shuttle/part/typhoon/transparent{
+/obj/structure/shuttle/part/typhoon/transparent/nosecone{
icon_state = "100"
},
/turf/template_noop,
diff --git a/maps/shuttles/ert_shuttle_big.dmm b/maps/shuttles/ert_shuttle_big.dmm
index 96fb88a3ea..dcb88ddd2d 100644
--- a/maps/shuttles/ert_shuttle_big.dmm
+++ b/maps/shuttles/ert_shuttle_big.dmm
@@ -22,11 +22,11 @@
/area/shuttle/ert)
"cx" = (
/obj/structure/surface/table/almayer,
-/obj/item/weapon/gun/pistol/mod88{
+/obj/item/weapon/gun/pistol/vp70{
pixel_y = 4
},
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
-/obj/item/ammo_magazine/pistol/mod88/normalpoint,
+/obj/item/ammo_magazine/pistol/vp70,
+/obj/item/ammo_magazine/pistol/vp70,
/turf/open/floor/almayer{
icon_state = "plate"
},
diff --git a/maps/shuttles/garrow_cargo_elevator.dmm b/maps/shuttles/garrow_cargo_elevator.dmm
new file mode 100644
index 0000000000..e4a8c4734c
--- /dev/null
+++ b/maps/shuttles/garrow_cargo_elevator.dmm
@@ -0,0 +1,173 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/closed/shuttle/elevator,
+/area/golden_arrow/cargo_shuttle/elevator)
+"e" = (
+/turf/closed/shuttle/elevator{
+ dir = 5
+ },
+/area/golden_arrow/cargo_shuttle/elevator)
+"i" = (
+/turf/closed/shuttle/elevator{
+ dir = 4
+ },
+/area/golden_arrow/cargo_shuttle/elevator)
+"m" = (
+/turf/closed/shuttle/elevator/button/research,
+/area/golden_arrow/cargo_shuttle/elevator)
+"n" = (
+/turf/closed/shuttle/elevator{
+ dir = 6
+ },
+/area/golden_arrow/cargo_shuttle/elevator)
+"o" = (
+/obj/structure/machinery/light/small/blue{
+ dir = 4;
+ light_color = "#dae2ff";
+ light_power = 0.25
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/golden_arrow/cargo_shuttle/elevator)
+"q" = (
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/cargo_shuttle/elevator)
+"s" = (
+/obj/structure/machinery/light/small/blue{
+ dir = 4;
+ light_color = "#dae2ff";
+ light_power = 0.25
+ },
+/obj/structure/machinery/computer/shuttle/elevator_controller{
+ pixel_y = 32;
+ shuttleId = "garrow_cargo_elevator"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/golden_arrow/cargo_shuttle/elevator)
+"t" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/shuttle/elevator/grating,
+/area/golden_arrow/cargo_shuttle/elevator)
+"u" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/shuttle/elevator,
+/area/golden_arrow/cargo_shuttle/elevator)
+"A" = (
+/turf/open/shuttle/elevator,
+/area/golden_arrow/cargo_shuttle/elevator)
+"E" = (
+/obj/structure/machinery/door/poddoor/two_tile/four_tile/pivot{
+ base_icon_state = "hatch";
+ icon_state = "hatch1";
+ openspeed = 22;
+ name = "\improper Elevator Hatch";
+ dir = 4;
+ unacidable = 1;
+ id = "north"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/golden_arrow/cargo_shuttle/elevator)
+"H" = (
+/turf/open/shuttle/elevator/grating,
+/area/golden_arrow/cargo_shuttle/elevator)
+"R" = (
+/turf/closed/shuttle/elevator/freight,
+/area/golden_arrow/cargo_shuttle/elevator)
+"S" = (
+/obj/structure/machinery/light/small/blue{
+ dir = 8;
+ light_color = "#dae2ff";
+ light_power = 0.25
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/golden_arrow/cargo_shuttle/elevator)
+"T" = (
+/turf/closed/shuttle/elevator/gears,
+/area/golden_arrow/cargo_shuttle/elevator)
+"W" = (
+/obj/docking_port/mobile/trijent_elevator/shipmap_elevator/cargo{
+ elevator_network = "ArrowCargo"
+ },
+/turf/closed/shuttle/elevator{
+ dir = 10
+ },
+/area/golden_arrow/cargo_shuttle/elevator)
+"X" = (
+/turf/closed/shuttle/elevator{
+ dir = 9
+ },
+/area/golden_arrow/cargo_shuttle/elevator)
+
+(1,1,1) = {"
+X
+a
+a
+a
+a
+W
+"}
+(2,1,1) = {"
+i
+S
+t
+t
+S
+T
+"}
+(3,1,1) = {"
+E
+t
+A
+u
+t
+i
+"}
+(4,1,1) = {"
+q
+H
+A
+A
+H
+i
+"}
+(5,1,1) = {"
+q
+H
+A
+u
+H
+i
+"}
+(6,1,1) = {"
+q
+H
+A
+u
+t
+R
+"}
+(7,1,1) = {"
+m
+s
+t
+H
+o
+T
+"}
+(8,1,1) = {"
+e
+a
+a
+a
+a
+n
+"}
diff --git a/maps/shuttles/garrow_vehicle_elevator_one.dmm b/maps/shuttles/garrow_vehicle_elevator_one.dmm
new file mode 100644
index 0000000000..981582de0c
--- /dev/null
+++ b/maps/shuttles/garrow_vehicle_elevator_one.dmm
@@ -0,0 +1,78 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/vehicle_shuttle)
+"o" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/docking_port/mobile/trijent_elevator/shipmap_elevator,
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/vehicle_shuttle)
+"u" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/vehicle_shuttle)
+"A" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/vehicle_shuttle)
+"K" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/vehicle_shuttle)
+"T" = (
+/obj/effect/decal/cleanable/blood/oil,
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/vehicle_shuttle)
+
+(1,1,1) = {"
+K
+a
+a
+a
+o
+"}
+(2,1,1) = {"
+T
+u
+A
+A
+a
+"}
+(3,1,1) = {"
+a
+A
+A
+A
+K
+"}
+(4,1,1) = {"
+a
+A
+A
+u
+a
+"}
+(5,1,1) = {"
+a
+u
+u
+u
+a
+"}
+(6,1,1) = {"
+a
+A
+u
+u
+a
+"}
+(7,1,1) = {"
+a
+a
+a
+a
+a
+"}
diff --git a/maps/shuttles/garrow_vehicle_elevator_two.dmm b/maps/shuttles/garrow_vehicle_elevator_two.dmm
new file mode 100644
index 0000000000..31c0842964
--- /dev/null
+++ b/maps/shuttles/garrow_vehicle_elevator_two.dmm
@@ -0,0 +1,78 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/vehicle_shuttle/two)
+"o" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/docking_port/mobile/trijent_elevator/shipmap_elevator/two,
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/vehicle_shuttle/two)
+"u" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/vehicle_shuttle/two)
+"A" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/golden_arrow/vehicle_shuttle/two)
+"T" = (
+/obj/effect/decal/cleanable/blood/oil,
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/vehicle_shuttle/two)
+"Z" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/plating_catwalk,
+/area/golden_arrow/vehicle_shuttle/two)
+
+(1,1,1) = {"
+a
+a
+a
+a
+o
+"}
+(2,1,1) = {"
+a
+A
+u
+A
+T
+"}
+(3,1,1) = {"
+a
+A
+u
+A
+Z
+"}
+(4,1,1) = {"
+T
+u
+A
+A
+Z
+"}
+(5,1,1) = {"
+a
+u
+A
+A
+Z
+"}
+(6,1,1) = {"
+a
+A
+A
+A
+Z
+"}
+(7,1,1) = {"
+a
+a
+a
+Z
+Z
+"}
diff --git a/sound/soundscape/aicore/aicore_beep.ogg b/sound/soundscape/aicore/aicore_beep.ogg
new file mode 100644
index 0000000000..df622958c9
Binary files /dev/null and b/sound/soundscape/aicore/aicore_beep.ogg differ
diff --git a/sound/soundscape/aicore/aicore_ident.ogg b/sound/soundscape/aicore/aicore_ident.ogg
new file mode 100644
index 0000000000..af03f01a85
Binary files /dev/null and b/sound/soundscape/aicore/aicore_ident.ogg differ
diff --git a/sound/soundscape/aicore/aicore_rumble1.ogg b/sound/soundscape/aicore/aicore_rumble1.ogg
new file mode 100644
index 0000000000..63457ae3fb
Binary files /dev/null and b/sound/soundscape/aicore/aicore_rumble1.ogg differ
diff --git a/sound/soundscape/aicore/aicore_rumble2.ogg b/sound/soundscape/aicore/aicore_rumble2.ogg
new file mode 100644
index 0000000000..f2d4379cab
Binary files /dev/null and b/sound/soundscape/aicore/aicore_rumble2.ogg differ
diff --git a/sound/soundscape/aicore/aicore_rumble3.ogg b/sound/soundscape/aicore/aicore_rumble3.ogg
new file mode 100644
index 0000000000..695292ebff
Binary files /dev/null and b/sound/soundscape/aicore/aicore_rumble3.ogg differ
diff --git a/sound/soundscape/aicore/aicore_rumble4.ogg b/sound/soundscape/aicore/aicore_rumble4.ogg
new file mode 100644
index 0000000000..9bc291abd2
Binary files /dev/null and b/sound/soundscape/aicore/aicore_rumble4.ogg differ
diff --git a/sound/soundscape/aicore/aicore_rumble5.ogg b/sound/soundscape/aicore/aicore_rumble5.ogg
new file mode 100644
index 0000000000..83edd64957
Binary files /dev/null and b/sound/soundscape/aicore/aicore_rumble5.ogg differ
diff --git a/sound/soundscape/aicore/aicore_start.ogg b/sound/soundscape/aicore/aicore_start.ogg
new file mode 100644
index 0000000000..1d3d67c502
Binary files /dev/null and b/sound/soundscape/aicore/aicore_start.ogg differ
diff --git a/sound/soundscape/aicore/aicore_tone1.ogg b/sound/soundscape/aicore/aicore_tone1.ogg
new file mode 100644
index 0000000000..822d6e2ef4
Binary files /dev/null and b/sound/soundscape/aicore/aicore_tone1.ogg differ
diff --git a/sound/soundscape/aicore/aicore_tone10.ogg b/sound/soundscape/aicore/aicore_tone10.ogg
new file mode 100644
index 0000000000..b10903caeb
Binary files /dev/null and b/sound/soundscape/aicore/aicore_tone10.ogg differ
diff --git a/sound/soundscape/aicore/aicore_tone11.ogg b/sound/soundscape/aicore/aicore_tone11.ogg
new file mode 100644
index 0000000000..026cb21ca1
Binary files /dev/null and b/sound/soundscape/aicore/aicore_tone11.ogg differ
diff --git a/sound/soundscape/aicore/aicore_tone12.ogg b/sound/soundscape/aicore/aicore_tone12.ogg
new file mode 100644
index 0000000000..e61b59de67
Binary files /dev/null and b/sound/soundscape/aicore/aicore_tone12.ogg differ
diff --git a/sound/soundscape/aicore/aicore_tone13.ogg b/sound/soundscape/aicore/aicore_tone13.ogg
new file mode 100644
index 0000000000..08d119448a
Binary files /dev/null and b/sound/soundscape/aicore/aicore_tone13.ogg differ
diff --git a/sound/soundscape/aicore/aicore_tone14.ogg b/sound/soundscape/aicore/aicore_tone14.ogg
new file mode 100644
index 0000000000..602ece2934
Binary files /dev/null and b/sound/soundscape/aicore/aicore_tone14.ogg differ
diff --git a/sound/soundscape/aicore/aicore_tone15.ogg b/sound/soundscape/aicore/aicore_tone15.ogg
new file mode 100644
index 0000000000..db3264dafc
Binary files /dev/null and b/sound/soundscape/aicore/aicore_tone15.ogg differ
diff --git a/sound/soundscape/aicore/aicore_tone16.ogg b/sound/soundscape/aicore/aicore_tone16.ogg
new file mode 100644
index 0000000000..f31252290d
Binary files /dev/null and b/sound/soundscape/aicore/aicore_tone16.ogg differ
diff --git a/sound/soundscape/aicore/aicore_tone17.ogg b/sound/soundscape/aicore/aicore_tone17.ogg
new file mode 100644
index 0000000000..4622f011be
Binary files /dev/null and b/sound/soundscape/aicore/aicore_tone17.ogg differ
diff --git a/sound/soundscape/aicore/aicore_tone18.ogg b/sound/soundscape/aicore/aicore_tone18.ogg
new file mode 100644
index 0000000000..e62946f970
Binary files /dev/null and b/sound/soundscape/aicore/aicore_tone18.ogg differ
diff --git a/sound/soundscape/aicore/aicore_tone2.ogg b/sound/soundscape/aicore/aicore_tone2.ogg
new file mode 100644
index 0000000000..e92deabb63
Binary files /dev/null and b/sound/soundscape/aicore/aicore_tone2.ogg differ
diff --git a/sound/soundscape/aicore/aicore_tone3.ogg b/sound/soundscape/aicore/aicore_tone3.ogg
new file mode 100644
index 0000000000..7b3503600d
Binary files /dev/null and b/sound/soundscape/aicore/aicore_tone3.ogg differ
diff --git a/sound/soundscape/aicore/aicore_tone4.ogg b/sound/soundscape/aicore/aicore_tone4.ogg
new file mode 100644
index 0000000000..a417631960
Binary files /dev/null and b/sound/soundscape/aicore/aicore_tone4.ogg differ
diff --git a/sound/soundscape/aicore/aicore_tone5.ogg b/sound/soundscape/aicore/aicore_tone5.ogg
new file mode 100644
index 0000000000..050ea9d08f
Binary files /dev/null and b/sound/soundscape/aicore/aicore_tone5.ogg differ
diff --git a/sound/soundscape/aicore/aicore_tone6.ogg b/sound/soundscape/aicore/aicore_tone6.ogg
new file mode 100644
index 0000000000..79183f0b90
Binary files /dev/null and b/sound/soundscape/aicore/aicore_tone6.ogg differ
diff --git a/sound/soundscape/aicore/aicore_tone7.ogg b/sound/soundscape/aicore/aicore_tone7.ogg
new file mode 100644
index 0000000000..38414748a3
Binary files /dev/null and b/sound/soundscape/aicore/aicore_tone7.ogg differ
diff --git a/sound/soundscape/aicore/aicore_tone8.ogg b/sound/soundscape/aicore/aicore_tone8.ogg
new file mode 100644
index 0000000000..6254cd1c0c
Binary files /dev/null and b/sound/soundscape/aicore/aicore_tone8.ogg differ
diff --git a/sound/soundscape/aicore/aicore_tone9.ogg b/sound/soundscape/aicore/aicore_tone9.ogg
new file mode 100644
index 0000000000..346381db6f
Binary files /dev/null and b/sound/soundscape/aicore/aicore_tone9.ogg differ
diff --git a/sound/voice/deep_alien_screech.ogg b/sound/voice/deep_alien_screech.ogg
new file mode 100644
index 0000000000..994ac0abee
Binary files /dev/null and b/sound/voice/deep_alien_screech.ogg differ
diff --git a/sound/voice/deep_alien_screech2.ogg b/sound/voice/deep_alien_screech2.ogg
new file mode 100644
index 0000000000..1f13e8859d
Binary files /dev/null and b/sound/voice/deep_alien_screech2.ogg differ
diff --git a/sound/voice/king_background.ogg b/sound/voice/king_background.ogg
new file mode 100644
index 0000000000..4f37369868
Binary files /dev/null and b/sound/voice/king_background.ogg differ
diff --git a/sound/weapons/gun_88m4_reload.ogg b/sound/weapons/gun_vp70_reload.ogg
similarity index 100%
rename from sound/weapons/gun_88m4_reload.ogg
rename to sound/weapons/gun_vp70_reload.ogg
diff --git a/sound/weapons/gun_88m4_unload.ogg b/sound/weapons/gun_vp70_unload.ogg
similarity index 100%
rename from sound/weapons/gun_88m4_unload.ogg
rename to sound/weapons/gun_vp70_unload.ogg
diff --git a/sound/weapons/gun_88m4_v7.ogg b/sound/weapons/gun_vp70_v7.ogg
similarity index 100%
rename from sound/weapons/gun_88m4_v7.ogg
rename to sound/weapons/gun_vp70_v7.ogg
diff --git a/tgui/packages/tgui/interfaces/OverwatchConsole.jsx b/tgui/packages/tgui/interfaces/OverwatchConsole.jsx
index 0c2c4e801c..db9987529e 100644
--- a/tgui/packages/tgui/interfaces/OverwatchConsole.jsx
+++ b/tgui/packages/tgui/interfaces/OverwatchConsole.jsx
@@ -370,12 +370,13 @@ const SquadMonitor = (props) => {
let determine_status_color = (status) => {
let conscious = status.includes('Conscious');
+ let incapacitated = status.includes('Incapacitated');
let unconscious = status.includes('Unconscious');
let state_color = 'red';
if (conscious) {
state_color = 'green';
- } else if (unconscious) {
+ } else if (incapacitated || unconscious) {
state_color = 'yellow';
}
return state_color;