Skip to content

Commit

Permalink
[MIRROR] New voices for the chorus
Browse files Browse the repository at this point in the history
  • Loading branch information
SierraKomodo authored and LordNest committed Jan 8, 2025
1 parent 5c05f1a commit edbd49c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion packs/legion/_globals.dm
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,12 @@ GLOBAL_LIST_INIT(legion_last_words_generic, list(\


/// List of strings. Pool of individual voices from harvested player characters from this round to be used for legion broadcast and narration events. Format should be `"Character Name" => "Last Message/Thought"`
GLOBAL_LIST_INIT(legion_last_words_player, list(list("Urist McTestFace", "I ded plz restart")))
GLOBAL_LIST_INIT(legion_last_words_player, list(\
list("Andrew Caine", "... I accept your terms. Me and my ship in exchange for my crew escaping unharmed."),\
list("F.I.N.D.", "REYES! REEEEEEYES! REEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEYES!"),\
list("Ziva Karim-Kirilisav", "OH GOD YOU'RE REAL?! - HELP!"),\
list("Tatyanna Svetka", "Hello? Who's there- WHAT THE FUCK ARE-"),\
list("Adrian Schmidt", "Frey, please. I'm scared. Mom. Maria. Trois. Molerat. Clen. Bunten. Please. Someone please..."),\
list("Brock Bunten", "This isn't what was supposed to happen. They're intelligent. They're understanding. Why the hell did they eat Schmidt? I just wanted to try talking. I just want to understand- no, NO, NO, STAY AWAY! AH, FUCK, LET GO, FUCK, MY NECK, STOP, I CAN'T DO THAT-- AHHHH!--"),\
list("Karl Emberchest", "GET THE HELL OUTTA HERE!")\
))
2 changes: 1 addition & 1 deletion packs/legion/legion_narrate.dm
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
var/message_origin = ""
var/message_contents
// Choose a message to display
if (rand(0, 100) <= 20)
if (rand(0, 100) <= 30)
if (!length(GLOB.legion_last_words_player) || rand(0, 1))
message_contents = "A voice rises above the chorus, \"[pick(GLOB.legion_last_words_generic)]\""
message = message_contents
Expand Down

0 comments on commit edbd49c

Please sign in to comment.