mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-26 13:37:58 +01:00
* 1 * 2 * 3 * make it (mostly) work * character-based emotes * bump SQL version * where did you go little s * no more raw json * partial AA review * makes it not coded as stupidly * donor exclusive emotes 4-7 * ship it Co-authored-by: AffectedArc07 <25063394+AffectedArc07@users.noreply.github.com> * Update code/datums/keybindings/emote.dm Co-authored-by: AffectedArc07 <25063394+AffectedArc07@users.noreply.github.com> * spacings Co-authored-by: AffectedArc07 <25063394+AffectedArc07@users.noreply.github.com>
22 lines
739 B
Plaintext
22 lines
739 B
Plaintext
GLOBAL_LIST_EMPTY(keybindings)
|
|
|
|
GLOBAL_LIST_INIT(keybindings_groups, list(
|
|
"Movement" = KB_CATEGORY_MOVEMENT,
|
|
"Living" = KB_CATEGORY_LIVING,
|
|
"General" = KB_CATEGORY_MOB,
|
|
"General Emote" = KB_CATEGORY_EMOTE_GENERIC,
|
|
"Human" = KB_CATEGORY_HUMAN,
|
|
"Human Emotes" = KB_CATEGORY_EMOTE_HUMAN,
|
|
"Carbon" = KB_CATEGORY_CARBON,
|
|
"Carbon Emote" = KB_CATEGORY_EMOTE_CARBON,
|
|
"Robot" = KB_CATEGORY_ROBOT,
|
|
"Silicon" = KB_CATEGORY_SILICON,
|
|
"Silicon/IPC Emote" = KB_CATEGORY_EMOTE_SILICON,
|
|
"Animal Emote" = KB_CATEGORY_EMOTE_ANIMAL,
|
|
"Brain Emote" = KB_CATEGORY_EMOTE_BRAIN,
|
|
"Alien Emote" = KB_CATEGORY_EMOTE_ALIEN,
|
|
"Admin" = KB_CATEGORY_ADMIN,
|
|
"Other" = KB_CATEGORY_UNSORTED,
|
|
"Custom Emotes (Character-based)" = KB_CATEGORY_EMOTE_CUSTOM,
|
|
))
|