From 5e0bdfbc90e7b5641aa2e4dc10d6760aac0bbd1a Mon Sep 17 00:00:00 2001 From: Alien <68290943+alien3301@users.noreply.github.com> Date: Mon, 24 Nov 2025 10:44:57 +0200 Subject: [PATCH] Kaza Ruk balloon alerts (#94097) ## About The Pull Request Changing attacks has balloon alerts ## Why It's Good For The Game Dont wanna look in chat ## Changelog :cl: qol: Kaza Ruk has balloon alerts when switching attacks /:cl: --------- Co-authored-by: John Doe --- code/datums/martial/kaza_ruk.dm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/code/datums/martial/kaza_ruk.dm b/code/datums/martial/kaza_ruk.dm index c70624369cd..5dc043c3ac9 100644 --- a/code/datums/martial/kaza_ruk.dm +++ b/code/datums/martial/kaza_ruk.dm @@ -41,9 +41,11 @@ var/datum/martial_art/source = target if (source.streak == "neck_chop") owner.visible_message(span_danger("[owner] assumes a neutral stance."), "Your next attack is cleared.") + owner.balloon_alert(owner, "cleared") source.streak = "" else owner.visible_message(span_danger("[owner] assumes the Neck Chop stance!"), "Your next attack will be a Neck Chop.") + owner.balloon_alert(owner, "neck chop") source.streak = "neck_chop" /datum/action/low_sweep @@ -60,9 +62,11 @@ var/datum/martial_art/source = target if (source.streak == "low_sweep") owner.visible_message(span_danger("[owner] assumes a neutral stance."), "Your next attack is cleared.") + owner.balloon_alert(owner, "cleared") source.streak = "" else owner.visible_message(span_danger("[owner] assumes the Low Sweep stance!"), "Your next attack will be a Low Sweep.") + owner.balloon_alert(owner, "low sweep") source.streak = "low_sweep" /datum/action/lung_punch//referred to internally as 'quick choke' @@ -79,9 +83,11 @@ var/datum/martial_art/source = target if (source.streak == "quick_choke") owner.visible_message(span_danger("[owner] assumes a neutral stance."), "Your next attack is cleared.") + owner.balloon_alert(owner, "cleared") source.streak = "" else owner.visible_message(span_danger("[owner] assumes the Lung Punch stance!"), "Your next attack will be a Lung Punch.") + owner.balloon_alert(owner, "lung punch") source.streak = "quick_choke"//internal name for lung punch /datum/martial_art/kaza_ruk/activate_style(mob/living/new_holder)