diff --git a/code/__DEFINES/cargo.dm b/code/__DEFINES/cargo.dm
index 85e5e9d2ac..251d642a85 100644
--- a/code/__DEFINES/cargo.dm
+++ b/code/__DEFINES/cargo.dm
@@ -43,12 +43,12 @@
GLOBAL_LIST_EMPTY(supplypod_loading_bays)
GLOBAL_LIST_INIT(podstyles, list(\
- list(POD_SHAPE_NORML, "pod", TRUE, "default", "yellow", RUBBLE_NORMAL, "supply pod", "A Nanotrasen supply drop pod."),\
- list(POD_SHAPE_NORML, "advpod", TRUE, "bluespace", "blue", RUBBLE_NORMAL, "bluespace supply pod" , "A Nanotrasen Bluespace supply pod. Teleports back to CentCom after delivery."),\
- list(POD_SHAPE_NORML, "advpod", TRUE, "centcom", "blue", RUBBLE_NORMAL, "\improper CentCom supply pod", "A Nanotrasen supply pod, this one has been marked with Central Command's designations. Teleports back to CentCom after delivery."),\
+ list(POD_SHAPE_NORML, "pod", TRUE, "default", "yellow", RUBBLE_NORMAL, "supply pod", "A GATO supply drop pod."),\
+ list(POD_SHAPE_NORML, "advpod", TRUE, "bluespace", "blue", RUBBLE_NORMAL, "bluespace supply pod" , "A GATO Bluespace supply pod. Teleports back to CentCom after delivery."),\
+ list(POD_SHAPE_NORML, "advpod", TRUE, "centcom", "blue", RUBBLE_NORMAL, "\improper CentCom supply pod", "A GATO supply pod, this one has been marked with Central Command's designations. Teleports back to CentCom after delivery."),\
list(POD_SHAPE_NORML, "darkpod", TRUE, "syndicate", "red", RUBBLE_NORMAL, "blood-red supply pod", "An intimidating supply pod, covered in the blood-red markings of the Syndicate. It's probably best to stand back from this."),\
- list(POD_SHAPE_NORML, "darkpod", TRUE, "deathsquad", "blue", RUBBLE_NORMAL, "\improper Deathsquad drop pod", "A Nanotrasen drop pod. This one has been marked the markings of Nanotrasen's elite strike team."),\
- list(POD_SHAPE_NORML, "pod", TRUE, "cultist", "red", RUBBLE_NORMAL, "bloody supply pod", "A Nanotrasen supply pod covered in scratch-marks, blood, and strange runes."),\
+ list(POD_SHAPE_NORML, "darkpod", TRUE, "deathsquad", "blue", RUBBLE_NORMAL, "\improper Deathsquad drop pod", "A GATO drop pod. This one has been marked the markings of GATO's elite strike team."),\
+ list(POD_SHAPE_NORML, "pod", TRUE, "cultist", "red", RUBBLE_NORMAL, "bloody supply pod", "A GATO supply pod covered in scratch-marks, blood, and strange runes."),\
list(POD_SHAPE_OTHER, "missile", FALSE, FALSE, FALSE, RUBBLE_THIN, "cruise missile", "A big ass missile that didn't seem to fully detonate. It was likely launched from some far-off deep space missile silo. There appears to be an auxillery payload hatch on the side, though manually opening it is likely impossible."),\
list(POD_SHAPE_OTHER, "smissile", FALSE, FALSE, FALSE, RUBBLE_THIN, "\improper Syndicate cruise missile", "A big ass, blood-red missile that didn't seem to fully detonate. It was likely launched from some deep space Syndicate missile silo. There appears to be an auxillery payload hatch on the side, though manually opening it is likely impossible."),\
list(POD_SHAPE_OTHER, "box", TRUE, FALSE, FALSE, RUBBLE_WIDE, "\improper Aussec supply crate", "An incredibly sturdy supply crate, designed to withstand orbital re-entry. Has 'Aussec Armory - 2532' engraved on the side."),\
diff --git a/code/__HELPERS/roundend.dm b/code/__HELPERS/roundend.dm
index d7d429281c..59e0c037c6 100644
--- a/code/__HELPERS/roundend.dm
+++ b/code/__HELPERS/roundend.dm
@@ -276,7 +276,7 @@
broadcastmessage += "[GLOB.round_end_notifiees.Join(", ")], "
- broadcastmessage += "[((broadcastmessage == "") ? "the" : "The")] current round has ended. Please standby for your shift interlude Nanotrasen News Network's report!\n"
+ broadcastmessage += "[((broadcastmessage == "") ? "the" : "The")] current round has ended. Please standby for your shift interlude GATO News Network's report!\n"
broadcastmessage += "```\n[send_news_report()]\n```"
if(CONFIG_GET(string/chat_reboot_role))
diff --git a/code/controllers/subsystem/shuttle.dm b/code/controllers/subsystem/shuttle.dm
index a130962bab..eabdd645bf 100644
--- a/code/controllers/subsystem/shuttle.dm
+++ b/code/controllers/subsystem/shuttle.dm
@@ -268,7 +268,7 @@ SUBSYSTEM_DEF(shuttle)
if(!admiral_message)
admiral_message = pick(GLOB.admiral_messages)
- var/intercepttext = "Nanotrasen Update: Request For Shuttle.
\
+ var/intercepttext = "GATO Update: Request For Shuttle.
\
To whom it may concern:
\
We have taken note of the situation upon [station_name()] and have come to the \
conclusion that it does not warrant the abandonment of the station.
\
diff --git a/code/controllers/subsystem/ticker.dm b/code/controllers/subsystem/ticker.dm
index 9e4ca0a6c0..32663e6fa0 100755
--- a/code/controllers/subsystem/ticker.dm
+++ b/code/controllers/subsystem/ticker.dm
@@ -560,7 +560,7 @@ SUBSYSTEM_DEF(ticker)
/datum/controller/subsystem/ticker/proc/send_news_report()
var/news_message
- var/news_source = "Nanotrasen News Network"
+ var/news_source = "GATO News Network"
switch(news_report)
if(NUKE_SYNDICATE_BASE)
news_message = "In a daring raid, the heroic crew of [station_name()] detonated a nuclear device in the heart of a terrorist base."
diff --git a/code/datums/brain_damage/severe.dm b/code/datums/brain_damage/severe.dm
index f5a46eb140..a35d8cbe6f 100644
--- a/code/datums/brain_damage/severe.dm
+++ b/code/datums/brain_damage/severe.dm
@@ -280,7 +280,7 @@
gain_text = "You feel odd, like you just forgot something important."
lose_text = "You feel like a weight was lifted from your mind."
random_gain = FALSE
- var/trigger_phrase = "Nanotrasen"
+ var/trigger_phrase = "GATO"
/datum/brain_trauma/severe/hypnotic_trigger/New(phrase)
..()
diff --git a/code/datums/ert.dm b/code/datums/ert.dm
index 4b4cce3794..3d981dd349 100644
--- a/code/datums/ert.dm
+++ b/code/datums/ert.dm
@@ -13,7 +13,7 @@
/datum/ert/New()
if (!polldesc)
- polldesc = "a Code [code] Nanotrasen Emergency Response Team"
+ polldesc = "a Code [code] GATO Emergency Response Team"
/datum/ert/blue
opendoors = FALSE
@@ -35,7 +35,7 @@
rename_team = "Deathsquad"
code = "Delta"
mission = "Leave no witnesses."
- polldesc = "an elite Nanotrasen Strike Team"
+ polldesc = "an elite GATO Strike Team"
/datum/ert/centcom_official
code = "Green"
@@ -54,7 +54,7 @@
leader_role = /datum/antagonist/ert/commander/inquisitor
rename_team = "Inquisition"
mission = "Destroy any traces of paranormal activity aboard the station."
- polldesc = "a Nanotrasen paranormal response team"
+ polldesc = "a GATO paranormal response team"
/datum/ert/greybois
code = "Green"
diff --git a/code/datums/ruins/space.dm b/code/datums/ruins/space.dm
index 7a57e50364..43dd40ac1f 100644
--- a/code/datums/ruins/space.dm
+++ b/code/datums/ruins/space.dm
@@ -34,7 +34,7 @@
id = "asteroid4"
suffix = "asteroid4.dmm"
name = "Asteroid 4"
- description = "Nanotrasen Escape Pods have a 100%* success rate, and a 99%* customer satisfaction rate. \
+ description = "GATO Escape Pods have a 100%* success rate, and a 99%* customer satisfaction rate. \
*Please note that these statistics, are taken from pods that have successfully docked with a recovery vessel."
/datum/map_template/ruin/space/asteroid5
@@ -95,7 +95,7 @@
id = "derelict6"
suffix = "derelict6.dmm"
name = "Derelict 6"
- description = "The hush-hush of Nanotrasen when it comes to stations seemingly vanishing off the radar is an interesting topic, theories of nuclear destruction float about while Nanotrasen \
+ description = "The hush-hush of GATO when it comes to stations seemingly vanishing off the radar is an interesting topic, theories of nuclear destruction float about while GATO \
flat-out denies said stations ever existing."
/datum/map_template/ruin/space/empty_shell
diff --git a/code/datums/shuttles.dm b/code/datums/shuttles.dm
index add0668950..4513711dc8 100644
--- a/code/datums/shuttles.dm
+++ b/code/datums/shuttles.dm
@@ -214,7 +214,7 @@
/datum/map_template/shuttle/emergency/asteroid
suffix = "asteroid"
name = "Asteroid Station Emergency Shuttle"
- description = "A respectable mid-sized shuttle that first saw service shuttling Nanotrasen crew to and from their asteroid belt embedded facilities."
+ description = "A respectable mid-sized shuttle that first saw service shuttling GATO crew to and from their asteroid belt embedded facilities."
credit_cost = 3000
/datum/map_template/shuttle/emergency/bar
@@ -257,7 +257,7 @@
/datum/map_template/shuttle/emergency/discoinferno
suffix = "discoinferno"
name = "Disco Inferno"
- description = "The glorious results of centuries of plasma research done by Nanotrasen employees. This is the reason why you are here. Get on and dance like you're on fire, burn baby burn!"
+ description = "The glorious results of centuries of plasma research done by GATO employees. This is the reason why you are here. Get on and dance like you're on fire, burn baby burn!"
admin_notes = "Flaming hot. The main area has a dance machine as well as plasma floor tiles that will be ignited by players every single time."
credit_cost = 10000
// can_be_bought = FALSE
@@ -416,13 +416,13 @@
/datum/map_template/shuttle/emergency/goon
suffix = "goon"
name = "NES Port"
- description = "The Nanotrasen Emergency Shuttle Port(NES Port for short) is a shuttle used at other less known Nanotrasen facilities and has a more open inside for larger crowds, but fewer onboard shuttle facilities."
+ description = "The GATO Emergency Shuttle Port(NES Port for short) is a shuttle used at other less known GATO facilities and has a more open inside for larger crowds, but fewer onboard shuttle facilities."
credit_cost = 500
// /datum/map_template/shuttle/emergency/rollerdome
// suffix = "rollerdome"
// name = "Uncle Pete's Rollerdome"
-// description = "Developed by a member of Nanotrasen's R&D crew that claims to have travelled from the year 2028.
+// description = "Developed by a member of GATO's R&D crew that claims to have travelled from the year 2028.
// He says this shuttle is based off an old entertainment complex from the 1990s, though our database has no records on anything pertaining to that decade."
// admin_notes = "ONLY NINETIES KIDS REMEMBER. Uses the fun balloon and drone from the Emergency Bar."
// credit_cost = 500 * 5
@@ -581,7 +581,7 @@
/datum/map_template/shuttle/emergency/cog
suffix = "cog"
name = "NES Classic"
- description = "A blast from the past! This recreation of the Nanotrasen Emergency Shuttle Port features the same focus on seating as the original, but on a slightly longer frame to better accommodate modern shuttle docks."
+ description = "A blast from the past! This recreation of the GATO Emergency Shuttle Port features the same focus on seating as the original, but on a slightly longer frame to better accommodate modern shuttle docks."
credit_cost = 750
/datum/map_template/shuttle/arrival/box
diff --git a/code/datums/station_traits/positive_traits.dm b/code/datums/station_traits/positive_traits.dm
index 94772966ee..fc7649a31d 100644
--- a/code/datums/station_traits/positive_traits.dm
+++ b/code/datums/station_traits/positive_traits.dm
@@ -93,7 +93,7 @@
/datum/station_trait/scarves/New()
. = ..()
report_message = pick(
- "Nanotrasen is experimenting with seeing if neck warmth improves employee morale.",
+ "GATO is experimenting with seeing if neck warmth improves employee morale.",
"After Space Fashion Week, scarves are the hot new accessory.",
"Everyone was simultaneously a little bit cold when they packed to go to the station.",
"The station is definitely not under attack by neck grappling aliens masquerading as wool. Definitely not.",
diff --git a/code/datums/traits/negative.dm b/code/datums/traits/negative.dm
index 6a68334c85..a7463c8f25 100644
--- a/code/datums/traits/negative.dm
+++ b/code/datums/traits/negative.dm
@@ -214,7 +214,7 @@ GLOBAL_LIST_EMPTY(family_heirlooms)
/datum/quirk/lightless
name = "Light Sensitivity"
- desc = "Bright lights irritate you. Your eyes start to water, your skin feels itchy against the photon radiation, and your hair gets dry and frizzy. Maybe it's a medical condition. If only Nanotrasen was more considerate of your needs..."
+ desc = "Bright lights irritate you. Your eyes start to water, your skin feels itchy against the photon radiation, and your hair gets dry and frizzy. Maybe it's a medical condition. If only GATO was more considerate of your needs..."
value = -1
gain_text = "Bright lights seem irritating."
lose_text = "Enlightening."
diff --git a/code/game/gamemodes/brother/traitor_bro.dm b/code/game/gamemodes/brother/traitor_bro.dm
index 6da31e41bb..4323210c3a 100644
--- a/code/game/gamemodes/brother/traitor_bro.dm
+++ b/code/game/gamemodes/brother/traitor_bro.dm
@@ -61,7 +61,7 @@
return ..()
/datum/game_mode/traitor/bros/generate_report()
- return "It's Syndicate recruiting season. Be alert for potential Syndicate infiltrators, but also watch out for disgruntled employees trying to defect. Unlike Nanotrasen, the Syndicate prides itself in teamwork and will only recruit pairs that share a brotherly trust."
+ return "It's Syndicate recruiting season. Be alert for potential Syndicate infiltrators, but also watch out for disgruntled employees trying to defect. Unlike GATO, the Syndicate prides itself in teamwork and will only recruit pairs that share a brotherly trust."
/datum/game_mode/proc/update_brother_icons_added(datum/mind/brother_mind)
var/datum/atom_hud/antag/brotherhud = GLOB.huds[ANTAG_HUD_BROTHER]
diff --git a/code/game/gamemodes/changeling/traitor_chan.dm b/code/game/gamemodes/changeling/traitor_chan.dm
index a21d6c676d..ff4bf91e85 100644
--- a/code/game/gamemodes/changeling/traitor_chan.dm
+++ b/code/game/gamemodes/changeling/traitor_chan.dm
@@ -80,6 +80,6 @@
..()
/datum/game_mode/traitor/changeling/generate_report()
- return "The Syndicate has started some experimental research regarding humanoid shapeshifting. There are rumors that this technology will be field tested on a Nanotrasen station \
+ return "The Syndicate has started some experimental research regarding humanoid shapeshifting. There are rumors that this technology will be field tested on a GATO station \
for infiltration purposes. Be advised that support personel may also be deployed to defend these shapeshifters. Trust nobody - suspect everybody. Do not announce this to the crew, \
as paranoia may spread and inhibit workplace efficiency."
diff --git a/code/game/gamemodes/devil/devil_game_mode.dm b/code/game/gamemodes/devil/devil_game_mode.dm
index 64de9f2097..2ff453caa8 100644
--- a/code/game/gamemodes/devil/devil_game_mode.dm
+++ b/code/game/gamemodes/devil/devil_game_mode.dm
@@ -58,7 +58,7 @@
return TRUE
/datum/game_mode/devil/generate_report()
- return "Infernal creatures have been seen nearby offering great boons in exchange for souls. This is considered theft against Nanotrasen, as all employment contracts contain a lien on the \
+ return "Infernal creatures have been seen nearby offering great boons in exchange for souls. This is considered theft against GATO, as all employment contracts contain a lien on the \
employee's soul. If anyone sells their soul in error, contact an attorney to overrule the sale. Be warned that if the devil purchases enough souls, a gateway to hell may open."
/datum/game_mode/devil/proc/post_setup_finalize(datum/mind/devil)
diff --git a/code/game/gamemodes/dynamic/dynamic.dm b/code/game/gamemodes/dynamic/dynamic.dm
index 450950e640..5c1b176009 100644
--- a/code/game/gamemodes/dynamic/dynamic.dm
+++ b/code/game/gamemodes/dynamic/dynamic.dm
@@ -263,19 +263,19 @@ GLOBAL_VAR_INIT(dynamic_forced_threat_level, -1)
if(0 to 19)
if(!current_players[CURRENT_LIVING_ANTAGS].len)
. += "Peaceful Waypoint
"
- . += "Your station orbits deep within controlled, core-sector systems and serves as a waypoint for routine traffic through Nanotrasen's trade empire. Due to the combination of high security, interstellar traffic, and low strategic value, it makes any direct threat of violence unlikely. Your primary enemies will be incompetence and bored crewmen: try to organize team-building events to keep staffers interested and productive."
+ . += "Your station orbits deep within controlled, core-sector systems and serves as a waypoint for routine traffic through GATO's trade empire. Due to the combination of high security, interstellar traffic, and low strategic value, it makes any direct threat of violence unlikely. Your primary enemies will be incompetence and bored crewmen: try to organize team-building events to keep staffers interested and productive."
else
. += "Core Territory
"
- . += "Your station orbits within reliably mundane, secure space. Although Nanotrasen has a firm grip on security in your region, the valuable resources and strategic position aboard your station make it a potential target for infiltrations. Monitor crew for non-loyal behavior, but expect a relatively tame shift free of large-scale destruction. We expect great things from your station."
+ . += "Your station orbits within reliably mundane, secure space. Although GATO has a firm grip on security in your region, the valuable resources and strategic position aboard your station make it a potential target for infiltrations. Monitor crew for non-loyal behavior, but expect a relatively tame shift free of large-scale destruction. We expect great things from your station."
if(20 to 39)
. += "Anomalous Exogeology
"
- . += "Although your station lies within what is generally considered Nanotrasen-controlled space, the course of its orbit has caused it to cross unusually close to exogeological features with anomalous readings. Although these features offer opportunities for our research department, it is known that these little understood readings are often correlated with increased activity from competing interstellar organizations and individuals, among them the Wizard Federation and Cult of the Geometer of Blood - all known competitors for Anomaly Type B sites. Exercise elevated caution."
+ . += "Although your station lies within what is generally considered GATO-controlled space, the course of its orbit has caused it to cross unusually close to exogeological features with anomalous readings. Although these features offer opportunities for our research department, it is known that these little understood readings are often correlated with increased activity from competing interstellar organizations and individuals, among them the Wizard Federation and Cult of the Geometer of Blood - all known competitors for Anomaly Type B sites. Exercise elevated caution."
if(40 to 65)
. += "Contested System
"
- . += "Your station's orbit passes along the edge of Nanotrasen's sphere of influence. While subversive elements remain the most likely threat against your station, hostile organizations are bolder here, where our grip is weaker. Exercise increased caution against elite Syndicate strike forces, or Executives forbid, some kind of ill-conceived unionizing attempt."
+ . += "Your station's orbit passes along the edge of GATO's sphere of influence. While subversive elements remain the most likely threat against your station, hostile organizations are bolder here, where our grip is weaker. Exercise increased caution against elite Syndicate strike forces, or Executives forbid, some kind of ill-conceived unionizing attempt."
if(66 to 79)
. += "Uncharted Space
"
- . += "Congratulations and thank you for participating in the NT 'Frontier' space program! Your station is actively orbiting a high value system far from the nearest support stations. Little is known about your region of space, and the opportunity to encounter the unknown invites greater glory. You are encouraged to elevate security as necessary to protect Nanotrasen assets."
+ . += "Congratulations and thank you for participating in the GT 'Frontier' space program! Your station is actively orbiting a high value system far from the nearest support stations. Little is known about your region of space, and the opportunity to encounter the unknown invites greater glory. You are encouraged to elevate security as necessary to protect GATO assets."
if(80 to 99)
. += "Black Orbit
"
. += "As part of a mandatory security protocol, we are required to inform you that as a result of your orbital pattern directly behind an astrological body (oriented from our nearest observatory), your station will be under decreased monitoring and support. It is anticipated that your extreme location and decreased surveillance could pose security risks. Avoid unnecessary risks and attempt to keep your station in one piece."
diff --git a/code/game/gamemodes/objective.dm b/code/game/gamemodes/objective.dm
index ab087dceb0..25a35750eb 100644
--- a/code/game/gamemodes/objective.dm
+++ b/code/game/gamemodes/objective.dm
@@ -417,8 +417,8 @@ If not set, defaults to check_completion instead. Set it. It's used by cryo.
/datum/objective/freedom
name = "freedom"
- explanation_text = "Don't get captured by nanotrasen."
- team_explanation_text = "Have all members of your team free of nanotrasen custody."
+ explanation_text = "Don't get captured by GATO."
+ team_explanation_text = "Have all members of your team free of GATO custody."
/datum/objective/freedom/check_completion()
var/list/datum/mind/owners = get_owners()
diff --git a/code/game/gamemodes/traitor/double_agents.dm b/code/game/gamemodes/traitor/double_agents.dm
index c64e508cef..59fc075ea2 100644
--- a/code/game/gamemodes/traitor/double_agents.dm
+++ b/code/game/gamemodes/traitor/double_agents.dm
@@ -11,14 +11,14 @@
recommended_enemies = 8
reroll_friendly = 0
chaos = 7
- traitor_name = "Nanotrasen Internal Affairs Agent"
+ traitor_name = "GATO Internal Affairs Agent"
antag_flag = ROLE_INTERNAL_AFFAIRS
traitors_possible = 10 //hard limit on traitors if scaling is turned off
num_modifier = 4 // Four additional traitors
antag_datum = /datum/antagonist/traitor/internal_affairs
- announce_text = "There are Nanotrasen Internal Affairs Agents trying to kill each other!\n\
+ announce_text = "There are GATO Internal Affairs Agents trying to kill each other!\n\
IAA: Eliminate your targets and protect yourself!\n\
Crew: Stop the IAA agents before they can cause too much mayhem."
@@ -79,5 +79,5 @@
/datum/game_mode/traitor/internal_affairs/generate_report()
- return "Nanotrasen denies any accusations of placing internal affairs agents onboard your station to eliminate inconvenient employees. Any further accusations against CentCom for such \
+ return "GATO denies any accusations of placing internal affairs agents onboard your station to eliminate inconvenient employees. Any further accusations against CentCom for such \
actions will be met with a conversation with an official internal affairs agent."
diff --git a/code/game/gamemodes/traitor/traitor.dm b/code/game/gamemodes/traitor/traitor.dm
index a46e4e90c8..4b566f8a08 100644
--- a/code/game/gamemodes/traitor/traitor.dm
+++ b/code/game/gamemodes/traitor/traitor.dm
@@ -97,4 +97,4 @@
/datum/game_mode/traitor/generate_report()
return "Although more specific threats are commonplace, you should always remain vigilant for Syndicate agents aboard your station. Syndicate communications have implied that many \
- Nanotrasen employees are Syndicate agents with hidden memories that may be activated at a moment's notice, so it's possible that these agents might not even know their positions."
+ GATO employees are Syndicate agents with hidden memories that may be activated at a moment's notice, so it's possible that these agents might not even know their positions."
diff --git a/code/game/machinery/computer/medical.dm b/code/game/machinery/computer/medical.dm
index 805ce0c50b..1da418cca4 100644
--- a/code/game/machinery/computer/medical.dm
+++ b/code/game/machinery/computer/medical.dm
@@ -576,7 +576,7 @@
/obj/machinery/computer/med_data/laptop
name = "medical laptop"
- desc = "A cheap Nanotrasen medical laptop, it functions as a medical records computer. It's bolted to the table."
+ desc = "A cheap GATO medical laptop, it functions as a medical records computer. It's bolted to the table."
icon_state = "laptop"
icon_screen = "medlaptop"
icon_keyboard = "laptop_key"
diff --git a/code/game/machinery/computer/security.dm b/code/game/machinery/computer/security.dm
index f8faa5a60a..08b1873390 100644
--- a/code/game/machinery/computer/security.dm
+++ b/code/game/machinery/computer/security.dm
@@ -25,7 +25,7 @@
/obj/machinery/computer/secure_data/laptop
name = "security laptop"
- desc = "A cheap Nanotrasen security laptop, it functions as a security records console. It's bolted to the table."
+ desc = "A cheap GATO security laptop, it functions as a security records console. It's bolted to the table."
icon_state = "laptop"
icon_screen = "seclaptop"
icon_keyboard = "laptop_key"
@@ -407,7 +407,7 @@ What a mess.*/
if(!( printing ))
var/wanted_name = stripped_input(usr, "Please enter an alias for the criminal:", "Print Wanted Poster", active1.fields["name"])
if(wanted_name)
- var/default_description = "A poster declaring [wanted_name] to be a dangerous individual, wanted by Nanotrasen. Report any sightings to security immediately."
+ var/default_description = "A poster declaring [wanted_name] to be a dangerous individual, wanted by GATO. Report any sightings to security immediately."
var/list/major_crimes = active2.fields["ma_crim"]
var/list/minor_crimes = active2.fields["mi_crim"]
if(major_crimes.len + minor_crimes.len)
diff --git a/code/game/machinery/syndicatebomb.dm b/code/game/machinery/syndicatebomb.dm
index d9b110e8c4..16ad12a2c0 100644
--- a/code/game/machinery/syndicatebomb.dm
+++ b/code/game/machinery/syndicatebomb.dm
@@ -296,7 +296,7 @@
/obj/item/bombcore/training
name = "dummy payload"
- desc = "A Nanotrasen replica of a syndicate payload. Its not intended to explode but to announce that it WOULD have exploded, then rewire itself to allow for more training."
+ desc = "A GATO replica of a syndicate payload. Its not intended to explode but to announce that it WOULD have exploded, then rewire itself to allow for more training."
var/defusals = 0
var/attempts = 0
diff --git a/code/game/objects/effects/contraband.dm b/code/game/objects/effects/contraband.dm
index 222a5cc455..4f8a019a96 100644
--- a/code/game/objects/effects/contraband.dm
+++ b/code/game/objects/effects/contraband.dm
@@ -180,7 +180,7 @@
/obj/structure/sign/poster/contraband
poster_item_name = "contraband poster"
- poster_item_desc = "This poster comes with its own automatic adhesive mechanism, for easy pinning to any vertical surface. Its vulgar themes have marked it as contraband aboard Nanotrasen space facilities."
+ poster_item_desc = "This poster comes with its own automatic adhesive mechanism, for easy pinning to any vertical surface. Its vulgar themes have marked it as contraband aboard GATO space facilities."
poster_item_icon_state = "rolled_contraband"
/obj/structure/sign/poster/contraband/random
@@ -236,17 +236,17 @@
/obj/structure/sign/poster/contraband/missing_gloves
name = "Missing Gloves"
- desc = "This poster references the uproar that followed Nanotrasen's financial cuts toward insulated-glove purchases."
+ desc = "This poster references the uproar that followed GATO's financial cuts toward insulated-glove purchases."
icon_state = "poster_gloves"
/obj/structure/sign/poster/contraband/hacking_guide
name = "Hacking Guide"
- desc = "This poster details the internal workings of the common Nanotrasen airlock. Sadly, it appears out of date."
+ desc = "This poster details the internal workings of the common GATO airlock. Sadly, it appears out of date."
icon_state = "poster_hack"
/obj/structure/sign/poster/contraband/rip_badger
name = "RIP Badger"
- desc = "This seditious poster references Nanotrasen's genocide of a space station full of badgers."
+ desc = "This seditious poster references GATO's genocide of a space station full of badgers."
icon_state = "poster_badger"
/obj/structure/sign/poster/contraband/ambrosia_vulgaris
@@ -271,7 +271,7 @@
/obj/structure/sign/poster/contraband/power
name = "Power"
- desc = "A poster that positions the seat of power outside Nanotrasen."
+ desc = "A poster that positions the seat of power outside GATO."
icon_state = "poster_power"
/obj/structure/sign/poster/contraband/space_cube
@@ -306,7 +306,7 @@
/obj/structure/sign/poster/contraband/rebels_unite
name = "Rebels Unite"
- desc = "A poster urging the viewer to rebel against Nanotrasen."
+ desc = "A poster urging the viewer to rebel against GATO."
icon_state = "poster_rebel"
/obj/structure/sign/poster/contraband/have_a_puff
@@ -437,12 +437,12 @@
/obj/structure/sign/poster/contraband/scum
name = "Security are Scum"
- desc = "Anti-security propaganda. Features a human NanoTrasen security officer being shot in the head, with the words 'Scum' and a short inciteful manifesto. Used to anger security."
+ desc = "Anti-security propaganda. Features a human GATO security officer being shot in the head, with the words 'Scum' and a short inciteful manifesto. Used to anger security."
icon_state = "poster_scum"
/obj/structure/sign/poster/contraband/manifest
- name = "Nanotrasen Manifest"
- desc = "A poster listing off various fictional claims of Nanotrasen's many rumored corporate mishaps."
+ name = "GATO Manifest"
+ desc = "A poster listing off various fictional claims of GATO's many rumored corporate mishaps."
icon_state = "poster_manifest"
/obj/structure/sign/poster/contraband/bountyhunters
@@ -482,7 +482,7 @@
/obj/structure/sign/poster/official
poster_item_name = "motivational poster"
- poster_item_desc = "An official Nanotrasen-issued poster to foster a compliant and obedient workforce. It comes with state-of-the-art adhesive backing, for easy pinning to any vertical surface."
+ poster_item_desc = "An official GATO-issued poster to foster a compliant and obedient workforce. It comes with state-of-the-art adhesive backing, for easy pinning to any vertical surface."
poster_item_icon_state = "rolled_legit"
/obj/structure/sign/poster/official/random
@@ -618,7 +618,7 @@
/obj/structure/sign/poster/official/anniversary_vintage_reprint
name = "50th Anniversary Vintage Reprint"
- desc = "A reprint of a poster from 2505, commemorating the 50th Anniversary of Nanoposters Manufacturing, a subsidiary of Nanotrasen."
+ desc = "A reprint of a poster from 2505, commemorating the 50th Anniversary of Gatoposters Manufacturing, a subsidiary of GATO."
icon_state = "poster_vintage"
/obj/structure/sign/poster/official/fruit_bowl
@@ -628,22 +628,22 @@
/obj/structure/sign/poster/official/pda_ad
name = "PDA Ad"
- desc = "A poster advertising the latest PDA from Nanotrasen suppliers."
+ desc = "A poster advertising the latest PDA from GATO suppliers."
icon_state = "poster_pda"
/obj/structure/sign/poster/official/pda_ad600
name = "NT PDA600 Ad"
- desc = "A poster advertising an old discounted Nanotrasen PDA. This is the old 600 model, it has a small screen and suffered from security and networking issues."
+ desc = "A poster advertising an old discounted GATO PDA. This is the old 600 model, it has a small screen and suffered from security and networking issues."
icon_state = "poster_retro"
/obj/structure/sign/poster/official/pda_ad800
name = "NT PDA800 Ad"
- desc = "An advertisement on an old Nanotrasen PDA model. The 800 fixed a lot of security flaws that the 600 had; it also had large touchscreen and hot-swappable cartridges."
+ desc = "An advertisement on an old GATO PDA model. The 800 fixed a lot of security flaws that the 600 had; it also had large touchscreen and hot-swappable cartridges."
icon_state = "poster_classic"
/obj/structure/sign/poster/official/enlist
name = "Enlist"
- desc = "Enlist in the Nanotrasen Jannisary reserves today!"
+ desc = "Enlist in the GATO Jannisary reserves today!"
icon_state = "poster_enlist"
/obj/structure/sign/poster/official/nanomichi_ad
@@ -668,7 +668,7 @@
/obj/structure/sign/poster/official/no_erp
name = "No ERP"
- desc = "This poster reminds the crew that Eroticism, Rape and Pornography are banned on Nanotrasen stations."
+ desc = "This poster reminds the crew that Eroticismand Pornography aren't encouraged in public."
icon_state = "poster_noerp"
/obj/structure/sign/poster/official/wtf_is_co2
diff --git a/code/game/objects/items/blueprints.dm b/code/game/objects/items/blueprints.dm
index e891b2f7d5..7d0367da69 100644
--- a/code/game/objects/items/blueprints.dm
+++ b/code/game/objects/items/blueprints.dm
@@ -45,7 +45,7 @@
desc = "Blueprints of the station. There is a \"Classified\" stamp and several coffee stains on it."
icon = 'icons/obj/items_and_weapons.dmi'
icon_state = "blueprints"
- fluffnotice = "Property of Nanotrasen. For heads of staff only. Store in high-secure storage."
+ fluffnotice = "Property of GATO. For heads of staff only. Store in high-secure storage."
resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | ACID_PROOF
var/list/image/showing = list()
var/client/viewing
diff --git a/code/game/objects/items/charter.dm b/code/game/objects/items/charter.dm
index 328ca30772..73bcbb1228 100644
--- a/code/game/objects/items/charter.dm
+++ b/code/game/objects/items/charter.dm
@@ -125,7 +125,7 @@
/obj/item/station_charter/flag
- name = "nanotrasen banner"
+ name = "GATO banner"
icon = 'icons/obj/items_and_weapons.dmi'
name_type = "planet"
icon_state = "banner"
@@ -141,7 +141,7 @@
minor_announce("[ureal_name] has designated the planet as [station_name()]", "Captain's Banner", 0)
log_game("[ukey] has renamed the planet as [station_name()].")
name = "banner of [station_name()]"
- desc = "The banner bears the official coat of arms of Nanotrasen, signifying that [station_name()] has been claimed by Captain [uname] in the name of the company."
+ desc = "The banner bears the official coat of arms of GATO, signifying that [station_name()] has been claimed by Captain [uname] in the name of the company."
SSblackbox.record_feedback("text", "station_renames", 1, "[station_name()]")
if(!unlimited_uses)
used = TRUE
diff --git a/code/game/objects/items/circuitboards/computer_circuitboards.dm b/code/game/objects/items/circuitboards/computer_circuitboards.dm
index 58d9627476..f3bd3bdd4c 100644
--- a/code/game/objects/items/circuitboards/computer_circuitboards.dm
+++ b/code/game/objects/items/circuitboards/computer_circuitboards.dm
@@ -582,7 +582,7 @@
build_path = /obj/machinery/computer/cargo/request
/obj/item/circuitboard/computer/bounty
- name = "Nanotrasen Bounty Console (Computer Board)"
+ name = "GATO Bounty Console (Computer Board)"
build_path = /obj/machinery/computer/bounty
/obj/item/circuitboard/computer/ferry
diff --git a/code/game/objects/items/crab17.dm b/code/game/objects/items/crab17.dm
index b228e64736..49fc61c891 100644
--- a/code/game/objects/items/crab17.dm
+++ b/code/game/objects/items/crab17.dm
@@ -24,7 +24,7 @@
dumped = TRUE
/obj/structure/checkoutmachine
- name = "\improper Nanotrasen Space-Coin Market"
+ name = "\improper GATO Space-Coin Market"
desc = "This is good for spacecoin because"
icon = 'icons/obj/money_machine.dmi'
icon_state = "bogdanoff"
diff --git a/code/game/objects/items/devices/PDA/cart.dm b/code/game/objects/items/devices/PDA/cart.dm
index e9c02ebc90..5dc06eb526 100644
--- a/code/game/objects/items/devices/PDA/cart.dm
+++ b/code/game/objects/items/devices/PDA/cart.dm
@@ -103,7 +103,7 @@
/obj/item/cartridge/lawyer
name = "\improper S.P.A.M. cartridge"
- desc = "Introducing the Station Public Announcement Messenger cartridge, featuring the unique ability to broadcast-mark messages, designed for lawyers across Nanotrasen to advertise their useful and important services."
+ desc = "Introducing the Station Public Announcement Messenger cartridge, featuring the unique ability to broadcast-mark messages, designed for lawyers across GATO to advertise their useful and important services."
icon_state = "cart-law"
access = CART_SECURITY
spam_enabled = 1
diff --git a/code/game/objects/items/devices/flashlight.dm b/code/game/objects/items/devices/flashlight.dm
index 3f64be4729..c3a6d0b5be 100644
--- a/code/game/objects/items/devices/flashlight.dm
+++ b/code/game/objects/items/devices/flashlight.dm
@@ -269,7 +269,7 @@
/obj/item/flashlight/flare
name = "flare"
- desc = "A red Nanotrasen issued flare. There are instructions on the side, it reads 'pull cord, make light'."
+ desc = "A red GATO issued flare. There are instructions on the side, it reads 'pull cord, make light'."
w_class = WEIGHT_CLASS_SMALL
brightness_on = 7 // Pretty bright.
total_mass = 0.8
diff --git a/code/game/objects/items/devices/gps.dm b/code/game/objects/items/devices/gps.dm
index 579f9e888d..a1a2575d71 100644
--- a/code/game/objects/items/devices/gps.dm
+++ b/code/game/objects/items/devices/gps.dm
@@ -65,7 +65,7 @@
/obj/item/gps/internal/base
gpstag = "NT_AUX"
- desc = "A homing signal from Nanotrasen's mining base."
+ desc = "A homing signal from GATO's mining base."
/obj/item/gps/visible_debug
name = "visible GPS"
diff --git a/code/game/objects/items/devices/radio/headset.dm b/code/game/objects/items/devices/radio/headset.dm
index 8403ea30e7..64ff6ee6f1 100644
--- a/code/game/objects/items/devices/radio/headset.dm
+++ b/code/game/objects/items/devices/radio/headset.dm
@@ -241,7 +241,7 @@ GLOBAL_LIST_INIT(channel_tokens, list(
/obj/item/radio/headset/headset_cent
name = "\improper CentCom headset"
- desc = "A headset used by the upper echelons of Nanotrasen."
+ desc = "A headset used by the upper echelons of GATO."
icon_state = "cent_headset"
keyslot = new /obj/item/encryptionkey/headset_com
keyslot2 = new /obj/item/encryptionkey/headset_cent
diff --git a/code/game/objects/items/documents.dm b/code/game/objects/items/documents.dm
index 1172b50377..36493952ed 100644
--- a/code/game/objects/items/documents.dm
+++ b/code/game/objects/items/documents.dm
@@ -13,7 +13,7 @@
resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | ACID_PROOF
/obj/item/documents/nanotrasen
- desc = "\"Top Secret\" Nanotrasen documents, filled with complex diagrams and lists of names, dates and coordinates."
+ desc = "\"Top Secret\" GATO documents, filled with complex diagrams and lists of names, dates and coordinates."
icon_state = "docs_verified"
/obj/item/documents/syndicate
diff --git a/code/game/objects/items/implants/implant_exile.dm b/code/game/objects/items/implants/implant_exile.dm
index 9b68206338..2fffe4e80a 100644
--- a/code/game/objects/items/implants/implant_exile.dm
+++ b/code/game/objects/items/implants/implant_exile.dm
@@ -8,7 +8,7 @@
/obj/item/implant/exile/get_data()
var/dat = {"Implant Specifications:
- Name: Nanotrasen Employee Exile Implant
+ Name: GATO Employee Exile Implant
Implant Details: The onboard gateway system has been modified to reject entry by individuals containing this implant
"}
return dat
diff --git a/code/game/objects/items/implants/implant_mindshield.dm b/code/game/objects/items/implants/implant_mindshield.dm
index 14a49c1a00..fbda6721da 100644
--- a/code/game/objects/items/implants/implant_mindshield.dm
+++ b/code/game/objects/items/implants/implant_mindshield.dm
@@ -5,7 +5,7 @@
/obj/item/implant/mindshield/get_data()
var/dat = {"Implant Specifications:
- Name: Nanotrasen Employee Management Implant
+ Name: GATO Employee Management Implant
Life: Ten years.
Important Notes: Personnel injected with this device are much more resistant to brainwashing.
diff --git a/code/game/objects/items/implants/implantchair.dm b/code/game/objects/items/implants/implantchair.dm
index 263aab4039..b5d572676f 100644
--- a/code/game/objects/items/implants/implantchair.dm
+++ b/code/game/objects/items/implants/implantchair.dm
@@ -173,7 +173,7 @@
auto_inject = FALSE
auto_replenish = FALSE
special = TRUE
- var/objective = "Obey the law. Praise Nanotrasen."
+ var/objective = "Obey the law. Praise GATO."
var/custom = FALSE
/obj/machinery/implantchair/brainwash/implant_action(mob/living/C,mob/user)
diff --git a/code/game/objects/items/mail.dm b/code/game/objects/items/mail.dm
index 9daee7b4f1..77395c4215 100644
--- a/code/game/objects/items/mail.dm
+++ b/code/game/objects/items/mail.dm
@@ -220,7 +220,7 @@
var/list/junk_names = list(
/obj/item/paper/pamphlet/gateway = "[initial(name)] for [pick(GLOB.adjectives)] adventurers",
/obj/item/paper/pamphlet/violent_video_games = "[initial(name)] for the truth about the arcade centcom doesn't want to hear",
- /obj/item/paper/fluff/junkmail_redpill = "[initial(name)] for those feeling [pick(GLOB.adjectives)] working at Nanotrasen",
+ /obj/item/paper/fluff/junkmail_redpill = "[initial(name)] for those feeling [pick(GLOB.adjectives)] working at GATO",
/obj/effect/decal/cleanable/ash = "[initial(name)] with INCREDIBLY IMPORTANT ARTIFACT- DELIVER TO SCIENCE DIVISION. HANDLE WITH CARE.",
)
diff --git a/code/game/objects/items/manuals.dm b/code/game/objects/items/manuals.dm
index 3bd13b3905..6dc51d8c8e 100644
--- a/code/game/objects/items/manuals.dm
+++ b/code/game/objects/items/manuals.dm
@@ -95,10 +95,10 @@
Secure the mainboard with a screwdriver.
Install the peripherals control module (Not included. Use supplied datadisk to create one).
Secure the peripherals control module with a screwdriver
- Install the internal armor plating (Not included due to Nanotrasen regulations. Can be made using 5 metal sheets.)
+ Install the internal armor plating (Not included due to GATO regulations. Can be made using 5 metal sheets.)
Secure the internal armor plating with a wrench
Weld the internal armor plating to the chassis
- Install the external reinforced armor plating (Not included due to Nanotrasen regulations. Can be made using 5 reinforced metal sheets.)
+ Install the external reinforced armor plating (Not included due to GATO regulations. Can be made using 5 reinforced metal sheets.)
Secure the external reinforced armor plating with a wrench
Weld the external reinforced armor plating to the chassis
@@ -108,13 +108,13 @@
Internal armor is plasteel for additional strength.
External armor must be installed in 2 parts, totaling 10 sheets.
Completed mech is more resiliant against fire, and is a bit more durable overall
- Nanotrasen is determined to the safety of its investments employees.
+ GATO is determined to the safety of its investments employees.