From ba4e2a8be8af97a761ec3bba2e129549d9c08055 Mon Sep 17 00:00:00 2001 From: Baviaan Date: Sun, 19 Mar 2023 23:08:06 +0000 Subject: [PATCH] Add rainy and golden lure --- meowth/exts/wild/wild_cog.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/meowth/exts/wild/wild_cog.py b/meowth/exts/wild/wild_cog.py index d5691ee44..e6e8ffa7d 100644 --- a/meowth/exts/wild/wild_cog.py +++ b/meowth/exts/wild/wild_cog.py @@ -405,6 +405,10 @@ def name(self): return 'Magnetic Lure Module' if self.kind == 'mossy': return 'Mossy Lure Module' + if self.kind == 'rainy': + return 'Rainy Lure Module' + if self.kind == 'golden': + return 'Golden Lure Module' def img_url(self): url = ("https://raw.githubusercontent.com/" @@ -723,7 +727,7 @@ async def lure(self, ctx, kind, *, location: Pokestop): """Report a lured Pokestop. **Arguments** - *kind:* Glacial, Mossy or Magnetic + *kind:* Glacial, Mossy, Magnetic, Rainy or Golden *location:* The location of the lure. If *location* is the name of a known Pokestop, @@ -732,7 +736,7 @@ async def lure(self, ctx, kind, *, location: Pokestop): **Example:** `!lure glacial city park`""" - word_list = ["glacial", "mossy", "magnetic"] + word_list = ["glacial", "mossy", "magnetic", "rainy", "golden"] result = fuzzymatch.get_match(word_list, kind) kind = result[0] if not kind: