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

(SOUND/MUSIC) Adds Lich shit #531

Merged
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
4 changes: 3 additions & 1 deletion code/modules/antagonists/roguetown/villain/lich.dm
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
to_chat(owner.current, span_userdanger("The secret of immortality is mine, but this is not enough. A thousand lichdoms have risen and fallen over the eras. Mine will be the one to last."))
owner.announce_objectives()
..()
owner.current.playsound_local(get_turf(owner.current), 'sound/music/lichintro.ogg', 80, FALSE, pressure_affected = FALSE)

/datum/antagonist/lich/proc/skele_look()
var/mob/living/carbon/human/L = owner.current
Expand Down Expand Up @@ -60,7 +61,7 @@
ADD_TRAIT(L, TRAIT_HEAVYARMOR, "[type]")
ADD_TRAIT(L, TRAIT_CABAL, "[type]")
ADD_TRAIT(L, TRAIT_DEATHSIGHT, "[type]")
L.cmode_music = 'sound/music/cmode/antag/combat_cult.ogg'
L.cmode_music = 'sound/music/cmode/antag/CombatLich.ogg'
L.faction = list("undead")
if(L.charflaw)
QDEL_NULL(L.charflaw)
Expand Down Expand Up @@ -122,6 +123,7 @@
H.mind.AddSpell(new /obj/effect/proc_holder/spell/invoked/projectile/sickness)
H.mind.AddSpell(new /obj/effect/proc_holder/spell/invoked/projectile/fetch)
H.mind.AddSpell(new /obj/effect/proc_holder/spell/invoked/diagnose/secular)
H.dna.species.soundpack_m = new /datum/voicepack/lich()
H.ambushable = FALSE

addtimer(CALLBACK(H, TYPE_PROC_REF(/mob/living/carbon/human, choose_name_popup), "LICH"), 5 SECONDS)
Expand Down
20 changes: 20 additions & 0 deletions code/modules/mob/living/carbon/human/voicepacks/other/lich.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
/datum/voicepack/lich/get_sound(soundin, modifiers)
var/used
switch(soundin)
if("firescream")
used = list('sound/vo/lich/firescream (1).ogg','sound/vo/lich/firescream (2).ogg')
if("laugh")
used = list('sound/vo/lich/laugh (1).ogg','sound/vo/lich/laugh (2).ogg','sound/vo/lich/laugh (3).ogg')
if("painscream")
used = list('sound/vo/lich/painscream (1).ogg')
if("rage")
used = list('sound/vo/lich/rage (1).ogg')
if("deathgurgle")
used = pick('sound/vo/lich/deathgurgle (1).ogg')
if("hmm")
used = 'sound/vo/lich/hmm.ogg'
if("groan")
used = list('sound/vo/lich/groan (1).ogg')
if(!used)
used = ..(soundin, modifiers)
return used
Binary file added sound/music/cmode/antag/CombatLich.ogg
Binary file not shown.
Binary file added sound/music/lichintro.ogg
Binary file not shown.
Binary file added sound/vo/lich/deathgurgle (1).ogg
Binary file not shown.
Binary file added sound/vo/lich/firescream (1).ogg
Binary file not shown.
Binary file added sound/vo/lich/firescream (2).ogg
Binary file not shown.
Binary file added sound/vo/lich/groan (1).ogg
Binary file not shown.
Binary file added sound/vo/lich/hmm.ogg
Binary file not shown.
Binary file added sound/vo/lich/laugh (1).ogg
Binary file not shown.
Binary file added sound/vo/lich/laugh (2).ogg
Binary file not shown.
Binary file added sound/vo/lich/laugh (3).ogg
Binary file not shown.
Binary file added sound/vo/lich/painscream (1).ogg
Binary file not shown.
Binary file added sound/vo/lich/rage (1).ogg
Binary file not shown.
1 change: 1 addition & 0 deletions stonekeep.dme
Original file line number Diff line number Diff line change
Expand Up @@ -1540,6 +1540,7 @@
#include "code\modules\mob\living\carbon\human\voicepacks\male\wizard.dm"
#include "code\modules\mob\living\carbon\human\voicepacks\male\zeth.dm"
#include "code\modules\mob\living\carbon\human\voicepacks\other\goblin.dm"
#include "code\modules\mob\living\carbon\human\voicepacks\other\lich.dm"
#include "code\modules\mob\living\carbon\human\voicepacks\other\orc.dm"
#include "code\modules\mob\living\carbon\human\voicepacks\other\skeleton.dm"
#include "code\modules\mob\living\carbon\human\voicepacks\other\werewolf.dm"
Expand Down
Loading