42 lines
1.2 KiB
Python
42 lines
1.2 KiB
Python
'''
|
|
Listens to keywords in messages and
|
|
reacts accordingly
|
|
'''
|
|
import discord
|
|
from discord.ext import commands
|
|
|
|
class Reactions(commands.Cog):
|
|
|
|
def __init__(self, client: discord.Client):
|
|
self.client = client
|
|
|
|
@commands.Cog.listener()
|
|
async def on_message(self, message: discord.Message):
|
|
if message.author.bot:
|
|
return
|
|
|
|
# Flags
|
|
if "canada" in message.content.lower():
|
|
await message.add_reaction("🇨🇦")
|
|
|
|
if "germany" in message.content.lower():
|
|
await message.add_reaction("🇩🇪")
|
|
|
|
if "uk" in message.content.lower() or "britain" in message.content.lower():
|
|
await message.add_reaction("🇬🇧")
|
|
|
|
if "china" in message.content.lower():
|
|
await message.add_reaction("🇨🇳")
|
|
|
|
if "america" in message.content.lower() or " usa" in message.content.lower():
|
|
await message.add_reaction("🇬")
|
|
await message.add_reaction("🇦")
|
|
await message.add_reaction("🇾")
|
|
|
|
|
|
if "extremejoy" in message.content.lower():
|
|
await message.add_reaction("<:extremejoy:612424729969819648>")
|
|
|
|
|
|
def setup(client: discord.Client):
|
|
client.add_cog(Reactions(client)) |