|
|
@ -3,6 +3,7 @@ import datetime
|
|
|
|
import random
|
|
|
|
import random
|
|
|
|
|
|
|
|
|
|
|
|
import discord
|
|
|
|
import discord
|
|
|
|
|
|
|
|
import tenorpy
|
|
|
|
from discord.ext import commands
|
|
|
|
from discord.ext import commands
|
|
|
|
from discord.ext.commands import BucketType, cooldown
|
|
|
|
from discord.ext.commands import BucketType, cooldown
|
|
|
|
|
|
|
|
|
|
|
@ -18,6 +19,10 @@ class Fun(commands.Cog):
|
|
|
|
def __init__(self, bot):
|
|
|
|
def __init__(self, bot):
|
|
|
|
self.bot = bot
|
|
|
|
self.bot = bot
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
t = tenorpy.Tenor()
|
|
|
|
|
|
|
|
for x in range(20):
|
|
|
|
|
|
|
|
print(t.random("anime cute cuddle hug")) # Will return a random
|
|
|
|
|
|
|
|
|
|
|
|
@commands.command(aliases=['Attack'])
|
|
|
|
@commands.command(aliases=['Attack'])
|
|
|
|
@commands.has_any_role('Hamothy', "izzy", "Servant")
|
|
|
|
@commands.has_any_role('Hamothy', "izzy", "Servant")
|
|
|
|
async def attack(self, ctx, target: discord.Member):
|
|
|
|
async def attack(self, ctx, target: discord.Member):
|
|
|
|