verb macro system (pr 1/3) (#96720)

## About The Pull Request

just macro-izes all the usages of verbs in the codebase as a
pre-requisite to my follow up pr that serializes all the verbs arguments
so we can tgui-ify the command bar, so we can then put it on the
onscreen map.

this also basically does the same as #94487 so can easily be integrated
into the verb queueing stuff... but does not actually do any verb
queueing by itself. basically im just trying to be
https://github.com/tgstation/tgstation/labels/Atomic
## Why It's Good For The Game
it doesn't really do anything by itself but it does let us do more stuff

## Changelog
🆑
code: the backend to all verbs in the game has been played with, please
report any issues to github
/🆑

---------

Co-authored-by: harryob <55142896+harryob@users.noreply.github.com>
This commit is contained in:
harry
2026-07-04 02:45:07 -04:00
committed by GitHub
co-authored by harryob
parent e5afe71e87
commit ff006aa4a5
79 changed files with 369 additions and 565 deletions
+2 -6
View File
@@ -3,9 +3,7 @@
*
* See [/mob/living/basic/drone/var/laws]
*/
/mob/living/basic/drone/verb/check_laws()
set category = "Drone"
set name = "Check Laws"
GAME_VERB(/mob/living/basic/drone, check_laws, "Check Laws", "Drone")
to_chat(src, "<b>Drone Laws</b>")
to_chat(src, laws)
@@ -21,9 +19,7 @@
*
* Attaches area name to message
*/
/mob/living/basic/drone/verb/drone_ping()
set category = "Drone"
set name = "Drone ping"
GAME_VERB(/mob/living/basic/drone, drone_ping, "Drone ping", "Drone")
var/alert_s = input(src,"Alert severity level","Drone ping",null) as null|anything in list("Low","Medium","High","Critical")