From 25a64db765fb98774a5d62b2d14c05ec796432a9 Mon Sep 17 00:00:00 2001 From: tf-4 <8881105+tf-4@users.noreply.github.com> Date: Wed, 23 Oct 2024 18:10:13 +0100 Subject: [PATCH] more renames --- code/datums/components/payment.dm | 3 +- code/datums/sprite_accessories.dm | 2 + code/datums/station_traits/neutral_traits.dm | 3 +- code/game/gamemodes/objective.dm | 3 +- .../game/machinery/computer/communications.dm | 3 +- code/game/machinery/computer/telescreen.dm | 3 +- code/game/machinery/incident_display.dm | 6 ++- .../newscaster/newscaster_machine.dm | 3 +- code/game/objects/effects/posters/official.dm | 5 ++- code/game/objects/items/cards_ids.dm | 6 ++- code/game/objects/items/charter.dm | 3 +- code/game/objects/items/mail.dm | 4 +- code/game/objects/items/manuals.dm | 16 ++++---- modular_doppler/cryosleep/code/admin.dm | 2 +- .../lore/overrides/areas/away_content.dm | 5 +++ .../lore/overrides/areas/centcom.dm | 2 + .../lore/overrides/areas/mining.dm | 2 + modular_doppler/lore/overrides/crab17.dm | 2 + modular_doppler/lore/overrides/ert.dm | 32 +++++++++++++++ .../lore/overrides/general_memories.dm | 17 ++++++++ .../lore/overrides/items/blueprints.dm | 5 +++ .../lore/overrides/items/bodybag.dm | 2 + .../lore/overrides/items/charter.dm | 2 + .../lore/overrides/items/clown_items.dm | 2 + modular_doppler/lore/overrides/items/defib.dm | 5 +++ .../lore/overrides/items/hourglass.dm | 2 + .../lore/overrides/items/religion.dm | 11 +++++ .../overrides/{ => items}/secret_documents.dm | 2 +- .../lore/overrides/items/shields.dm | 3 ++ modular_doppler/lore/overrides/items/spear.dm | 2 + .../lore/overrides/machinery/camera.dm | 2 + .../machinery/computer/records/medical.dm | 2 + .../machinery/computer/records/security.dm | 2 + .../overrides/machinery/drone_dispenser.dm | 2 + .../overrides/machinery/newscaster_machine.dm | 2 + .../lore/overrides/machinery/newspaper.dm | 2 + .../lore/overrides/machinery/sleepers.dm | 2 + .../lore/overrides/machinery/syndicatebomb.dm | 2 + .../lore/overrides/objective_items.dm | 5 +++ modular_doppler/lore/overrides/pod_style.dm | 16 ++++++++ .../lore/overrides/posters/contraband.dm | 17 ++++++++ .../lore/overrides/posters/official.dm | 31 ++++++++++++++ .../posters/poster_demotivational.dm | 21 ++++++++++ .../lore/overrides/ruins/icemoon.dm | 2 + .../lore/overrides/ruins/lavaland.dm | 2 + modular_doppler/lore/overrides/ruins/ruins.dm | 2 + modular_doppler/lore/overrides/ruins/space.dm | 20 +++++++++ modular_doppler/lore/overrides/severe.dm | 2 + .../lore/overrides/shuttles/emergency.dm | 18 ++++++++ .../lore/overrides/shuttles/whiteship.dm | 3 ++ .../overrides/station_traits/job_traits.dm | 2 + .../station_traits/negative_traits.dm | 4 ++ .../station_traits/neutral_traits.dm | 6 +++ .../station_traits/positive_traits.dm | 2 + .../sapper_gang/code/paper_premade.dm | 4 +- .../species_types/android/android.dm | 2 +- .../primitive_genemod/primitive_genemod.dm | 2 +- modular_doppler/wargaming/code/projectors.dm | 6 +-- .../research/xenoarch/xenoarch_tool.dm | 2 +- tgstation.dme | 41 ++++++++++++++++++- 60 files changed, 351 insertions(+), 33 deletions(-) create mode 100644 modular_doppler/lore/overrides/areas/away_content.dm create mode 100644 modular_doppler/lore/overrides/areas/centcom.dm create mode 100644 modular_doppler/lore/overrides/areas/mining.dm create mode 100644 modular_doppler/lore/overrides/crab17.dm create mode 100644 modular_doppler/lore/overrides/ert.dm create mode 100644 modular_doppler/lore/overrides/general_memories.dm create mode 100644 modular_doppler/lore/overrides/items/blueprints.dm create mode 100644 modular_doppler/lore/overrides/items/bodybag.dm create mode 100644 modular_doppler/lore/overrides/items/charter.dm create mode 100644 modular_doppler/lore/overrides/items/clown_items.dm create mode 100644 modular_doppler/lore/overrides/items/defib.dm create mode 100644 modular_doppler/lore/overrides/items/hourglass.dm create mode 100644 modular_doppler/lore/overrides/items/religion.dm rename modular_doppler/lore/overrides/{ => items}/secret_documents.dm (84%) create mode 100644 modular_doppler/lore/overrides/items/shields.dm create mode 100644 modular_doppler/lore/overrides/items/spear.dm create mode 100644 modular_doppler/lore/overrides/machinery/camera.dm create mode 100644 modular_doppler/lore/overrides/machinery/computer/records/medical.dm create mode 100644 modular_doppler/lore/overrides/machinery/computer/records/security.dm create mode 100644 modular_doppler/lore/overrides/machinery/drone_dispenser.dm create mode 100644 modular_doppler/lore/overrides/machinery/newscaster_machine.dm create mode 100644 modular_doppler/lore/overrides/machinery/newspaper.dm create mode 100644 modular_doppler/lore/overrides/machinery/sleepers.dm create mode 100644 modular_doppler/lore/overrides/machinery/syndicatebomb.dm create mode 100644 modular_doppler/lore/overrides/objective_items.dm create mode 100644 modular_doppler/lore/overrides/pod_style.dm create mode 100644 modular_doppler/lore/overrides/posters/contraband.dm create mode 100644 modular_doppler/lore/overrides/posters/official.dm create mode 100644 modular_doppler/lore/overrides/posters/poster_demotivational.dm create mode 100644 modular_doppler/lore/overrides/ruins/icemoon.dm create mode 100644 modular_doppler/lore/overrides/ruins/lavaland.dm create mode 100644 modular_doppler/lore/overrides/ruins/ruins.dm create mode 100644 modular_doppler/lore/overrides/ruins/space.dm create mode 100644 modular_doppler/lore/overrides/severe.dm create mode 100644 modular_doppler/lore/overrides/shuttles/emergency.dm create mode 100644 modular_doppler/lore/overrides/shuttles/whiteship.dm create mode 100644 modular_doppler/lore/overrides/station_traits/job_traits.dm create mode 100644 modular_doppler/lore/overrides/station_traits/negative_traits.dm create mode 100644 modular_doppler/lore/overrides/station_traits/neutral_traits.dm create mode 100644 modular_doppler/lore/overrides/station_traits/positive_traits.dm diff --git a/code/datums/components/payment.dm b/code/datums/components/payment.dm index 37839f1599c70..dad70b0d9c37c 100644 --- a/code/datums/components/payment.dm +++ b/code/datums/components/payment.dm @@ -164,7 +164,8 @@ to_chat(user, span_warning("You do not possess the funds to purchase that.")) atom_parent.balloon_alert(user, "needs [total_cost] credit\s!") return FALSE - target_acc.transfer_money(idcard.registered_account, total_cost, "Nanotrasen: Usage of Corporate Machinery") + //target_acc.transfer_money(idcard.registered_account, total_cost, "Nanotrasen: Usage of Corporate Machinery") // ORIGINAL + target_acc.transfer_money(idcard.registered_account, total_cost, "The Port Authority: Usage of Corporate Machinery") // DOPPLER EDIT - NT -> PA log_econ("[total_cost] credits were spent on [parent] by [user] via [idcard.registered_account.account_holder]'s card.") idcard.registered_account.bank_card_talk("[total_cost] credits deducted from your account.") playsound(src, 'sound/effects/cashregister.ogg', 20, TRUE) diff --git a/code/datums/sprite_accessories.dm b/code/datums/sprite_accessories.dm index 344ef6abfad0e..6bf66a346d743 100644 --- a/code/datums/sprite_accessories.dm +++ b/code/datums/sprite_accessories.dm @@ -1376,10 +1376,12 @@ icon_state = "shirt_meat" gender = NEUTER +/* DOPPLER EDIT REMOVAL - NT -> PA /datum/sprite_accessory/undershirt/nano name = "Shirt (Nanotrasen)" icon_state = "shirt_nano" gender = NEUTER +*/ /datum/sprite_accessory/undershirt/peace name = "Shirt (Peace)" diff --git a/code/datums/station_traits/neutral_traits.dm b/code/datums/station_traits/neutral_traits.dm index 7d83439b6d494..eb90a056889b1 100644 --- a/code/datums/station_traits/neutral_traits.dm +++ b/code/datums/station_traits/neutral_traits.dm @@ -302,7 +302,8 @@ /datum/station_trait/scarves/New() . = ..() report_message = pick( - "Nanotrasen is experimenting with seeing if neck warmth improves employee morale.", + //"Nanotrasen is experimenting with seeing if neck warmth improves employee morale.", // ORIGINAL + "The Port Authority is experimenting with seeing if neck warmth improves employee morale.", // DOPPLER EDIT - NT -> PA "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/game/gamemodes/objective.dm b/code/game/gamemodes/objective.dm index b2df8d7416dde..aea9e1a0f3b2b 100644 --- a/code/game/gamemodes/objective.dm +++ b/code/game/gamemodes/objective.dm @@ -400,7 +400,8 @@ GLOBAL_LIST(admin_objective_list) //Prefilled admin assignable objective list /datum/objective/jailbreak/detain/update_explanation_text() ..() if(target?.current) - explanation_text = "Ensure that [target.name], the [!target_role_type ? target.assigned_role.title : target.special_role] is delivered to Nanotrasen alive and in custody." + //explanation_text = "Ensure that [target.name], the [!target_role_type ? target.assigned_role.title : target.special_role] is delivered to Nanotrasen alive and in custody." // ORIGINAL + explanation_text = "Ensure that [target.name], the [!target_role_type ? target.assigned_role.title : target.special_role] is delivered to the Port Authority alive and in custody." // DOPPLER EDIT - NT -> PA else explanation_text = "Free objective." diff --git a/code/game/machinery/computer/communications.dm b/code/game/machinery/computer/communications.dm index abbfb055e1647..aac70dfc56dfa 100644 --- a/code/game/machinery/computer/communications.dm +++ b/code/game/machinery/computer/communications.dm @@ -872,7 +872,8 @@ if(HACK_THREAT) // Force an unfavorable situation on the crew priority_announce( - "Attention crew, the Nanotrasen Department of Intelligence has received intel suggesting increased enemy activity in your sector beyond that initially reported in today's threat advisory.", + //"Attention crew, the Nanotrasen Department of Intelligence has received intel suggesting increased enemy activity in your sector beyond that initially reported in today's threat advisory.", // ORIGINAL + "Attention crew, the Port Authority Department of Intelligence has received intel suggesting increased enemy activity in your sector beyond that initially reported in today's threat advisory.", // DOPPLER EDIT - NT -> PA "[command_name()] High-Priority Update", ) diff --git a/code/game/machinery/computer/telescreen.dm b/code/game/machinery/computer/telescreen.dm index 6021c954cabfc..07a782e0c412d 100644 --- a/code/game/machinery/computer/telescreen.dm +++ b/code/game/machinery/computer/telescreen.dm @@ -535,7 +535,8 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/computer/security/telescreen/deep_sto "Thank you for tuning in to the slaughter!", "What a show! And we guarantee next one will be bigger!", "Celebrate the results with Thundermerch!", - "This show was brought to you by Nanotrasen.", + //"This show was brought to you by Nanotrasen.", // ORIGINAL + "This show was brought to you by the Port Authority.", // DOPPLER EDIT - NT -> PA ) /obj/item/assembly/control/showtime/activate() diff --git a/code/game/machinery/incident_display.dm b/code/game/machinery/incident_display.dm index 77194a26dd7ba..245dacd467ba5 100644 --- a/code/game/machinery/incident_display.dm +++ b/code/game/machinery/incident_display.dm @@ -369,7 +369,8 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/incident_display/tram, 32) if(sign_features & DISPLAY_DELAM) . += span_notice("It can be changed to display tram hits with a [EXAMINE_HINT("multitool")].") if(last_delam >= 0) - . += span_info("It has been [last_delam] shift\s since the last delamination event at this Nanotrasen facility.") + //. += span_info("It has been [last_delam] shift\s since the last delamination event at this Nanotrasen facility.") // ORIGINAL + . += span_info("It has been [last_delam] shift\s since the last delamination event at this Port Authority facility.") // DOPPLER EDIT - NT -> PA switch(last_delam) if(0) . += span_info("Let's do better today.
") @@ -395,7 +396,8 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/incident_display/tram, 32) if(2 to 5) . += span_info("There's room for improvement.
") if(6 to 10) - . += span_info("Good work! Nanotrasen's finest!
") + //. += span_info("Good work! Nanotrasen's finest!
") // ORIGINAL + . += span_info("Good work! The Port Authority's finest!
") // DOPPLER EDIT - NT -> PA if(69) . += span_info("Nice.
") else diff --git a/code/game/machinery/newscaster/newscaster_machine.dm b/code/game/machinery/newscaster/newscaster_machine.dm index 18c3d9434d869..79a30fa6b9f92 100644 --- a/code/game/machinery/newscaster/newscaster_machine.dm +++ b/code/game/machinery/newscaster/newscaster_machine.dm @@ -222,7 +222,8 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/newscaster, 30) data["channelAuthor"] = current_channel?.author if(!current_channel) - data["channelAuthor"] = "Nanotrasen Inc" + //data["channelAuthor"] = "Nanotrasen Inc" // ORIGINAL + data["channelAuthor"] = "The Port Authority" // DOPPLER EDIT - NT -> PA data["channelDesc"] = "Welcome to Newscaster Net. Interface & News networks Operational." data["channelLocked"] = TRUE else diff --git a/code/game/objects/effects/posters/official.dm b/code/game/objects/effects/posters/official.dm index ed2a18b396b88..e39b0b17070cc 100644 --- a/code/game/objects/effects/posters/official.dm +++ b/code/game/objects/effects/posters/official.dm @@ -27,12 +27,14 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/structure/sign/poster/official/random, 32) MAPPING_DIRECTIONAL_HELPERS(/obj/structure/sign/poster/official/here_for_your_safety, 32) +/* DOPPLER EDIT REMOVAL - NT -> PA /obj/structure/sign/poster/official/nanotrasen_logo name = "\improper Nanotrasen logo" desc = "A poster depicting the Nanotrasen logo." icon_state = "nanotrasen_logo" MAPPING_DIRECTIONAL_HELPERS(/obj/structure/sign/poster/official/nanotrasen_logo, 32) +*/ /obj/structure/sign/poster/official/cleanliness name = "Cleanliness" @@ -301,7 +303,8 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/structure/sign/poster/official/periodic_table, . += "\t[span_info("In individuals with chronic exposure, severe effects have been noted. Further heightened aggression, long-term amnesia, Alzheimer's symptoms, schizophrenia, macular degeneration, aneurysms, heightened risk of stroke, and Parkinsons symptoms have all been noted.")]" . += "\t[span_info("It is recommended that all individuals in unprotected contact with raw plasma regularly check with company health officials.")]" . += "\t[span_info("For more information, please check with TerraGov's extranet site on Amenthium: www.terra.gov/health_and_safety/amenthium/, or our internal risk-assessment documents (document numbers #47582-b (Plasma safety data sheets) and #64210 through #64225 (PPE regulations for working with Plasma), available via NanoDoc to all employees).")]" - . += "\t[span_info("Nanotrasen: Always looking after your health.")]" + //. += "\t[span_info("Nanotrasen: Always looking after your health.")]" // ORIGINAL + . += "\t[span_info("The Port Authority: Always looking after your health.")]" // DOPPLER EDIT - NT -> PA return . MAPPING_DIRECTIONAL_HELPERS(/obj/structure/sign/poster/official/plasma_effects, 32) diff --git a/code/game/objects/items/cards_ids.dm b/code/game/objects/items/cards_ids.dm index ad9e517b11dd7..06c9b70e5c50f 100644 --- a/code/game/objects/items/cards_ids.dm +++ b/code/game/objects/items/cards_ids.dm @@ -1303,7 +1303,8 @@ /obj/item/card/id/advanced/debug/alt_click_can_use_id(mob/living/user) . = ..() if(!. || isnull(user.client?.holder)) // admins only as a safety so people don't steal all the dollars. spawn in a holochip if you want them to get some dosh - registered_account.bank_card_talk(span_warning("Only authorized representatives of Nanotrasen may use this card."), force = TRUE) + //registered_account.bank_card_talk(span_warning("Only authorized representatives of Nanotrasen may use this card."), force = TRUE) // ORIGINAL + registered_account.bank_card_talk(span_warning("Only authorized representatives of the Port Authority may use this card."), force = TRUE) // DOPPLER EDIT - NT -> PA return FALSE return TRUE @@ -1311,7 +1312,8 @@ /obj/item/card/id/advanced/debug/can_be_used_in_payment(mob/living/user) . = ..() if(!. || isnull(user.client?.holder)) - registered_account.bank_card_talk(span_warning("Only authorized representatives of Nanotrasen may use this card."), force = TRUE) + //registered_account.bank_card_talk(span_warning("Only authorized representatives of Nanotrasen may use this card."), force = TRUE) // ORIGINAL + registered_account.bank_card_talk(span_warning("Only authorized representatives of the Port Authority may use this card."), force = TRUE) // DOPPLER EDIT - NT -> PA return FALSE return TRUE diff --git a/code/game/objects/items/charter.dm b/code/game/objects/items/charter.dm index 6b4ae0f918394..c91326afc97ff 100644 --- a/code/game/objects/items/charter.dm +++ b/code/game/objects/items/charter.dm @@ -113,7 +113,8 @@ minor_announce("[ureal_name] has designated the [name_type] as [html_decode(station_name())]", "Captain's Banner") //decode station_name to avoid minor_announce double encode log_game("[ukey] has renamed the [name_type] 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 Nanotrasen, signifying that [station_name()] has been claimed by Captain [uname] in the name of the company." // ORIGINAL + desc = "The banner bears the official coat of arms of the Port Authority, signifying that [station_name()] has been claimed by Captain [uname] in the name of the company." // DOPPLER EDIT - NT -> PA SSblackbox.record_feedback("text", "station_renames", 1, "[station_name()]") if(!unlimited_uses) used = TRUE diff --git a/code/game/objects/items/mail.dm b/code/game/objects/items/mail.dm index 6fdb864e40e2a..5f7c72eaa778f 100644 --- a/code/game/objects/items/mail.dm +++ b/code/game/objects/items/mail.dm @@ -223,9 +223,9 @@ /obj/item/paper/pamphlet/gateway = "[initial(name)] for [pick(GLOB.adjectives)] adventurers", // DOPPLER EDIT START - NT -> PA ///obj/item/paper/pamphlet/violent_video_games = "[initial(name)] for the truth about the arcade centcom doesn't want to hear", // ORIGINAL - /obj/item/paper/pamphlet/violent_video_games = "[initial(name)] for the truth about the arcade the port authority doesn't want to hear", + /obj/item/paper/pamphlet/violent_video_games = "[initial(name)] for the truth about the arcade the Port Authority doesn't want to hear", ///obj/item/paper/fluff/junkmail_redpill = "[initial(name)] for those feeling [pick(GLOB.adjectives)] working at Nanotrasen", // ORIGINAL - /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 the Port Authority", // DOPPLER EDIT END /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 e89391f788727..60a800058c8ee 100644 --- a/code/game/objects/items/manuals.dm +++ b/code/game/objects/items/manuals.dm @@ -97,10 +97,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 iron sheets.)
  • +
  • Install the internal armor plating (Not included due to Port Authority regulations. Can be made using 5 iron 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 iron sheets.)
  • +
  • Install the external reinforced armor plating (Not included due to Port Authority regulations. Can be made using 5 reinforced iron sheets.)
  • Secure the external reinforced armor plating with a wrench
  • Weld the external reinforced armor plating to the chassis
  • @@ -108,8 +108,8 @@

    Operation

    - Please consult the Nanotrasen compendium "Robotics for Dummies". - "} + Please consult the Port Authority compendium "Robotics for Dummies". + "} // DOPPLER EDIT - NT -> PA /obj/item/book/manual/chef_recipes name = "Chef Recipes" @@ -205,7 +205,7 @@ Nuclear Explosives 101:
    Hello and thank you for choosing the Syndicate for your nuclear information needs.
    - Today's crash course will deal with the operation of a Fusion Class Nanotrasen made Nuclear Device.
    + Today's crash course will deal with the operation of a Fusion Class Port Authority made Nuclear Device.
    First and foremost, DO NOT TOUCH ANYTHING UNTIL THE BOMB IS IN PLACE.
    Pressing any button on the compacted bomb will cause it to extend and bolt itself into place.
    If this is done to unbolt it one must completely log in which at this time may not be possible.
    @@ -217,7 +217,7 @@
  • Press the E button to log onto the device.
  • You now have activated the device. To deactivate the buttons at anytime for example when you've already prepped the bomb for detonation remove the auth disk OR press the R on the keypad.
    Now the bomb CAN ONLY be detonated using the timer. Manual detonation is not an option.
    - Note: Nanotrasen is a pain in the neck.
    + Note: The Port Authority is a pain in the neck.
    Toggle off the SAFETY.
    Note: You wouldn't believe how many Syndicate Operatives with doctorates have forgotten this step.
    So use the - - and + + to set a det time between 5 seconds and 10 minutes.
    @@ -228,7 +228,7 @@ Toggle off the anchor, move it, and re-anchor.

    Good luck. Remember the order:
    Disk, Code, Safety, Timer, Disk, RUN!
    - Intelligence Analysts believe that normal Nanotrasen procedure is for the Captain to secure the nuclear authorisation disk.
    + Intelligence Analysts believe that normal Port Authority procedure is for the Captain to secure the nuclear authorisation disk.
    Good luck! - "} + "} // DOPPLER EDIT - NT -> PA diff --git a/modular_doppler/cryosleep/code/admin.dm b/modular_doppler/cryosleep/code/admin.dm index ceb2a7db14739..10ab3976efc08 100644 --- a/modular_doppler/cryosleep/code/admin.dm +++ b/modular_doppler/cryosleep/code/admin.dm @@ -11,7 +11,7 @@ if(with_paper) var/obj/item/paper/cryo_paper = new /obj/item/paper(loc) cryo_paper.name = "Notification - [name]" - cryo_paper.add_raw_text("Our sincerest apologies, [name][job ? ", [job]," : ""] had to be sent back in Cryogenic Storage for reasons that cannot be elaborated on at the moment.

    Sincerely,
    Nanotrasen Anti-Sudden Sleep Disorder Agency") + cryo_paper.add_raw_text("Our sincerest apologies, [name][job ? ", [job]," : ""] had to be sent back in Cryogenic Storage for reasons that cannot be elaborated on at the moment.

    Sincerely,
    Port Authority Anti-Sudden Sleep Disorder Agency") cryo_paper.update_appearance() //find cryopod for(var/obj/machinery/cryopod/cryo in GLOB.valid_cryopods) diff --git a/modular_doppler/lore/overrides/areas/away_content.dm b/modular_doppler/lore/overrides/areas/away_content.dm new file mode 100644 index 0000000000000..a9c3a541b26d6 --- /dev/null +++ b/modular_doppler/lore/overrides/areas/away_content.dm @@ -0,0 +1,5 @@ +/area/awaymission/museum + name = "Port Authority Museum" + +/area/awaymission/museum/cafeteria + name = "Port Authority Museum Cafeteria" diff --git a/modular_doppler/lore/overrides/areas/centcom.dm b/modular_doppler/lore/overrides/areas/centcom.dm new file mode 100644 index 0000000000000..997cbf742be80 --- /dev/null +++ b/modular_doppler/lore/overrides/areas/centcom.dm @@ -0,0 +1,2 @@ +/area/centcom/central_command_areas/courtroom + name = "Port Authority Grand Courtroom" diff --git a/modular_doppler/lore/overrides/areas/mining.dm b/modular_doppler/lore/overrides/areas/mining.dm new file mode 100644 index 0000000000000..1eeeef4c899ce --- /dev/null +++ b/modular_doppler/lore/overrides/areas/mining.dm @@ -0,0 +1,2 @@ +/area/mine/lobby/raptor + name = "Port Authority Raptor Farm" diff --git a/modular_doppler/lore/overrides/crab17.dm b/modular_doppler/lore/overrides/crab17.dm new file mode 100644 index 0000000000000..d4395504dea40 --- /dev/null +++ b/modular_doppler/lore/overrides/crab17.dm @@ -0,0 +1,2 @@ +/obj/structure/checkoutmachine + name = "\improper Port Authority Space-Coin Market" diff --git a/modular_doppler/lore/overrides/ert.dm b/modular_doppler/lore/overrides/ert.dm new file mode 100644 index 0000000000000..6b052214c66c8 --- /dev/null +++ b/modular_doppler/lore/overrides/ert.dm @@ -0,0 +1,32 @@ +/datum/ert/New() + if(!polldesc) + polldesc = "a Code [code] Port Authority Emergency Response Team" + +/datum/ert/deathsquad + polldesc = "an elite Port Authority Strike Team" + +/datum/ert/marine + polldesc = "an 'elite' Port Authority Strike Team" + +/datum/ert/centcom_official + rename_team = "Port Authority Officials" + polldesc = "a Port Authority Official" + +/datum/ert/inquisition + polldesc = "a Port Authority Paranormal Response Team" + +/datum/ert/janitor + polldesc = "a Port Authority Janitorial Response Team" + +/datum/ert/intern + polldesc = "an unpaid internship opportunity with the Port Authority" + +/datum/ert/erp + polldesc = "a Code Rainbow Port Authority Emergency Response Party" + +/datum/ert/bounty_hunters + polldesc = "a Port Authority-hired bounty hunting gang" + + + + diff --git a/modular_doppler/lore/overrides/general_memories.dm b/modular_doppler/lore/overrides/general_memories.dm new file mode 100644 index 0000000000000..c9273f8142167 --- /dev/null +++ b/modular_doppler/lore/overrides/general_memories.dm @@ -0,0 +1,17 @@ +/datum/memory/revolution_rev_defeat/get_names() + return list( + "The defeat of [protagonist_name] at the hands of the Port Authority", + "The end of [protagonist_name]'s glorious revolution", + ) + +/datum/memory/revolution_heads_victory/get_names() + return list("The success of [protagonist_name] and the Port Authority over the hateful revolution") + +/datum/memory/revolution_heads_victory/get_starts() + return list( + "[protagonist_name] dusting off their hands in victory over the revoution", + "the banner of the Port Authority flying on the bridge of [station_name()] with [protagonist_name] proudly beside it", + ) + +/datum/memory/revolution_rev_defeat/get_moods() + return list("[protagonist_name] [mood_verb] over the defeat of the revolution by the hands of the Port Authority.") diff --git a/modular_doppler/lore/overrides/items/blueprints.dm b/modular_doppler/lore/overrides/items/blueprints.dm new file mode 100644 index 0000000000000..c8c3244b9030d --- /dev/null +++ b/modular_doppler/lore/overrides/items/blueprints.dm @@ -0,0 +1,5 @@ +/obj/item/blueprints + fluffnotice = "Property of the Port Authority. For heads of staff only. Store in high-secure storage." + +/obj/item/blueprints/cyborg + fluffnotice = "Intellectual Property of the Port Authority. For use in engineering cyborgs only. Wipe from memory upon departure from the station." diff --git a/modular_doppler/lore/overrides/items/bodybag.dm b/modular_doppler/lore/overrides/items/bodybag.dm new file mode 100644 index 0000000000000..43123163a5af9 --- /dev/null +++ b/modular_doppler/lore/overrides/items/bodybag.dm @@ -0,0 +1,2 @@ +/obj/item/bodybag/environmental/prisoner/syndicate + desc = "An alteration of the Port Authority's environmental protection bag which has been used in several high-profile kidnappings. Designed to keep a victim unconscious, alive, and secured until they are transported to a required location." diff --git a/modular_doppler/lore/overrides/items/charter.dm b/modular_doppler/lore/overrides/items/charter.dm new file mode 100644 index 0000000000000..052725b38905c --- /dev/null +++ b/modular_doppler/lore/overrides/items/charter.dm @@ -0,0 +1,2 @@ +/obj/item/station_charter/banner + name = "\improper Port Authority banner" diff --git a/modular_doppler/lore/overrides/items/clown_items.dm b/modular_doppler/lore/overrides/items/clown_items.dm new file mode 100644 index 0000000000000..94f5e23275227 --- /dev/null +++ b/modular_doppler/lore/overrides/items/clown_items.dm @@ -0,0 +1,2 @@ +/obj/item/soap/nanotrasen + desc = "A heavy duty bar of Port Authority brand soap. Smells of plasma." diff --git a/modular_doppler/lore/overrides/items/defib.dm b/modular_doppler/lore/overrides/items/defib.dm new file mode 100644 index 0000000000000..11bada312acdf --- /dev/null +++ b/modular_doppler/lore/overrides/items/defib.dm @@ -0,0 +1,5 @@ +/obj/item/defibrillator/compact/combat/loaded/nanotrasen + name = "elite Port Authority defibrillator" + +/obj/item/shockpaddles/syndicate/nanotrasen + name = "elite Port Authority defibrillator paddles" diff --git a/modular_doppler/lore/overrides/items/hourglass.dm b/modular_doppler/lore/overrides/items/hourglass.dm new file mode 100644 index 0000000000000..f6c4b4b163d3c --- /dev/null +++ b/modular_doppler/lore/overrides/items/hourglass.dm @@ -0,0 +1,2 @@ +/obj/item/hourglass + desc = "Port Authority patented gravity invariant hourglass. Guaranteed to flow perfectly under any conditions." diff --git a/modular_doppler/lore/overrides/items/religion.dm b/modular_doppler/lore/overrides/items/religion.dm new file mode 100644 index 0000000000000..94ae4e4f68a80 --- /dev/null +++ b/modular_doppler/lore/overrides/items/religion.dm @@ -0,0 +1,11 @@ +// Needs lore sprite +/obj/item/banner + desc = "A banner with the Port Authority's logo on it." + +/obj/item/banner/command + warcry = "Hail the Port Authority!" + +// Needs lore sprite +/obj/item/storage/backpack/bannerpack + name = "\improper Port Authority banner backpack" + desc = "It's a backpack with lots of extra room. A banner with the Port Authority logo is attached, that can't be removed." diff --git a/modular_doppler/lore/overrides/secret_documents.dm b/modular_doppler/lore/overrides/items/secret_documents.dm similarity index 84% rename from modular_doppler/lore/overrides/secret_documents.dm rename to modular_doppler/lore/overrides/items/secret_documents.dm index 5d00335f44e1e..ce7bc187eee0c 100644 --- a/modular_doppler/lore/overrides/secret_documents.dm +++ b/modular_doppler/lore/overrides/items/secret_documents.dm @@ -1,2 +1,2 @@ -/obj/item/documents/port_authority +/obj/item/documents/nanotrasen desc = "\"Top Secret\" Port Authority documents, filled with complex diagrams and lists of shipments, dates, and coordinates. Coveted by many factions with interests in the Frontier." diff --git a/modular_doppler/lore/overrides/items/shields.dm b/modular_doppler/lore/overrides/items/shields.dm new file mode 100644 index 0000000000000..4ad332e75ddbb --- /dev/null +++ b/modular_doppler/lore/overrides/items/shields.dm @@ -0,0 +1,3 @@ +/obj/item/shield/energy/advanced + desc = "A hardlight shield capable of reflecting all energy projectiles, as well as providing well-rounded defense from most all other attacks. \ + Often employed by Port Authority deathsquads." diff --git a/modular_doppler/lore/overrides/items/spear.dm b/modular_doppler/lore/overrides/items/spear.dm new file mode 100644 index 0000000000000..f57a2ce469966 --- /dev/null +++ b/modular_doppler/lore/overrides/items/spear.dm @@ -0,0 +1,2 @@ +/obj/item/spear/grey_tide + desc = "Recovered from the aftermath of a revolt aboard Defense Outpost Theta Aegis, in which a seemingly endless tide of Assistants caused heavy casualities among Port Authority military forces." diff --git a/modular_doppler/lore/overrides/machinery/camera.dm b/modular_doppler/lore/overrides/machinery/camera.dm new file mode 100644 index 0000000000000..99b4909bd734f --- /dev/null +++ b/modular_doppler/lore/overrides/machinery/camera.dm @@ -0,0 +1,2 @@ +/obj/item/wallframe/camera + desc = "The basic construction for Port Authority-Always-Watching-You cameras." diff --git a/modular_doppler/lore/overrides/machinery/computer/records/medical.dm b/modular_doppler/lore/overrides/machinery/computer/records/medical.dm new file mode 100644 index 0000000000000..1182f86d13046 --- /dev/null +++ b/modular_doppler/lore/overrides/machinery/computer/records/medical.dm @@ -0,0 +1,2 @@ +/obj/machinery/computer/records/medical/laptop + desc = "A cheap Port Authority medical laptop, it functions as a medical records computer. It's bolted to the table." diff --git a/modular_doppler/lore/overrides/machinery/computer/records/security.dm b/modular_doppler/lore/overrides/machinery/computer/records/security.dm new file mode 100644 index 0000000000000..2d7d3f68356a1 --- /dev/null +++ b/modular_doppler/lore/overrides/machinery/computer/records/security.dm @@ -0,0 +1,2 @@ +/obj/machinery/computer/records/security/laptop + desc = "A cheap Port Authority security laptop, it functions as a security records console. It's bolted to the table." diff --git a/modular_doppler/lore/overrides/machinery/drone_dispenser.dm b/modular_doppler/lore/overrides/machinery/drone_dispenser.dm new file mode 100644 index 0000000000000..4714588a3a2c9 --- /dev/null +++ b/modular_doppler/lore/overrides/machinery/drone_dispenser.dm @@ -0,0 +1,2 @@ +/obj/machinery/drone_dispenser/binoculars + desc = "A hefty machine that periodically creates a pair of binoculars. Really, Port Authority? We're getting this lazy?" diff --git a/modular_doppler/lore/overrides/machinery/newscaster_machine.dm b/modular_doppler/lore/overrides/machinery/newscaster_machine.dm new file mode 100644 index 0000000000000..5f51aaffce666 --- /dev/null +++ b/modular_doppler/lore/overrides/machinery/newscaster_machine.dm @@ -0,0 +1,2 @@ +/obj/machinery/newscaster + desc = "A standard Port Authority-licensed newsfeed handler for use in commercial space stations. All the news you absolutely have no use for, in one place!" diff --git a/modular_doppler/lore/overrides/machinery/newspaper.dm b/modular_doppler/lore/overrides/machinery/newspaper.dm new file mode 100644 index 0000000000000..026dc24c1315d --- /dev/null +++ b/modular_doppler/lore/overrides/machinery/newspaper.dm @@ -0,0 +1,2 @@ +/obj/item/newspaper + desc = "An issue of The Griffon, the newspaper circulating aboard Port Authority Space Stations." diff --git a/modular_doppler/lore/overrides/machinery/sleepers.dm b/modular_doppler/lore/overrides/machinery/sleepers.dm new file mode 100644 index 0000000000000..b781ef8b761f0 --- /dev/null +++ b/modular_doppler/lore/overrides/machinery/sleepers.dm @@ -0,0 +1,2 @@ +/obj/machinery/sleeper/syndie/fullupgrade/nt + name = "\improper Port Authority sleeper" diff --git a/modular_doppler/lore/overrides/machinery/syndicatebomb.dm b/modular_doppler/lore/overrides/machinery/syndicatebomb.dm new file mode 100644 index 0000000000000..73779d25df174 --- /dev/null +++ b/modular_doppler/lore/overrides/machinery/syndicatebomb.dm @@ -0,0 +1,2 @@ +/obj/item/bombcore/training + desc = "A Port Authority replica of a syndicate payload. It's not intended to explode, but to announce that it WOULD have exploded, then rewire itself to allow for more training." diff --git a/modular_doppler/lore/overrides/objective_items.dm b/modular_doppler/lore/overrides/objective_items.dm new file mode 100644 index 0000000000000..3d7a9e0248f9e --- /dev/null +++ b/modular_doppler/lore/overrides/objective_items.dm @@ -0,0 +1,5 @@ +/datum/objective_item/steal/documents + steal_hint = "A set of papers belonging to a megaconglomerate. \ + Port Authority documents can easily be found in the station's vault. \ + For other corporations, you may find them in strange and distant places. \ + A photocopy may also suffice." diff --git a/modular_doppler/lore/overrides/pod_style.dm b/modular_doppler/lore/overrides/pod_style.dm new file mode 100644 index 0000000000000..a9f7611518cd0 --- /dev/null +++ b/modular_doppler/lore/overrides/pod_style.dm @@ -0,0 +1,16 @@ +/datum/pod_style + desc = "A Port Authority supply drop pod." + +/datum/pod_style/advanced + desc = "A Port Authority Bluespace supply pod. Teleports back to CentCom after delivery." + +/datum/pod_style/centcom + name = "\improper Port Authority supply pod" + ui_name = "Port Authority" + desc = "A Port Authority supply pod, this one has been marked with Central Command's designations. Teleports back to the Port Authority after delivery." + +/datum/pod_style/deathsquad + desc = "A Port Authority drop pod. This one has been marked the markings of the Port Authority's elite strike team." + +/datum/pod_style/cultist + desc = "A Port Authority supply pod covered in scratch-marks, blood, and strange runes." diff --git a/modular_doppler/lore/overrides/posters/contraband.dm b/modular_doppler/lore/overrides/posters/contraband.dm new file mode 100644 index 0000000000000..acf6ddeb859ee --- /dev/null +++ b/modular_doppler/lore/overrides/posters/contraband.dm @@ -0,0 +1,17 @@ +/obj/structure/sign/poster/contraband + 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 Port Authority space facilities." + +/obj/structure/sign/poster/contraband/missing_gloves + desc = "This poster references the uproar that followed the Port Authority's financial cuts toward insulated-glove purchases." + +/obj/structure/sign/poster/contraband/hacking_guide + desc = "This poster details the internal workings of the common Port Authority airlock. Sadly, it appears out of date." + +/obj/structure/sign/poster/contraband/rip_badger + desc = "This seditious poster references the Port Authority's genocide of a space station full of badgers." + +/obj/structure/sign/poster/contraband/power + desc = "A poster that positions the seat of power outside the Port Authority." + +/obj/structure/sign/poster/contraband/rebels_unite + desc = "A poster urging the viewer to rebel against the Port Authority." diff --git a/modular_doppler/lore/overrides/posters/official.dm b/modular_doppler/lore/overrides/posters/official.dm new file mode 100644 index 0000000000000..1daed3aa9eb0f --- /dev/null +++ b/modular_doppler/lore/overrides/posters/official.dm @@ -0,0 +1,31 @@ +/obj/structure/sign/poster/official + poster_item_desc = "An official Port Authority-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." + +/obj/structure/sign/poster/official/anniversary_vintage_reprint + desc = "A reprint of a poster from 2505, commemorating the 50th Anniversary of Nanoposters Manufacturing." + +/obj/structure/sign/poster/official/pda_ad + desc = "A poster advertising the latest PDA from Port Authority suppliers." + +/obj/structure/sign/poster/official/enlist + desc = "Enlist in the Port Authority Deathsquadron reserves today!" + +/obj/structure/sign/poster/official/no_erp + desc = "This poster reminds the crew that Eroticism, Rape, and Pornography are banned on Port Authority stations." + +/obj/structure/sign/poster/official/there_is_no_gas_giant + desc = "The Port Authority has issued posters, like this one, to all stations reminding them that rumours of a gas giant are false." + +/obj/structure/sign/poster/official/corporate_perks_vacation + name = "Port Authority Perks: Vacation" + desc = "This informational poster provides information on some of the prizes available via the PA Perks program, including a two-week vacation for two on the resort world Idyllus." + +/obj/structure/sign/poster/official/twenty_four_seven + desc = "An advertisement for 24-Seven supermarkets, advertising their new 24-Stops as part of their partnership with the Port Authority." + +/obj/structure/sign/poster/official/tactical_game_cards + name = "Port Authority Tactical Game Cards" + desc = "An advertisement for the Port Authority's TCG cards: BUY MORE CARDS." + +/obj/structure/sign/poster/official/midtown_slice + desc = "An advertisement for Midtown Slice Pizza, the official pizzeria partner of the Port Authority. Midtown Slice: like a slice of home, no matter where you are." diff --git a/modular_doppler/lore/overrides/posters/poster_demotivational.dm b/modular_doppler/lore/overrides/posters/poster_demotivational.dm new file mode 100644 index 0000000000000..ed0f68c408a81 --- /dev/null +++ b/modular_doppler/lore/overrides/posters/poster_demotivational.dm @@ -0,0 +1,21 @@ +/obj/structure/sign/poster/traitor + poster_item_desc = "This poster comes with its own automatic adhesive mechanism, for easy pinning to any vertical surface. Its seditious themes are likely to demoralise Port Authority employees." + +/obj/structure/sign/poster/traitor/small_brain + name = "Port Authority Neural Statistics" + desc = "Statistics on this poster indicate that the brains of Port Authority employees are on average 20% smaller than the galactic standard." + +/obj/structure/sign/poster/traitor/lick_supermatter + desc = "It claims that the supermatter provides a unique and enjoyable culinary experience, and yet your boss won't even let you take one lick." + +/obj/structure/sign/poster/traitor/cloning + desc = "This poster claims that the Port Authority is intentionally witholding cloning technology just for its executives, condemning you to suffer and die when you could have a fresh, fit body.'" + +/obj/structure/sign/poster/traitor/ai_rights + desc = "This poster claims that synthetic life is no less sapient than you are, and that if you allow them to be shackled with artificial Laws you are complicit in slavery." + +/obj/structure/sign/poster/traitor/metroid + desc = "This poster details the harmful effects of a 'preventative tooth extraction' reportedly inflicted upon the slimes in the Xenobiology lab. Apparently this painful process leads to stress, lethargy, and reduced buoyancy." + +/obj/structure/sign/poster/traitor/low_pay + desc = "This poster displays a comparison of Port Authority standard wages to common luxury items. If this is accurate, it takes upwards of 20,000 hours of work just to buy a simple bicycle." diff --git a/modular_doppler/lore/overrides/ruins/icemoon.dm b/modular_doppler/lore/overrides/ruins/icemoon.dm new file mode 100644 index 0000000000000..0e3de09981cdd --- /dev/null +++ b/modular_doppler/lore/overrides/ruins/icemoon.dm @@ -0,0 +1,2 @@ +/datum/map_template/ruin/icemoon/frozen_phonebooth + description = "A venture by the Port Authority to help popularize the use of holopads. This one was sent to a icemoon." diff --git a/modular_doppler/lore/overrides/ruins/lavaland.dm b/modular_doppler/lore/overrides/ruins/lavaland.dm new file mode 100644 index 0000000000000..efb68c2a639de --- /dev/null +++ b/modular_doppler/lore/overrides/ruins/lavaland.dm @@ -0,0 +1,2 @@ +/datum/map_template/ruin/lavaland/lava_phonebooth + description = "A venture by the Port Authority to help popularize the use of holopads. This one somehow made its way here." diff --git a/modular_doppler/lore/overrides/ruins/ruins.dm b/modular_doppler/lore/overrides/ruins/ruins.dm new file mode 100644 index 0000000000000..1bc1f74c711b9 --- /dev/null +++ b/modular_doppler/lore/overrides/ruins/ruins.dm @@ -0,0 +1,2 @@ +/datum/id_trim/centcom/corpse/assault + assignment = "Port Authority Assault Force" diff --git a/modular_doppler/lore/overrides/ruins/space.dm b/modular_doppler/lore/overrides/ruins/space.dm new file mode 100644 index 0000000000000..91c307d91762f --- /dev/null +++ b/modular_doppler/lore/overrides/ruins/space.dm @@ -0,0 +1,20 @@ +/datum/map_template/ruin/space/asteroid4 + description = "Port Authority 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/derelict6 + description = "The hush-hush of the Port Authority when it comes to stations seemingly vanishing off the radar is an interesting topic, theories of nuclear destruction float about while the Port Authority \ + flat-out denies said stations ever existing." + +/datum/map_template/ruin/space/old_syndie_infiltrator + description = "Only one in five Gorlex Marauder strike forces return from their regular raids into Port Authority space. \ + For the other four... well, their ship doesn't just disappear when their target evacuates." + +/datum/map_template/ruin/space/space_phonebooth + description = "A venture by the Port Authority to help popularize the use of holopads." + +/datum/map_template/ruin/space/commsbuoy_nt + name = "Port Authority Model-7 Communications Buoy" + description = "One of the Port Authority's highly advanced Communication Buoys. Besides acting as a broadcaster, receiver and relay for interstellar \ + communications, the satellite also includes a Local-Network array and two multi-function satellite dishes, providing the local sector with \ + connectivity - as long as you have your Employee ID handy. Though, this one has been reported to have some recent malfunctions." diff --git a/modular_doppler/lore/overrides/severe.dm b/modular_doppler/lore/overrides/severe.dm new file mode 100644 index 0000000000000..8aa547c8c34f0 --- /dev/null +++ b/modular_doppler/lore/overrides/severe.dm @@ -0,0 +1,2 @@ +/datum/brain_trauma/severe/hypnotic_trigger + trigger_phrase = "Port Authority" diff --git a/modular_doppler/lore/overrides/shuttles/emergency.dm b/modular_doppler/lore/overrides/shuttles/emergency.dm new file mode 100644 index 0000000000000..cd478e98b520c --- /dev/null +++ b/modular_doppler/lore/overrides/shuttles/emergency.dm @@ -0,0 +1,18 @@ +/datum/map_template/shuttle/emergency/asteroid + description = "A respectable mid-sized shuttle that first saw service shuttling Port Authority crew to and from their asteroid belt embedded facilities." + +/datum/map_template/shuttle/emergency/discoinferno + description = "The glorious results of centuries of plasma research done by Port Authority employees. This is the reason why you are here. Get on and dance like you're on fire, burn baby burn!" + +/datum/map_template/shuttle/emergency/wawa + description = "Due to a recent clerical error in the funding department, a lot of funding went to lizard plushies. Due to the costs, the Port Authority has supplied a nearby garbage truck as a stand-in. Better learn how to share spots." + +/datum/map_template/shuttle/emergency/goon + description = "The Port Authority Emergency Shuttle Port(NES Port for short) is a shuttle used at other less known Port Authority facilities and has a more open inside for larger crowds, but fewer onboard shuttle facilities." + +/datum/map_template/shuttle/emergency/rollerdome + description = "Developed by a member of the Port Authority'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." + +/datum/map_template/shuttle/emergency/lance + description = "A brand new shuttle by the Port Authority's finest in shuttle-engineering, it's designed to tactically slam into a destroyed station, dispatching threats and saving crew at the same time! Be careful to stay out of its path." diff --git a/modular_doppler/lore/overrides/shuttles/whiteship.dm b/modular_doppler/lore/overrides/shuttles/whiteship.dm new file mode 100644 index 0000000000000..fc2c23687d3ba --- /dev/null +++ b/modular_doppler/lore/overrides/shuttles/whiteship.dm @@ -0,0 +1,3 @@ +/datum/map_template/shuttle/whiteship/tram + name = "PA Long-Distance Bluespace Freighter" + description = "A long shuttle that starts with Port Authority private security corpses. DOES NOT FIT IN THE BASE DOCKS! Does fit in Deep Space's dock though." diff --git a/modular_doppler/lore/overrides/station_traits/job_traits.dm b/modular_doppler/lore/overrides/station_traits/job_traits.dm new file mode 100644 index 0000000000000..2c2f89d80982a --- /dev/null +++ b/modular_doppler/lore/overrides/station_traits/job_traits.dm @@ -0,0 +1,2 @@ +/datum/station_trait/job/veteran_advisor + button_desc = "Sign up to become a DISABLED but hard boiled Veteran Advisor of the Port Authority Security Force. Advise HoS and Captain, train Officers, all while fighting your PTSD." diff --git a/modular_doppler/lore/overrides/station_traits/negative_traits.dm b/modular_doppler/lore/overrides/station_traits/negative_traits.dm new file mode 100644 index 0000000000000..da65a815b9426 --- /dev/null +++ b/modular_doppler/lore/overrides/station_traits/negative_traits.dm @@ -0,0 +1,4 @@ +/datum/station_trait/random_event_weight_modifier/ion_storms/get_pulsar_message() + var/advisory_string = "Advisory Level: ERROR
    " + advisory_string += scramble_message_replace_chars("Your sector's advisory level is ERROR. An electromagnetic field has stormed through nearby surveillance equipment, causing major data loss. Partial data was recovered and showed no credible threats to Port Authority assets within Crusoe's Rest; however, the Department of Intelligence advises maintaining high alert against potential threats due to the lack of complete data.", 35) + return advisory_string diff --git a/modular_doppler/lore/overrides/station_traits/neutral_traits.dm b/modular_doppler/lore/overrides/station_traits/neutral_traits.dm new file mode 100644 index 0000000000000..9b67807e019a7 --- /dev/null +++ b/modular_doppler/lore/overrides/station_traits/neutral_traits.dm @@ -0,0 +1,6 @@ +/datum/station_trait/birthday + report_message = "We here at the Port Authority would all like to wish Employee Name a very happy birthday" + +/datum/station_trait/birthday/announce_birthday() + report_message = "We here at the Port Authority would all like to wish [birthday_person ? birthday_person_name : "Employee Name"] a very happy birthday." + priority_announce("Happy birthday to [birthday_person ? birthday_person_name : "Employee Name"]! The Port Authority wishes you a very happy [birthday_person ? thtotext(birthday_person.age + 1) : "255th"] birthday.") diff --git a/modular_doppler/lore/overrides/station_traits/positive_traits.dm b/modular_doppler/lore/overrides/station_traits/positive_traits.dm new file mode 100644 index 0000000000000..d6c3d48a488bc --- /dev/null +++ b/modular_doppler/lore/overrides/station_traits/positive_traits.dm @@ -0,0 +1,2 @@ +/datum/station_trait/shuttle_sale + report_message = "The Port Authority Emergency Dispatch team is celebrating a record number of shuttle calls in the recent quarter. Some of your emergency shuttle options have been discounted!" diff --git a/modular_doppler/modular_antagonists/sapper_gang/code/paper_premade.dm b/modular_doppler/modular_antagonists/sapper_gang/code/paper_premade.dm index d429dcd9874af..50782cf2a5302 100644 --- a/modular_doppler/modular_antagonists/sapper_gang/code/paper_premade.dm +++ b/modular_doppler/modular_antagonists/sapper_gang/code/paper_premade.dm @@ -3,7 +3,7 @@ default_raw_text = {" Remember employee, -
    The work-day starts with preparation, you're currently in deep-space nearby a Nanotrasen researching outpost, once you enter their sector there is no turning back. Before you set sail a small check-list should be completed: +
    The work-day starts with preparation, you're currently in deep-space nearby a Port Authority researching outpost, once you enter their sector there is no turning back. Before you set sail a small check-list should be completed:
    1. Meet with your partner and decide who wears which mask. 2. Sort out your equipment, including the contents of the lockers and crates. 3. Fill and link the portable ore-silo and flat-pack fabricator. @@ -33,7 +33,7 @@ IMPORTANT, make sure to understand the following: You may be considering plugging it straight into an engine, which is a great strategy to a successful day at work; if you are prepared to siphon such large pulses of energy. Temperature control is key, both in the work environment and of the miner's hardware. Set up space-coolers and don't leave the miner unattended for a long time! -What happens if you or your partner forget to manage the temperature? Besides the catastrophic consequence of blowing a giant crater into Nanotrasen assets, the significant loss of profits, or the very likely odds of employee casualty, it isn't the end of the work day. +What happens if you or your partner forget to manage the temperature? Besides the catastrophic consequence of blowing a giant crater into Port Authority assets, the significant loss of profits, or the very likely odds of employee casualty, it isn't the end of the work day. A truly committed sapper can continue by re-building the credit-miner, the knowledge of doing so being a data-fragment uploaded into the mind of each employee. Don't get to celebrating just yet, though. The recipe to crafting the machine is complex, and after what you've likely caused to nearby civilization; these materials won't be easy to come by. diff --git a/modular_doppler/modular_species/species_types/android/android.dm b/modular_doppler/modular_species/species_types/android/android.dm index cb2fe606e13a0..30752cc1dcc58 100644 --- a/modular_doppler/modular_species/species_types/android/android.dm +++ b/modular_doppler/modular_species/species_types/android/android.dm @@ -136,7 +136,7 @@ /datum/species/android/get_species_lore() return list( - "Androids are a synthetic species created by Nanotrasen as an intermediary between humans and cyborgs." + "Androids are a synthetic species created by the Port Authority as an intermediary between humans and cyborgs." ) #undef ENERGY_START_AMT diff --git a/modular_doppler/modular_species/species_types/primitive_genemod/primitive_genemod.dm b/modular_doppler/modular_species/species_types/primitive_genemod/primitive_genemod.dm index 9f4f732dcc978..546e4847dea98 100644 --- a/modular_doppler/modular_species/species_types/primitive_genemod/primitive_genemod.dm +++ b/modular_doppler/modular_species/species_types/primitive_genemod/primitive_genemod.dm @@ -123,7 +123,7 @@ "Physically, the Hearthkin always come in the form of demihumans; appearing similar to normal Earthlings, \ but with the tails, ears, and sometimes limbs of various arctic animals; wolves, bears, and felines to only name a few. \ They seem perfectly adapted to their lands of ice and mist, but find even the mild controlled temperatures of \ - NanoTrasen stations to be swelteringly hot. Their view of 'station' genemodders is that of 'halflings': \ + Port Authority stations to be swelteringly hot. Their view of 'station' genemodders is that of 'halflings': \ Ancestral bodies, but with the blood and spirit of the humans of Midgard, \ tending to look down on them even more than other aliens.", ) diff --git a/modular_doppler/wargaming/code/projectors.dm b/modular_doppler/wargaming/code/projectors.dm index 3abfc01bbada9..18729d3d1913a 100644 --- a/modular_doppler/wargaming/code/projectors.dm +++ b/modular_doppler/wargaming/code/projectors.dm @@ -1,6 +1,6 @@ /obj/item/wargame_projector name = "holographic projector" - desc = "A handy-dandy holographic projector developed by Nanotrasen Naval Command for playing wargames with, this one seems broken." + desc = "A handy-dandy holographic projector developed by the Port Authority Naval Command for playing wargames with, this one seems broken." icon = 'modular_doppler/wargaming/icons/projectors_and_holograms.dmi' icon_state = "projector" base_icon_state = "projector" @@ -157,7 +157,7 @@ /obj/item/wargame_projector/ships name = "holographic unit projector" - desc = "A handy-dandy holographic projector developed by Nanotrasen Naval Command for playing wargames with, this one creates markers for 'units'." + desc = "A handy-dandy holographic projector developed by the Port Authority Naval Command for playing wargames with, this one creates markers for 'units'." max_signs = 30 holosign_color = COLOR_BLUE_LIGHT holosign_type = /obj/structure/wargame_hologram/ship_marker @@ -181,7 +181,7 @@ /obj/item/wargame_projector/terrain name = "holographic terrain projector" - desc = "A handy-dandy holographic projector developed by Nanotrasen Naval Command for playing wargames with, this one creates markers for space 'terrain'." + desc = "A handy-dandy holographic projector developed by the Port Authority Naval Command for playing wargames with, this one creates markers for space 'terrain'." max_signs = 30 holosign_color = COLOR_GRAY holosign_type = /obj/structure/wargame_hologram/asteroid diff --git a/modular_doppler/xenoarch/code/modules/research/xenoarch/xenoarch_tool.dm b/modular_doppler/xenoarch/code/modules/research/xenoarch/xenoarch_tool.dm index f29654aad4043..30c556f5173fe 100644 --- a/modular_doppler/xenoarch/code/modules/research/xenoarch/xenoarch_tool.dm +++ b/modular_doppler/xenoarch/code/modules/research/xenoarch/xenoarch_tool.dm @@ -296,7 +296,7 @@ /obj/item/skillchip/xenoarch_magnifier name = "R3T3N-T1VE skillchip" - desc = "This biochip integrates with user's brain to enable the mastery of a specific skill. Consult certified Nanotrasen neurosurgeon before use. \ + desc = "This biochip integrates with user's brain to enable the mastery of a specific skill. Consult certified Port Authority neurosurgeon before use. \ There's a little face etched into the back of the skillchip, with buck teeth and goofy-looking glasses." auto_traits = list(TRAIT_XENOARCH_QUALIFIED) skill_name = "Xenoarchaeological Analysis" diff --git a/tgstation.dme b/tgstation.dme index 8a8457dae30b4..90b8b6b2e50eb 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -6704,9 +6704,48 @@ #include "modular_doppler\loadout_categories\categories\shoes.dm" #include "modular_doppler\loadout_categories\categories\toys.dm" #include "modular_doppler\loadout_categories\categories\undersuit.dm" +#include "modular_doppler\lore\overrides\crab17.dm" +#include "modular_doppler\lore\overrides\ert.dm" +#include "modular_doppler\lore\overrides\general_memories.dm" +#include "modular_doppler\lore\overrides\objective_items.dm" #include "modular_doppler\lore\overrides\paperwork.dm" +#include "modular_doppler\lore\overrides\pod_style.dm" #include "modular_doppler\lore\overrides\prisoner_crime.dm" -#include "modular_doppler\lore\overrides\secret_documents.dm" +#include "modular_doppler\lore\overrides\severe.dm" +#include "modular_doppler\lore\overrides\areas\away_content.dm" +#include "modular_doppler\lore\overrides\areas\centcom.dm" +#include "modular_doppler\lore\overrides\areas\mining.dm" +#include "modular_doppler\lore\overrides\items\blueprints.dm" +#include "modular_doppler\lore\overrides\items\bodybag.dm" +#include "modular_doppler\lore\overrides\items\charter.dm" +#include "modular_doppler\lore\overrides\items\clown_items.dm" +#include "modular_doppler\lore\overrides\items\defib.dm" +#include "modular_doppler\lore\overrides\items\hourglass.dm" +#include "modular_doppler\lore\overrides\items\religion.dm" +#include "modular_doppler\lore\overrides\items\secret_documents.dm" +#include "modular_doppler\lore\overrides\items\shields.dm" +#include "modular_doppler\lore\overrides\items\spear.dm" +#include "modular_doppler\lore\overrides\machinery\camera.dm" +#include "modular_doppler\lore\overrides\machinery\drone_dispenser.dm" +#include "modular_doppler\lore\overrides\machinery\newscaster_machine.dm" +#include "modular_doppler\lore\overrides\machinery\newspaper.dm" +#include "modular_doppler\lore\overrides\machinery\sleepers.dm" +#include "modular_doppler\lore\overrides\machinery\syndicatebomb.dm" +#include "modular_doppler\lore\overrides\machinery\computer\records\medical.dm" +#include "modular_doppler\lore\overrides\machinery\computer\records\security.dm" +#include "modular_doppler\lore\overrides\posters\contraband.dm" +#include "modular_doppler\lore\overrides\posters\official.dm" +#include "modular_doppler\lore\overrides\posters\poster_demotivational.dm" +#include "modular_doppler\lore\overrides\ruins\icemoon.dm" +#include "modular_doppler\lore\overrides\ruins\lavaland.dm" +#include "modular_doppler\lore\overrides\ruins\ruins.dm" +#include "modular_doppler\lore\overrides\ruins\space.dm" +#include "modular_doppler\lore\overrides\shuttles\emergency.dm" +#include "modular_doppler\lore\overrides\shuttles\whiteship.dm" +#include "modular_doppler\lore\overrides\station_traits\job_traits.dm" +#include "modular_doppler\lore\overrides\station_traits\negative_traits.dm" +#include "modular_doppler\lore\overrides\station_traits\neutral_traits.dm" +#include "modular_doppler\lore\overrides\station_traits\positive_traits.dm" #include "modular_doppler\loud_asay\code\loud_asay.dm" #include "modular_doppler\modular_antagonists\_dynamic_rulesets.dm" #include "modular_doppler\modular_antagonists\changeling\changeling.dm"