Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MIRROR] Add event character last thoughts to legion narrations #3005

Open
wants to merge 1 commit into
base: dev-sierra
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions packs/legion/_globals.dm
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,36 @@ GLOBAL_VAR_CONST(legion_warp_sound, 'packs/legion/sounds/legion_arrive.ogg')
GLOBAL_LIST_INIT(legion_voices_sounds, list(\
'packs/legion/sounds/legion_voices1.ogg'\
))
<<<<<<< ours
=======


/// List of strings. Pool of generic messages to use for legion broadcast and narration events.
GLOBAL_LIST_INIT(legion_narrations, list(\
"A cacaphony of voices suddenly floods you. You can't make anything out.",\
"The voices. There's so many voices. They're all crying out in endless agony.",\
"You hear a thousand voices all at once, each trying to scream over the rest. The sound drowns itself out.",\
"A tidal force of voices shakes your very being, each one shifting in volume and pitch to such degree that it's nothing but an overbearing white noise.",\
"A wave of voices coalesce and your ears ring as if struck by a hammer.",\
"A flood of voices crash against eachother with their pleas, their cries and their dying breathes in never-ending throes of noise, sometimes they blend together into nothingness-- and then they come back, stronger and more desperate.",\
"A turgid symphony assaults you. Fleshy primordial noises are all you can make out. This place is where one abandons their dreams."\
))


/// List of strings. Pool of generic individual voices that can be heard for legion broadcast and narration events.
GLOBAL_LIST_INIT(legion_last_words_generic, list(\
"I don't want to die!",\
"No, get away!",\
"I give up. Just do it already.",\
"I'm so scared...",\
"Help me!",\
"It's so hot!",\
))


/// 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("Andrew Caine", "... I accept your terms. Me and my ship in exchange for my crew escaping unharmed."),\
list("F.I.N.D.", "I have one final request. Destroy my positronic matrix so they can't have it.")\
))
>>>>>>> theirs
Loading