Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added jokes #38

Merged
merged 2 commits into from
Aug 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions cogs/funcommands.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,18 @@ async def joke(self, ctx: commands.Context) -> None:
"Why couldn't the sesame seed leave the casino?\nIt was on a roll!",
"How fast is milk?\nIt's pasteurize before you know it!",
"What kind of music are balloons afraid of?\nPop music!",
"What do you call a nervous tree?\nA sweaty palm!",
"What role does a baby plant have in the army?\nInfant-tree!",
"I can cut down a tree just by looking at it.\nI saw it with my own eyes!",
"What did the loaf of bread say after helping a friend?\nIt's the yeast I could do!",
"What did the slice of bread say to the slice of cheese?\nYou're the best thing since me!",
"How can you spot a radical baker?\nThey always go against the grain!",
"Why did the students go on the boat?\nTo get their scholar-ship!",
"Why couldn't the sailors play cards?\nThe captain was standing on the deck!",
"What do you do with a sick boat?\nTake it to the Doc!",
"What do you call a factory that makes ok products?\nA satis-factory!",
"Did you hear about the chocolate record player?\nIt sounds pretty sweet!",
"I asked my Dog \"What's 2 minus 2?\nShe said nothing!",
]
await ctx.send(random.choice(messages))

Expand Down