-Trying to add toga images

-Footer text and images for waifu commands
testing
sgoudham 4 years ago
parent fe81185b3b
commit affaad7ed5

@ -1,15 +1,16 @@
import asyncio import asyncio
import discord import discord
from discord.ext import commands
from decouple import config from decouple import config
from discord.ext import commands
# Getting the Bot token from Environment Variables
API_TOKEN = config('DISCORD_TOKEN') API_TOKEN = config('DISCORD_TOKEN')
# Bot Prefix # Bot Prefix
client = commands.Bot(command_prefix='~') client = commands.Bot(command_prefix='~')
#token = open("DiscordToken/token.txt", "rt").readline()
# Instantiates a list for all the cogs # Instantiates a list for all the cogs
extensions = ['cogs.WaifuImages', 'cogs.FunCommands'] extensions = ['cogs.WaifuImages', 'cogs.FunCommands']

@ -1,5 +1,6 @@
import random
import asyncio import asyncio
import random
import discord import discord
from discord.ext import commands from discord.ext import commands
from discord.ext.commands import BucketType, cooldown from discord.ext.commands import BucketType, cooldown
@ -36,10 +37,6 @@ class Fun(commands.Cog):
f"#{target.mention}IsOverParty", f"#{target.mention}IsOverParty",
f"I hope {target.mention} drops dead with a curable disease that doctors simply didnt feel like curing :)", f"I hope {target.mention} drops dead with a curable disease that doctors simply didnt feel like curing :)",
f"{target.mention} You know there's no vaccine for stupidity right?", f"{target.mention} You know there's no vaccine for stupidity right?",
#f"",
#f"",
#f"",
#f"",
] ]
await ctx.send(random.choice(responses)) await ctx.send(random.choice(responses))
@ -47,30 +44,38 @@ class Fun(commands.Cog):
@commands.command(aliases=['comp', 'Compliment', 'Comp']) @commands.command(aliases=['comp', 'Compliment', 'Comp'])
async def compliment(self, ctx, target: discord.Member): async def compliment(self, ctx, target: discord.Member):
responses = [ responses = [
f"{target.mention} is the most adorable uwu :heart_eyes: :heart_eyes:", f"{target.mention} is the most adorable uwu <:awie:676201100793085952> <:awie:676201100793085952> <:awie:676201100793085952>",
f"{target.mention} You have my ENTIRE HEART uvu", f"{target.mention} You have my ENTIRE HEART <:blushlook1:677310734123663363> <:blushlook2:679524467248201769>",
f"{target.mention} Hun you're CUTE uwu :pleading_face: :flushed: :pleading_face: :flushed: :pleading_face:", f"{target.mention} Hun you're CUTE uwu :pleading_face: :flushed: :pleading_face: :flushed: :pleading_face:",
f"I love {target.mention} so so much :heartbeat: :heartbeat: :heartbeat: ", f"I love {target.mention} so so much :heartbeat: :heartbeat: :heartbeat: ",
f"My heart is full of love for you {target.mention}", f"My heart is full of love for you {target.mention} <:Kawaii:676203363922214953> <:Kawaii:676203363922214953>",
f"{target.mention} I admire your greatness so much that I consider making a fan club to become your #1 fan (´꒳`)", f"{target.mention} I admire your greatness so much that I consider making a fan club to become your #1 fan (´꒳`)",
f"{target.mention} has no flaws, only special effects :))", f"{target.mention} has no flaws, only special effects :))",
f"{target.mention}'s smile is brighter than sunlight, so smile more often ( ◠‿◠ )", f"{target.mention}'s smile is brighter than sunlight, so smile more often ( ◠‿◠ )",
f"{target.mention} Your smile is so beautiful it blinds me :heart_eyes: :heart_eyes:", f"{target.mention} Your smile is so beautiful it blinds me :heart_eyes: :heart_eyes:",
f"Being on a journey all my life, I will never meet a person as amazing as you are {target.mention}", f"Being on a journey all my life, I will never meet a person as amazing as you are {target.mention}",
f"Such a pleasure to be on the same sever with you {target.mention}", f"Such a pleasure to be on the same sever with {target.mention} <:boneappleteeth:676202300573876252> <:boneappleteeth:676202300573876252>",
f"With {target.mention}, even the worst day will be filled with joy", f"With {target.mention}, even the worst day will be filled with joy <:GWcentrallHUGS:395628394043277313> <:GWcentrallHUGS:395628394043277313>",
f"There's no better antidepressant than {target.mention}", f"There's no better antidepressant than {target.mention}",
f"{target.mention} You're great, keep going Σd(˘ꇴ˘๑)", f"{target.mention} You're great, keep going Σd(˘ꇴ˘๑)",
f"I'd simp for {target.mention} anyday :flushed: :heart_eyes: :flushed: ", f"I'd simp for {target.mention} anyday :flushed: :heart_eyes: :flushed: ",
f"{target.mention} Even the ugliest clothes won't ruin your look (。•̀ᴗ -)☆", f"{target.mention} Even the ugliest clothes won't ruin your look (。•̀ᴗ -)☆",
f"{target.mention} Youre that “Nothing” when people ask me what Im thinking about.", f"{target.mention} Youre that “nothing” when people ask me what Im thinking about <:Kawaii:676203363922214953> <:Kawaii:676203363922214953>",
#f"", f"{target.mention} Somehow you make time stop and fly at the same time <:awie:676201100793085952> <:blushlook1:677310734123663363>",
#f"", f"{target.mention} is a whole ass SWAGMEAL <:Kawaii:676203363922214953> <:Kawaii:676203363922214953>",
#f"", f"After meeting {target.mention}, I couldn't imagine living my life without them",
f"Take me into your arms and tell me you love me <:blushlook1:677310734123663363> <:blushlook2:679524467248201769> {target.mention}",
f"{target.mention} I would spend eternity cuddling with you :flushed: :flushed:",
f"Would you want to go on an e-date together? :pleading_face :point_right: :point_left: {target.mention}",
f"Let me shoot my shot to you :see_no_evil: :see_no_evil:",
f"",
f"",
f"",
f"",
] ]
# await ctx.send(random.choice(responses)) # await ctx.send(random.choice(responses))
await ctx.send(random.choice(responses)) await ctx.send(f"{target.mention} You have my ENTIRE HEART <:Kawaii:676203363922214953> ")
# @client.command(aliases=["Hug"]) # @client.command(aliases=["Hug"])
# @commands.has_any_role('Hamothy') # @commands.has_any_role('Hamothy')
@ -79,7 +84,7 @@ class Fun(commands.Cog):
# Bot ~8Ball command # Bot ~8Ball command
@commands.command(aliases=['8ball', '8Ball']) @commands.command(aliases=['8ball', '8Ball'])
@cooldown(1, 5, BucketType.channel) @cooldown(1, 0.5, BucketType.channel)
async def _8ball(self, ctx, *, question): async def _8ball(self, ctx, *, question):
channels = ["bot-commands"] channels = ["bot-commands"]

@ -1,5 +1,6 @@
import random
import asyncio import asyncio
import random
import discord import discord
from discord.ext import commands from discord.ext import commands
from discord.ext.commands import BucketType, cooldown from discord.ext.commands import BucketType, cooldown
@ -21,8 +22,37 @@ class Waifus(commands.Cog):
if str(ctx.channel) in channels: if str(ctx.channel) in channels:
embed = discord.Embed(title="```Random Kakashi Image```", colour=discord.Colour(0xff0000), ) avatar = ctx.avatar_url
embed = discord.Embed(title="**Kakashi**", colour=discord.Colour(0xff0000))
embed.set_image(url=random.choice(kakashi_array)) embed.set_image(url=random.choice(kakashi_array))
embed.set_footer(text=f"Requested by {ctx.message.author}", icon_url=f"{avatar}")
await ctx.send(embed=embed)
else:
message = await ctx.send(error_function())
# Let the user read the message for 2.5 seconds
await asyncio.sleep(2.5)
# Delete the message
await message.delete()
file.close()
# Bot ~Toga command for Josh
@commands.command(aliases=['Toga'])
@cooldown(1, 0, BucketType.channel)
async def toga(self, ctx):
channels = ["bot-commands"]
with open('togaImages.txt') as file:
toga_array = file.readlines()
if str(ctx.channel) in channels:
avatar = ctx.avatar_url
embed = discord.Embed(title="**Toga**", colour=discord.Colour(0xff0000))
embed.set_image(url=random.choice(toga_array))
embed.set_footer(text=f"Requested by {ctx.message.author}", icon_url=f"{avatar}")
await ctx.send(embed=embed) await ctx.send(embed=embed)
else: else:
message = await ctx.send(error_function()) message = await ctx.send(error_function())

@ -0,0 +1,3 @@
https://cdn.discordapp.com/attachments/714213422333558804/717916377368756275/FB_IMG_1590335785815.jpg
https://cdn.discordapp.com/attachments/714213422333558804/717916377733922826/FB_IMG_1590335906532.jpg
https://cdn.discordapp.com/attachments/714213422333558804/717916377993969704/FB_IMG_1590335791939.jpg
Loading…
Cancel
Save