mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-13 09:05:11 +01:00
79a48b063a
Co-authored-by: Ben10Omintrix <138636438+Ben10Omintrix@users.noreply.github.com> Co-authored-by: SmArtKar <44720187+SmArtKar@users.noreply.github.com> Co-authored-by: Lucy <lucy@absolucy.moe>
21 lines
583 B
Plaintext
21 lines
583 B
Plaintext
/datum/smite/hitsplat
|
|
name = "Hitsplat"
|
|
|
|
/datum/smite/hitsplat/effect(client/user, mob/living/target)
|
|
. = ..()
|
|
target.AddComponent(/datum/component/hitsplat, /obj/effect/overlay/vis/hitsplat/lore_accurate)
|
|
|
|
|
|
// Dragon dagger spec spam.
|
|
/datum/smite/hitsplat/stackout
|
|
name = "Stackout (Hitsplat)"
|
|
|
|
/datum/smite/hitsplat/stackout/effect(client/user, mob/living/target)
|
|
. = ..()
|
|
for(var/attack in 1 to 4)
|
|
playsound(target, SFX_SWING_HIT, 50, TRUE)
|
|
target.apply_damage(rand(0, 50))
|
|
target.apply_damage(rand(0, 50))
|
|
// dragon dagger has a 4 tick attack
|
|
sleep(2.4 SECONDS)
|