-
Notifications
You must be signed in to change notification settings - Fork 557
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'forest/pred/voiceline' into forest/pred/HOLDER
- Loading branch information
Showing
15 changed files
with
387 additions
and
166 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
145 changes: 0 additions & 145 deletions
145
code/modules/mob/living/carbon/human/species/emote-yautja.dm
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
code/modules/mob/living/carbon/human/species/yautja/_emote.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/datum/emote/living/carbon/human/yautja | ||
species_type_allowed_typecache = list(/datum/species/yautja) | ||
keybind_category = CATEGORY_YAUTJA_EMOTE | ||
emote_type = EMOTE_AUDIBLE | ||
/// A general category for the emote, for use in the Yautja emote panel. See [code/__DEFINES/emote_panels.dm] for categories. | ||
var/category = "" | ||
/// Override text for the emote to be displayed in the Yautja emote panel | ||
var/override_say = "" | ||
/// Override for being in panel or not | ||
var/no_panel = FALSE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
code/modules/mob/living/carbon/human/species/yautja/fake_sounds.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/datum/emote/living/carbon/human/yautja/fake_sound | ||
category = YAUTJA_EMOTE_CATEGORY_FAKESOUND | ||
|
||
/datum/emote/living/carbon/human/yautja/fake_sound/aliengrowl | ||
key = "aliengrowl" | ||
|
||
/datum/emote/living/carbon/human/yautja/fake_sound/aliengrowl/get_sound(mob/living/user) | ||
return pick('sound/voice/alien_growl1.ogg', 'sound/voice/alien_growl2.ogg') | ||
|
||
/datum/emote/living/carbon/human/yautja/fake_sound/alienhelp | ||
key = "alienhelp" | ||
|
||
/datum/emote/living/carbon/human/yautja/fake_sound/alienhelp/get_sound(mob/living/user) | ||
return pick('sound/voice/alien_help1.ogg', 'sound/voice/alien_help2.ogg') | ||
|
||
/datum/emote/living/carbon/human/yautja/fake_sound/malescream | ||
key = "malescream" | ||
sound = "male_scream" | ||
|
||
/datum/emote/living/carbon/human/yautja/fake_sound/femalescream | ||
key = "femalescream" | ||
sound = "female_scream" |
50 changes: 50 additions & 0 deletions
50
code/modules/mob/living/carbon/human/species/yautja/fake_voice.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/datum/emote/living/carbon/human/yautja/voice | ||
category = YAUTJA_EMOTE_CATEGORY_VOICE | ||
|
||
/datum/emote/living/carbon/human/yautja/voice/anytime | ||
key = "anytime" | ||
sound = 'sound/voice/pred_anytime.ogg' | ||
|
||
|
||
/datum/emote/living/carbon/human/yautja/voice/helpme | ||
key = "helpme" | ||
sound = 'sound/voice/pred_helpme.ogg' | ||
volume = 25 | ||
|
||
|
||
/datum/emote/living/carbon/human/yautja/voice/iseeyou | ||
key = "iseeyou" | ||
sound = 'sound/hallucinations/i_see_you2.ogg' | ||
|
||
|
||
/datum/emote/living/carbon/human/yautja/voice/itsatrap | ||
key = "itsatrap" | ||
sound = 'sound/voice/pred_itsatrap.ogg' | ||
volume = 25 | ||
|
||
|
||
/datum/emote/living/carbon/human/yautja/voice/overhere | ||
key = "overhere" | ||
sound = 'sound/voice/pred_overhere.ogg' | ||
volume = 25 | ||
|
||
|
||
/datum/emote/living/carbon/human/yautja/voice/turnaround | ||
key = "turnaround" | ||
sound = 'sound/voice/pred_turnaround.ogg' | ||
volume = 25 | ||
|
||
|
||
/datum/emote/living/carbon/human/yautja/voice/comeonout | ||
key = "comeonout" | ||
sound = 'sound/voice/pred_come_on_out.ogg' | ||
|
||
|
||
/datum/emote/living/carbon/human/yautja/voice/overthere | ||
key = "overthere" | ||
sound = 'sound/voice/pred_over_there.ogg' | ||
|
||
|
||
/datum/emote/living/carbon/human/yautja/voice/uglyfreak | ||
key = "uglyfreak" | ||
sound = 'sound/voice/pred_ugly_freak.ogg' |
Oops, something went wrong.