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

[Skyrat Mirror] [MODULAR] Spooky Screams for Plasma Boys 2: The Re-Spoopening #74

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion modular_skyrat/modules/emotes/code/dna_screams.dm
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
femalescreamsounds = null

/datum/species/plasmaman
screamsounds = list('modular_skyrat/modules/emotes/sound/voice/scream_skeleton.ogg')
screamsounds = list('sound/voice/plasmaman/plasmeme_scream_1.ogg', 'sound/voice/plasmaman/plasmeme_scream_2.ogg', 'sound/voice/plasmaman/plasmeme_scream_3.ogg')
femalescreamsounds = null

/datum/species/vox
Expand Down
13 changes: 12 additions & 1 deletion modular_skyrat/modules/emotes/code/scream_datums.dm
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,10 @@ GLOBAL_LIST_EMPTY(scream_types)

/datum/scream_type/ethereal
name = "Ethereal Scream"
male_screamsounds = list('sound/voice/ethereal/ethereal_scream_1.ogg', 'sound/voice/ethereal/ethereal_scream_2.ogg', 'sound/voice/ethereal/ethereal_scream_3.ogg')
male_screamsounds = list(
'sound/voice/ethereal/ethereal_scream_1.ogg',
'sound/voice/ethereal/ethereal_scream_2.ogg',
'sound/voice/ethereal/ethereal_scream_3.ogg')
female_screamsounds = null

//DONATOR SCREAMS
Expand All @@ -118,3 +121,11 @@ GLOBAL_LIST_EMPTY(scream_types)
name = "Skeleton Scream"
male_screamsounds = list('modular_skyrat/modules/emotes/sound/voice/scream_skeleton.ogg')
female_screamsounds = null

/datum/scream_type/plasmaman
name = "Plasmaman Scream"
male_screamsounds = list(
'sound/voice/plasmaman/plasmeme_scream_1.ogg',
'sound/voice/plasmaman/plasmeme_scream_2.ogg',
'sound/voice/plasmaman/plasmeme_scream_3.ogg')
female_screamsounds = null