Module:ActorData
This data is used by the VOD script to populate information about actors in episode thumbnail captions and check speaker tags (e.g. MARISHA:
) in transcripts. If new actors appear on campaign or series episodes, please add them here. The VOD script understands combinations like LAURA and SAM:
. 'otherSpeakerTags'
is for anything other than an individual actor who might be credited with speaking, such as 'ALL' or 'SIRI'.
return {
['actors'] = {
-- main cast
{'Ashley Johnson', 'ASHLEY'},
{'Laura Bailey', 'LAURA'},
{"Liam O'Brien", 'LIAM'},
{'Marisha Ray', 'MARISHA'},
{'Matthew Mercer', 'MATT'},
{'Sam Riegel', 'SAM'},
{'Taliesin Jaffe', 'TALIESIN'},
{'Travis Willingham', 'TRAVIS'},
-- guest stars
{'Aabria Iyengar', 'AABRIA'},
{'Abubakar Salim', 'ABUBAKAR'},
{'Aimee Carrero', 'AIMEE'},
{'Alexander Ward', 'ALEX'},
{'Anjali Bhimani', 'ANJALI'},
{'Ashly Burch', 'ASHLY'},
{'Brennan Lee Mulligan', 'BRENNAN'},
{'Christian Navarro', 'CHRISTIAN'},
{'Dani Carr', 'DANI'},
{'Emily Axford', 'EMILY'},
{'Erika Ishii', 'ERIKA'},
{'Gina Darling', 'GINA'},
{'Imari Williams', 'IMARI'},
{'Jared Goldstein', 'JARED'},
{'Krystina Arielle', 'KRYSTINA'},
{'Luis Carazo', 'LUIS'},
{'Matt Roen', 'MATT'},
{'Nick Marini', 'NICK'},
{'Noshir Dalal', 'NOSHIR'},
{'Omar Najam', 'OMAR'},
{'Robbie Daymond', 'ROBBIE'},
{'Sara Wile', 'SARA'},
{'Spenser Starke', 'SPENSER'},
{'Utkarsh Ambudkar', 'UTKARSH'},
{'Xanthe Huynh', 'XANTHE'},
{'Xen', 'XEN'},
{'Zehra Fazal', 'ZEHRA'},
},
['otherSpeakerTags'] = {
'ALL',
'EVERYONE',
'EVERYBODY',
'GROUP',
'OTHERS',
'SEVERAL',
'BOTH',
'ANNOUNCER',
'NARRATOR',
'SPEAKER',
'PRESENTER',
'VO',
'VOICE',
'OFFSCREEN',
'OFFSTAGE',
'OFF',
'CAMERA',
'SCREEN',
'PHONE',
'IPHONE',
'SIRI',
'TEAM',
'CREW',
'CAST',
'AUDIENCE',
'MEMBERS',
'MEMBER',
'PRODUCER',
'COMPUTER',
},
}