Simp-O-Matic

Dumb Discord bot in TS.
git clone git://git.knutsen.co/Simp-O-Matic
Log | Files | Refs | README | LICENSE

commit 88a87ae7bd1ce6cbe46937915676cf33d036ec76
parent 3492387ba819264c8eae5d32d60891fa6bd26487
Author: Fredrik <moi@knutsen.co>
Date:   Thu, 21 May 2020 11:47:49 +0100

Merge pull request #11 from greatredheron/master

rim
Diffstat:
MHELP.md | 1+
Alib/commands/rim.ts | 13+++++++++++++
2 files changed, 14 insertions(+), 0 deletions(-)

diff --git a/HELP.md b/HELP.md @@ -113,6 +113,7 @@ - `!hug [@user-name]` — Give someone a warm hug! - `!lick [@user-name]` — Give someone a lickety lick! - `!slap [@user-name]` — Slap someone hard in the face! +- `!rim [@user-name]` — Rim someones butthole! - `!emojify [phrase]` — Turn your text into discord-style emoji. - `!B [phrase]` — Replace some elements of your text with a certain U+1F171. - `!uwu [phrase]` — “uwuify” your text. diff --git a/lib/commands/rim.ts b/lib/commands/rim.ts @@ -0,0 +1,13 @@ +import { Message } from 'discord.js'; +import Action from '../action'; + +export default (home_scope: HomeScope) => { + const { message, args } + : { message: Message, args: string[] } = home_scope; + + if (args.length === 0 || message.mentions.users.size === 0) + return message.channel.send( + "You rimmed yourself, bet that tasted soft and warm :stuck_out_tongue_closed_eyes:"); + + message.channel.send(Action.get('rim', message)); +};