import disnake
from disnake.ext import commands
import random
import nekos
class hentai(commands.Cog):
def __init__(self, bot):
self.bot = bot
print('Module {} is loaded'.format(self.__class__.__name__))
Argument = ['feet', 'yuri', 'trap', 'cum', 'futanari', 'hololewd', 'lewdkemo', 'solog', 'feetg', 'cum', 'erokemo', 'les', 'wallpaper', 'lewdk', 'ngif', 'tickle', 'lewd', 'feed', 'gecg', 'eroyuri', 'eron', 'cum_jpg', 'bj', 'nsfw_neko_gif', 'solo', 'kemonomimi', 'nsfw_avatar', 'gasm', 'poke', 'anal', 'slap', 'hentai', 'avatar', 'erofeet', 'holo', 'keta', 'blowjob', 'pussy', 'tits', 'holoero', 'lizard', 'pussy_jpg', 'pwankg', 'classic', 'kuni', 'waifu', 'pat', '8ball', 'kiss', 'femdom', 'neko', 'spank', 'cuddle', 'erok', 'fox_girl', 'boobs', 'random_hentai_gif', 'smallboobs', 'hug', 'ero', 'smug', 'goose', 'baka', 'woof']
def is_nsfw():
async def predicate(ctx):
return ctx.channel.is_nsfw()
return commands.check(predicate)
@commands.command()
@is_nsfw()
async def slap(self, ctx):
emb = disnake.Embed(color=0xebebeb)
emb.set_image(url=nekos.img('slap'))
await ctx.send(embed=emb)
@commands.command()
@is_nsfw()
async def kiss(self, ctx):
emb = disnake.Embed(color=0xebebeb)
emb.set_image(url=nekos.img('kiss'))
await ctx.send(embed=emb)
def setup(bot):
bot.add_cog(hentai(bot))