aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Preocts <[email protected]>2024-02-07 18:23:57 -0500
committerGravatar GitHub <[email protected]>2024-02-07 15:23:57 -0800
commit35a2fd35c8c6d86bfe14b5db64d150c34f62520c (patch)
tree85feef511f442d4edf7701b7bc1371aee15adc75
parentMove ruff config to new sections (diff)
Add additional heart emoticon options for react (#1448)
-rw-r--r--bot/exts/holidays/holidayreact.py26
1 files changed, 24 insertions, 2 deletions
diff --git a/bot/exts/holidays/holidayreact.py b/bot/exts/holidays/holidayreact.py
index ef44115a..336b2f84 100644
--- a/bot/exts/holidays/holidayreact.py
+++ b/bot/exts/holidays/holidayreact.py
@@ -28,8 +28,30 @@ class Holiday(NamedTuple):
triggers: dict[str, Trigger]
-Valentines = Holiday([Month.FEBRUARY], {
- "heart": Trigger(r"\b((l|w)(ove|uv)(s|lies?)?|hearts?)\b", ["\u2764\uFE0F"]),
+Valentines = Holiday(
+ [Month.FEBRUARY],
+ {
+ "heart": Trigger(
+ r"\b((l|w)(ove|uv)(s|lies?)?|hearts?)\b",
+ [
+ "\u2764\ufe0f", # heart
+ "\u2665\ufe0f", # hearts
+ "\U0001f49c", # purple_heart
+ "\U0001f49f", # heart_decoration
+ "\U0001f5a4", # black_heart
+ "\U0001f499", # blue_heart
+ "\U0001f90e", # brown_heart
+ "\U0001f49d", # gift_heart
+ "\U0001f49a", # green_heart
+ "\U0001fa76", # grey_heart
+ "\U0001fa75", # light_blue_heart
+ "\U0001f9e1", # orange_heart
+ "\U0001f49b", # yellow_heart
+ "\U0001f49e", # revolving_hearts
+ "\U0001f496", # sparkling_heart
+ "\U0001f90d", # white_heart
+ ],
+ )
}
)
Easter = Holiday([Month.APRIL], {