Skip to content

Commit

Permalink
Add RPS into the emote panel (#1319)
Browse files Browse the repository at this point in the history
## Что этот PR делает
Добавил «камень-ножницы-бумага» в эмоут панель

## Почему это хорошо для игры
Можно играть в «камень-ножницы-бумага»

## Changelog

:cl:
add: «Камень-ножницы-бумага» теперь в эмоут панели, можете играть
/:cl:
  • Loading branch information
AyIong committed Jun 11, 2024
1 parent 37a201d commit 3504f2a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions modular_ss220/_defines220/code/emote.dm
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@
#define EMOTE_HUMAN_WINK "Подмигнуть"
#define EMOTE_HUMAN_HIGHFIVE "Дать пять"
#define EMOTE_HUMAN_HANDSHAKE "Пожать руку"
#define EMOTE_HUMAN_RPS "Камень, ножницы, бумага"
#define EMOTE_HUMAN_SNAP "Щёлкнуть пальцами"
#define EMOTE_HUMAN_CRACK "Хрустеть пальцами"
#define EMOTE_HUMAN_FART "Пёрнуть"
Expand Down
3 changes: 3 additions & 0 deletions modular_ss220/emotes/code/emote_names.dm
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,9 @@
/datum/emote/living/carbon/human/highfive/handshake
name = EMOTE_HUMAN_HANDSHAKE

/datum/emote/living/carbon/human/highfive/rps
name = EMOTE_HUMAN_RPS

/datum/emote/living/carbon/human/hug
name = EMOTE_HUMAN_HUG

Expand Down
5 changes: 5 additions & 0 deletions modular_ss220/emotes/code/emote_verbs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,11 @@
set category = "Эмоции"
emote("slap", intentional = TRUE)

/mob/living/carbon/human/verb/emote_rps()
set name = "" + EMOTE_HUMAN_RPS + " "
set category = "Эмоции"
emote("rps", intentional = TRUE)

/// Exercise Emotes ///
/mob/living/carbon/human/verb/emote_exercise()
set name = "" + EMOTE_EXERCISE
Expand Down

0 comments on commit 3504f2a

Please sign in to comment.