mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-08-23 12:47:13 +01:00
AKA [PORT] Refactors smiting, adds smite build mode tgstation/tgstation#55327 !! NOT!! A!! RUNNING!! BUILD!! LIGHTNING IS BROKEN IMMERSE IS COMMENTED OUT HALF OF THIS SHIT IS BROKEN DO NOT BASE YOURSELF ON THIS BUILD!!
10 lines
300 B
Plaintext
10 lines
300 B
Plaintext
/// Bonks the target
|
|
/datum/smite/bonk
|
|
name = "Bonk"
|
|
|
|
/datum/smite/bonk/effect(client/user, mob/living/target)
|
|
. = ..()
|
|
playsound(target, 'modular_splurt/sound/misc/bonk.ogg', 100, 1)
|
|
target.AddElement(/datum/element/squish, 60 SECONDS)
|
|
to_chat(target, "<span class='warning big'>Bonk.</span>")
|