2017-12-02 11:27:16 +01:00
|
|
|
import discord
|
|
|
|
from discord.ext import commands
|
|
|
|
|
|
|
|
licorne_symbole = "🦄"
|
2018-01-29 21:20:24 +01:00
|
|
|
licorne = ["licorne", "pony"]
|
2017-12-02 11:27:16 +01:00
|
|
|
|
|
|
|
caca_symbole = "💩"
|
|
|
|
caca = ["caca", "merde"]
|
|
|
|
|
|
|
|
sel_symbole = ":PJSalt:232086190545829888"
|
|
|
|
sel = ["sel", "salty", "putain"]
|
|
|
|
|
|
|
|
troll_symbole = ":troll:232080409083641856"
|
|
|
|
troll = ["troll", "trol", "trololo"]
|
|
|
|
|
2018-01-01 19:19:28 +01:00
|
|
|
dog_symbole = "🐶"
|
|
|
|
dog = ["waf", "chien", "dog"]
|
|
|
|
|
|
|
|
perfect_symbole = "👌"
|
|
|
|
perfect = ["parfait", "perfect", "ok"]
|
|
|
|
|
|
|
|
plus_symbole = ":plus:283940426053058561"
|
|
|
|
plus = ["+1"]
|
|
|
|
|
2017-12-02 11:27:16 +01:00
|
|
|
class Reactionner:
|
|
|
|
def __init__(self, bot):
|
|
|
|
self.bot = bot
|
|
|
|
|
|
|
|
async def on_message(self, message):
|
|
|
|
for i in range(len(licorne)):
|
|
|
|
if licorne[i] in message.content.lower():
|
|
|
|
print("licorne detecter !")
|
|
|
|
await self.bot.add_reaction(message,licorne_symbole)
|
2018-01-01 19:19:28 +01:00
|
|
|
|
2017-12-02 11:27:16 +01:00
|
|
|
for i in range(len(caca)):
|
|
|
|
if caca[i] in message.content.lower():
|
|
|
|
print("caca detecter !")
|
|
|
|
await self.bot.add_reaction(message,caca_symbole )
|
2018-01-01 19:19:28 +01:00
|
|
|
|
2017-12-02 11:27:16 +01:00
|
|
|
for i in range(len(sel)):
|
|
|
|
if sel[i] in message.content.lower():
|
|
|
|
print("sel detecter !")
|
|
|
|
await self.bot.add_reaction(message,sel_symbole)
|
2018-01-01 19:19:28 +01:00
|
|
|
|
2017-12-02 11:27:16 +01:00
|
|
|
for i in range(len(troll)):
|
|
|
|
if troll[i] in message.content.lower():
|
|
|
|
print("troll detecter !")
|
|
|
|
await self.bot.add_reaction(message,troll_symbole)
|
|
|
|
|
2018-01-01 19:19:28 +01:00
|
|
|
for i in range(len(dog)):
|
|
|
|
if dog[i] in message.content.lower():
|
|
|
|
print("Chien detecter !")
|
|
|
|
await self.bot.add_reaction(message,dog_symbole)
|
|
|
|
|
|
|
|
for i in range(len(perfect)):
|
|
|
|
if perfect[i] in message.content.lower():
|
|
|
|
print("Perfection detecter !")
|
|
|
|
await self.bot.add_reaction(message,perfect_symbole)
|
|
|
|
|
|
|
|
for i in range(len(plus)):
|
|
|
|
if plus[i] in message.content.lower():
|
|
|
|
print("Plus detecter !")
|
|
|
|
await self.bot.add_reaction(message,plus_symbole)
|
|
|
|
|
2017-12-02 11:27:16 +01:00
|
|
|
def setup(bot):
|
2018-01-01 19:19:28 +01:00
|
|
|
bot.add_cog(Reactionner(bot))
|
2018-01-11 10:44:38 +01:00
|
|
|
print("Reactionner charger")
|