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

adds a cool new easter-egg sound effect to berzerker ravager when 10+ humans are in the eviscerate range #6478

Closed
wants to merge 3 commits 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
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,8 @@
xeno.emote("roar")
xeno.spin_circle()

var/hit_count = 0

for (var/mob/living/carbon/human in orange(xeno, range))
if(!isxeno_human(human) || xeno.can_not_harm(human))
continue
Expand All @@ -394,6 +396,10 @@
playsound(get_turf(human), "alien_claw_flesh", 30, 1)

human.apply_armoured_damage(get_xeno_damage_slash(human, damage), ARMOR_MELEE, BRUTE, "chest", 20)
hit_count++

if(hit_count >= 10)
playsound(get_turf(xeno), 'sound/misc/monster_kill.ogg', 50, FALSE)

var/valid_count = 0
var/list/mobs_in_range = oviewers(lifesteal_range, xeno)
Expand Down
Binary file added sound/misc/monster_kill.ogg
Binary file not shown.
Loading