diff options
| author | 2020-09-22 17:15:43 +0530 | |
|---|---|---|
| committer | 2020-09-22 17:15:43 +0530 | |
| commit | 3609a35d5e50f88d7189f0124eadcadd220768bc (patch) | |
| tree | ac16db8985935cc132402a161bd518f4aeb0273c | |
| parent | added json file for zodiac explantion (diff) | |
added zodiac sign list
Diffstat (limited to '')
| -rw-r--r-- | bot/exts/valentines/valentine_zodiac.py | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/bot/exts/valentines/valentine_zodiac.py b/bot/exts/valentines/valentine_zodiac.py index ef9ddc78..5d36314d 100644 --- a/bot/exts/valentines/valentine_zodiac.py +++ b/bot/exts/valentines/valentine_zodiac.py @@ -13,6 +13,9 @@ log = logging.getLogger(__name__)  LETTER_EMOJI = ':love_letter:'  HEART_EMOJIS = [":heart:", ":gift_heart:", ":revolving_hearts:", ":sparkling_heart:", ":two_hearts:"] +zodiac_signs = ["Aries", "Taurus", "Gemini", "Cancer", "Leo", "Virgo", "Libra", +                "Scorpio", "Sagittarius", "Capricorn", "Aquarius", "Pisces"] +  class ValentineZodiac(commands.Cog):      """A Cog that returns a counter compatible zodiac sign to the given user's zodiac sign."""  |