adding more quotes

This commit is contained in:
Luke Robles 2022-05-21 17:48:15 -07:00
parent fd971491ea
commit 9a6f020d6c
3 changed files with 9 additions and 4 deletions

11
app/bot.py Executable file → Normal file
View File

@ -55,9 +55,14 @@ async def business_card_scene_reploy(ctx):
# if it has an attachment or a link
if ctx.attachments or "https://" in ctx.content:
if random.randint(0, 9) == 0:
await ctx.reply(
"Jesus. This is really super. How'd a nitwit like you get so tasteful?"
)
quotes = [
"Jesus. This is really super. How'd a nitwit like you get so tasteful?",
"Whoa. Very nice. Take a look.",
"That's really nice.",
"Impressive. Very nice.",
"Look at that subtle off-white coloring. The tasteful thickness of it.",
]
await ctx.reply(randon.choice(quotes))
@bot.listen("on_message")

0
app/requirements.txt Executable file → Normal file
View File

View File

@ -6,7 +6,7 @@ replicaCount: 1
image:
# Overrides the image tag whose default is the chart appVersion.
tag: "144"
tag: "145"
repository: ldooks/dragon-bot
pullPolicy: IfNotPresent