Moves krav maga action descriptions from names into descriptions (#90450)

## About The Pull Request

Splits krav maga action descriptions from names and puts them into the
desc variable instead.

## Why It's Good For The Game

If you hover over a krav maga action with tooltips on (especially lung
punch), the upper third of your screen will get covered by a tooltip
because its a part of the actions's name. This fixes that.

## Changelog
🆑
spellcheck: Moved krav maga action descriptions into descriptions
/🆑
This commit is contained in:
SmArtKar
2025-04-07 17:44:39 +02:00
committed by GitHub
parent e263f92af3
commit 38f9510fa1
+6 -3
View File
@@ -18,7 +18,8 @@
return ..()
/datum/action/neck_chop
name = "Neck Chop - Injures the neck, stopping the victim from speaking for a while."
name = "Neck Chop"
desc = "Injures the neck, stopping the victim from speaking for a while."
button_icon = 'icons/mob/actions/actions_items.dmi'
button_icon_state = "neckchop"
check_flags = AB_CHECK_INCAPACITATED|AB_CHECK_HANDS_BLOCKED|AB_CHECK_CONSCIOUS
@@ -36,7 +37,8 @@
source.streak = "neck_chop"
/datum/action/leg_sweep
name = "Leg Sweep - Trips the victim, knocking them down for a brief moment."
name = "Leg Sweep"
desc = "Trips the victim, knocking them down for a brief moment."
button_icon = 'icons/mob/actions/actions_items.dmi'
button_icon_state = "legsweep"
check_flags = AB_CHECK_INCAPACITATED|AB_CHECK_HANDS_BLOCKED|AB_CHECK_CONSCIOUS
@@ -54,7 +56,8 @@
source.streak = "leg_sweep"
/datum/action/lung_punch//referred to internally as 'quick choke'
name = "Lung Punch - Delivers a strong punch just above the victim's abdomen, constraining the lungs. The victim will be unable to breathe for a short time."
name = "Lung Punch"
desc = "Delivers a strong punch just above the victim's abdomen, constraining the lungs. The victim will be unable to breathe for a short time."
button_icon = 'icons/mob/actions/actions_items.dmi'
button_icon_state = "lungpunch"
check_flags = AB_CHECK_INCAPACITATED|AB_CHECK_HANDS_BLOCKED|AB_CHECK_CONSCIOUS