summaryrefslogtreecommitdiff
path: root/src/commands/roleplay
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/roleplay')
-rw-r--r--src/commands/roleplay/blush.ts32
-rw-r--r--src/commands/roleplay/celebrate.ts25
-rw-r--r--src/commands/roleplay/eat.ts25
-rw-r--r--src/commands/roleplay/fistbump.ts33
-rw-r--r--src/commands/roleplay/highfive.ts33
-rw-r--r--src/commands/roleplay/holdhands.ts33
-rw-r--r--src/commands/roleplay/hug.ts32
-rw-r--r--src/commands/roleplay/inhale.ts32
-rw-r--r--src/commands/roleplay/kill.ts32
-rw-r--r--src/commands/roleplay/kiss.ts32
-rw-r--r--src/commands/roleplay/pat.ts32
-rw-r--r--src/commands/roleplay/poke.ts32
-rw-r--r--src/commands/roleplay/punch.ts32
-rw-r--r--src/commands/roleplay/slap.ts32
-rw-r--r--src/commands/roleplay/sleep.ts25
-rw-r--r--src/commands/roleplay/wakeup.ts26
-rw-r--r--src/commands/roleplay/wave.ts32
-rw-r--r--src/commands/roleplay/wink.ts32
18 files changed, 0 insertions, 552 deletions
diff --git a/src/commands/roleplay/blush.ts b/src/commands/roleplay/blush.ts
deleted file mode 100644
index 5abdb26..0000000
--- a/src/commands/roleplay/blush.ts
+++ /dev/null
@@ -1,32 +0,0 @@
-import { Command, CommandoMessage, CommandoClient } from 'discord.js-commando';
-//@ts-ignore no types
-import emoji from 'emoji-random';
-
-module.exports = class BlushRoleplay extends Command {
- constructor(client: CommandoClient) {
- super(client, {
- name: 'blush',
- group: 'roleplay',
- memberName: 'blush',
- description: 'Blush at a specified user.',
- examples: ['uwu!blush @sin#1337'],
- userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- throttling: {
- usages: 5,
- duration: 30
- },
- args: [
- {
- key: 'uUser',
- prompt: 'Which user would you like to blush at?',
- type: 'user'
- }
- ]
- });
- }
- run(msg: CommandoMessage, { uUser }: any) {
- msg.delete();
- return msg.say(`***${msg.author.username}** blushes at **${uUser.username}**.*` + ' ' + emoji.random())
- }
-}; \ No newline at end of file
diff --git a/src/commands/roleplay/celebrate.ts b/src/commands/roleplay/celebrate.ts
deleted file mode 100644
index d5b012c..0000000
--- a/src/commands/roleplay/celebrate.ts
+++ /dev/null
@@ -1,25 +0,0 @@
-import { Command, CommandoMessage, CommandoClient } from 'discord.js-commando';
-//@ts-ignore no types
-import emoji from 'emoji-random';
-
-module.exports = class CelebrateRoleplay extends Command {
- constructor(client: CommandoClient) {
- super(client, {
- name: 'celebrate',
- group: 'roleplay',
- memberName: 'celebrate',
- description: 'Celebrate.',
- examples: ['uwu!celebrate'],
- userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- throttling: {
- usages: 5,
- duration: 30
- }
- });
- }
- run(msg: CommandoMessage) {
- msg.delete();
- return msg.say(`***${msg.author.username}** celebrates.*` + ' ' + emoji.random())
- }
-}; \ No newline at end of file
diff --git a/src/commands/roleplay/eat.ts b/src/commands/roleplay/eat.ts
deleted file mode 100644
index 8af76d5..0000000
--- a/src/commands/roleplay/eat.ts
+++ /dev/null
@@ -1,25 +0,0 @@
-import { Command, CommandoMessage, CommandoClient } from 'discord.js-commando';
-//@ts-ignore no types
-import emoji from 'emoji-random';
-
-module.exports = class EatRoleplay extends Command {
- constructor(client: CommandoClient) {
- super(client, {
- name: 'eat',
- group: 'roleplay',
- memberName: 'eat',
- description: 'Eat.',
- examples: ['uwu!eat'],
- userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- throttling: {
- usages: 5,
- duration: 30
- }
- });
- }
- run(msg: CommandoMessage) {
- msg.delete();
- return msg.say(`***${msg.author.username}** eats.*` + ' ' + emoji.random())
- }
-}; \ No newline at end of file
diff --git a/src/commands/roleplay/fistbump.ts b/src/commands/roleplay/fistbump.ts
deleted file mode 100644
index 129c89f..0000000
--- a/src/commands/roleplay/fistbump.ts
+++ /dev/null
@@ -1,33 +0,0 @@
-import { Command, CommandoMessage, CommandoClient } from 'discord.js-commando';
-//@ts-ignore no types
-import emoji from 'emoji-random';
-
-module.exports = class FistBumpRoleplay extends Command {
- constructor(client: CommandoClient) {
- super(client, {
- name: 'fistbump',
- aliases: ['fist-bump'],
- group: 'roleplay',
- memberName: 'fistbump',
- description: 'Fist-bump a specified user.',
- examples: ['uwu!fistbump @sin#1337'],
- userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- throttling: {
- usages: 5,
- duration: 30
- },
- args: [
- {
- key: 'uUser',
- prompt: 'Which user would you like to fist-bump?',
- type: 'user'
- }
- ]
- });
- }
- run(msg: CommandoMessage, { uUser }: any) {
- msg.delete();
- return msg.say(`***${msg.author.username}** fist-bumps **${uUser.username}**.*` + ' ' + emoji.random())
- }
-}; \ No newline at end of file
diff --git a/src/commands/roleplay/highfive.ts b/src/commands/roleplay/highfive.ts
deleted file mode 100644
index 28187ef..0000000
--- a/src/commands/roleplay/highfive.ts
+++ /dev/null
@@ -1,33 +0,0 @@
-import { Command, CommandoMessage, CommandoClient } from 'discord.js-commando';
-//@ts-ignore no types
-import emoji from 'emoji-random';
-
-module.exports = class HighFiveRoleplay extends Command {
- constructor(client: CommandoClient) {
- super(client, {
- name: 'highfive',
- aliases: ['high-five'],
- group: 'roleplay',
- memberName: 'highfive',
- description: 'High-fave a specified user.',
- examples: ['uwu!highfive @sin#1337'],
- userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- throttling: {
- usages: 5,
- duration: 30
- },
- args: [
- {
- key: 'uUser',
- prompt: 'Which user would you like to high-five?',
- type: 'user'
- }
- ]
- });
- }
- run(msg: CommandoMessage, { uUser }: any) {
- msg.delete();
- return msg.say(`***${msg.author.username}** high-fives **${uUser.username}**.*` + ' ' + emoji.random())
- }
-}; \ No newline at end of file
diff --git a/src/commands/roleplay/holdhands.ts b/src/commands/roleplay/holdhands.ts
deleted file mode 100644
index 88babdd..0000000
--- a/src/commands/roleplay/holdhands.ts
+++ /dev/null
@@ -1,33 +0,0 @@
-import { Command, CommandoMessage, CommandoClient } from 'discord.js-commando';
-//@ts-ignore no types
-import emoji from 'emoji-random';
-
-module.exports = class HoldHandsRoleplay extends Command {
- constructor(client: CommandoClient) {
- super(client, {
- name: 'holdhands',
- aliases: ['hold-hands', 'holdhand', 'hold-hand'],
- group: 'roleplay',
- memberName: 'holdhands',
- description: 'Hold hands with a specified user.',
- examples: ['uwu!holdhands @sin#1337'],
- userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- throttling: {
- usages: 5,
- duration: 30
- },
- args: [
- {
- key: 'uUser',
- prompt: 'Which user would you like to hold hands with?',
- type: 'user'
- }
- ]
- });
- }
- run(msg: CommandoMessage, { uUser }: any) {
- msg.delete();
- return msg.say(`***${msg.author.username}** holds **${uUser.username}** hand.*` + ' ' + emoji.random())
- }
-}; \ No newline at end of file
diff --git a/src/commands/roleplay/hug.ts b/src/commands/roleplay/hug.ts
deleted file mode 100644
index f64d6d5..0000000
--- a/src/commands/roleplay/hug.ts
+++ /dev/null
@@ -1,32 +0,0 @@
-import { Command, CommandoMessage, CommandoClient } from 'discord.js-commando';
-//@ts-ignore no types
-import emoji from 'emoji-random';
-
-module.exports = class HugRoleplay extends Command {
- constructor(client: CommandoClient) {
- super(client, {
- name: 'hug',
- group: 'roleplay',
- memberName: 'hug',
- description: 'Hug a specified user.',
- examples: ['uwu!hug @sin#1337'],
- userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- throttling: {
- usages: 5,
- duration: 30
- },
- args: [
- {
- key: 'uUser',
- prompt: 'Which user would you like to hug?',
- type: 'user'
- }
- ]
- });
- }
- run(msg: CommandoMessage, { uUser }: any) {
- msg.delete();
- return msg.say(`***${msg.author.username}** hugs **${uUser.username}**.*` + ' ' + emoji.random())
- }
-}; \ No newline at end of file
diff --git a/src/commands/roleplay/inhale.ts b/src/commands/roleplay/inhale.ts
deleted file mode 100644
index e302e2e..0000000
--- a/src/commands/roleplay/inhale.ts
+++ /dev/null
@@ -1,32 +0,0 @@
-import { Command, CommandoMessage, CommandoClient } from 'discord.js-commando';
-//@ts-ignore no types
-import emoji from 'emoji-random';
-
-module.exports = class InhaleRoleplay extends Command {
- constructor(client: CommandoClient) {
- super(client, {
- name: 'inhale',
- group: 'roleplay',
- memberName: 'inhale',
- description: 'Inhale a specified user.',
- examples: ['uwu!inhale @sin#1337'],
- userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- throttling: {
- usages: 5,
- duration: 30
- },
- args: [
- {
- key: 'uUser',
- prompt: 'Which user would you like to inhale?',
- type: 'user'
- }
- ]
- });
- }
- run(msg: CommandoMessage, { uUser }: any) {
- msg.delete();
- return msg.say(`***${msg.author.username}** inhales **${uUser.username}** but gained no abilities.*` + ' ' + emoji.random())
- }
-}; \ No newline at end of file
diff --git a/src/commands/roleplay/kill.ts b/src/commands/roleplay/kill.ts
deleted file mode 100644
index 809db32..0000000
--- a/src/commands/roleplay/kill.ts
+++ /dev/null
@@ -1,32 +0,0 @@
-import { Command, CommandoMessage, CommandoClient } from 'discord.js-commando';
-//@ts-ignore no types
-import emoji from 'emoji-random';
-
-module.exports = class KillRoleplay extends Command {
- constructor(client: CommandoClient) {
- super(client, {
- name: 'kill',
- group: 'roleplay',
- memberName: 'kill',
- description: 'Kill a specified user.',
- examples: ['uwu!kill @sin#1337'],
- userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- throttling: {
- usages: 5,
- duration: 30
- },
- args: [
- {
- key: 'uUser',
- prompt: 'Which user would you like to kill?',
- type: 'user'
- }
- ]
- });
- }
- run(msg: CommandoMessage, { uUser }: any) {
- msg.delete();
- return msg.say(`***${msg.author.username}** kills **${uUser.username}**.*` + ' ' + emoji.random())
- }
-}; \ No newline at end of file
diff --git a/src/commands/roleplay/kiss.ts b/src/commands/roleplay/kiss.ts
deleted file mode 100644
index ab37cb5..0000000
--- a/src/commands/roleplay/kiss.ts
+++ /dev/null
@@ -1,32 +0,0 @@
-import { Command, CommandoMessage, CommandoClient } from 'discord.js-commando';
-//@ts-ignore no types
-import emoji from 'emoji-random';
-
-module.exports = class KissRoleplay extends Command {
- constructor(client: CommandoClient) {
- super(client, {
- name: 'kiss',
- group: 'roleplay',
- memberName: 'kiss',
- description: 'Kiss a specified user.',
- examples: ['uwu!kiss @sin#1337'],
- userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- throttling: {
- usages: 5,
- duration: 30
- },
- args: [
- {
- key: 'uUser',
- prompt: 'Which user would you like to kiss?',
- type: 'user'
- }
- ]
- });
- }
- run(msg: CommandoMessage, { uUser }: any) {
- msg.delete();
- return msg.say(`***${msg.author.username}** kisses **${uUser.username}**.*` + ' ' + emoji.random())
- }
-}; \ No newline at end of file
diff --git a/src/commands/roleplay/pat.ts b/src/commands/roleplay/pat.ts
deleted file mode 100644
index 923c670..0000000
--- a/src/commands/roleplay/pat.ts
+++ /dev/null
@@ -1,32 +0,0 @@
-import { Command, CommandoMessage, CommandoClient } from 'discord.js-commando';
-//@ts-ignore no types
-import emoji from 'emoji-random';
-
-module.exports = class PatRoleplay extends Command {
- constructor(client: CommandoClient) {
- super(client, {
- name: 'pat',
- group: 'roleplay',
- memberName: 'pat',
- description: 'Pat a specified user.',
- examples: ['uwu!pat @sin#1337'],
- userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- throttling: {
- usages: 5,
- duration: 30
- },
- args: [
- {
- key: 'uUser',
- prompt: 'Which user would you like to pat?',
- type: 'user'
- }
- ]
- });
- }
- run(msg: CommandoMessage, { uUser }: any) {
- msg.delete();
- return msg.say(`***${msg.author.username}** pats **${uUser.username}**.*` + ' ' + emoji.random())
- }
-}; \ No newline at end of file
diff --git a/src/commands/roleplay/poke.ts b/src/commands/roleplay/poke.ts
deleted file mode 100644
index 227e2b6..0000000
--- a/src/commands/roleplay/poke.ts
+++ /dev/null
@@ -1,32 +0,0 @@
-import { Command, CommandoMessage, CommandoClient } from 'discord.js-commando';
-//@ts-ignore no types
-import emoji from 'emoji-random';
-
-module.exports = class PokeRoleplay extends Command {
- constructor(client: CommandoClient) {
- super(client, {
- name: 'poke',
- group: 'roleplay',
- memberName: 'poke',
- description: 'Poke a specified user.',
- examples: ['uwu!poke @sin#1337'],
- userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- throttling: {
- usages: 5,
- duration: 30
- },
- args: [
- {
- key: 'uUser',
- prompt: 'Which user would you like to poke?',
- type: 'user'
- }
- ]
- });
- }
- run(msg: CommandoMessage, { uUser }: any) {
- msg.delete();
- return msg.say(`***${msg.author.username}** pokes **${uUser.username}**.*` + ' ' + emoji.random())
- }
-}; \ No newline at end of file
diff --git a/src/commands/roleplay/punch.ts b/src/commands/roleplay/punch.ts
deleted file mode 100644
index e8a59a6..0000000
--- a/src/commands/roleplay/punch.ts
+++ /dev/null
@@ -1,32 +0,0 @@
-import { Command, CommandoMessage, CommandoClient } from 'discord.js-commando';
-//@ts-ignore no types
-import emoji from 'emoji-random';
-
-module.exports = class PunchRoleplay extends Command {
- constructor(client: CommandoClient) {
- super(client, {
- name: 'punch',
- group: 'roleplay',
- memberName: 'punch',
- description: 'Punch a specified user.',
- examples: ['uwu!punch @sin#1337'],
- userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- throttling: {
- usages: 5,
- duration: 30
- },
- args: [
- {
- key: 'uUser',
- prompt: 'Which user would you like to punch?',
- type: 'user'
- }
- ]
- });
- }
- run(msg: CommandoMessage, { uUser }: any) {
- msg.delete();
- return msg.say(`***${msg.author.username}** punches **${uUser.username}**.*` + ' ' + emoji.random())
- }
-}; \ No newline at end of file
diff --git a/src/commands/roleplay/slap.ts b/src/commands/roleplay/slap.ts
deleted file mode 100644
index 16a52b2..0000000
--- a/src/commands/roleplay/slap.ts
+++ /dev/null
@@ -1,32 +0,0 @@
-import { Command, CommandoMessage, CommandoClient } from 'discord.js-commando';
-//@ts-ignore no types
-import emoji from 'emoji-random';
-
-module.exports = class SlapRoleplay extends Command {
- constructor(client: CommandoClient) {
- super(client, {
- name: 'slap',
- group: 'roleplay',
- memberName: 'slap',
- description: 'Slap a specified user.',
- examples: ['uwu!slap @sin#1337'],
- userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- throttling: {
- usages: 5,
- duration: 30
- },
- args: [
- {
- key: 'uUser',
- prompt: 'Which user would you like to slap?',
- type: 'user'
- }
- ]
- });
- }
- run(msg: CommandoMessage, { uUser }: any) {
- msg.delete();
- return msg.say(`***${msg.author.username}** slaps **${uUser.username}**.*` + ' ' + emoji.random())
- }
-}; \ No newline at end of file
diff --git a/src/commands/roleplay/sleep.ts b/src/commands/roleplay/sleep.ts
deleted file mode 100644
index 3b5c5da..0000000
--- a/src/commands/roleplay/sleep.ts
+++ /dev/null
@@ -1,25 +0,0 @@
-import { Command, CommandoMessage, CommandoClient } from 'discord.js-commando';
-//@ts-ignore no types
-import emoji from 'emoji-random';
-
-module.exports = class SleepRoleplay extends Command {
- constructor(client: CommandoClient) {
- super(client, {
- name: 'sleep',
- group: 'roleplay',
- memberName: 'sleep',
- description: 'Sleep.',
- examples: ['uwu!sleep'],
- userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- throttling: {
- usages: 5,
- duration: 30
- }
- });
- }
- run(msg: CommandoMessage) {
- msg.delete();
- return msg.say(`***${msg.author.username}** falls asleep.*` + ' ' + emoji.random())
- }
-}; \ No newline at end of file
diff --git a/src/commands/roleplay/wakeup.ts b/src/commands/roleplay/wakeup.ts
deleted file mode 100644
index 37667a6..0000000
--- a/src/commands/roleplay/wakeup.ts
+++ /dev/null
@@ -1,26 +0,0 @@
-import { Command, CommandoMessage, CommandoClient } from 'discord.js-commando';
-//@ts-ignore no types
-import emoji from 'emoji-random';
-
-module.exports = class WakeUpRoleplay extends Command {
- constructor(client: CommandoClient) {
- super(client, {
- name: 'wakeup',
- aliases: ['wake-up'],
- group: 'roleplay',
- memberName: 'wakeup',
- description: 'Wake up.',
- examples: ['uwu!wakeup'],
- userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- throttling: {
- usages: 5,
- duration: 30
- }
- });
- }
- run(msg: CommandoMessage) {
- msg.delete();
- return msg.say(`***${msg.author.username}** wakes up.*` + ' ' + emoji.random())
- }
-}; \ No newline at end of file
diff --git a/src/commands/roleplay/wave.ts b/src/commands/roleplay/wave.ts
deleted file mode 100644
index 779e56e..0000000
--- a/src/commands/roleplay/wave.ts
+++ /dev/null
@@ -1,32 +0,0 @@
-import { Command, CommandoMessage, CommandoClient } from 'discord.js-commando';
-//@ts-ignore no types
-import emoji from 'emoji-random';
-
-module.exports = class WaveRoleplay extends Command {
- constructor(client: CommandoClient) {
- super(client, {
- name: 'wave',
- group: 'roleplay',
- memberName: 'wave',
- description: 'Wave at a specified user.',
- examples: ['uwu!wave @sin#1337'],
- userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- throttling: {
- usages: 5,
- duration: 30
- },
- args: [
- {
- key: 'uUser',
- prompt: 'Which user would you like to wave at?',
- type: 'user'
- }
- ]
- });
- }
- run(msg: CommandoMessage, { uUser }: any) {
- msg.delete();
- return msg.say(`***${msg.author.username}** waves at **${uUser.username}**.*` + ' ' + emoji.random())
- }
-}; \ No newline at end of file
diff --git a/src/commands/roleplay/wink.ts b/src/commands/roleplay/wink.ts
deleted file mode 100644
index 480b9ab..0000000
--- a/src/commands/roleplay/wink.ts
+++ /dev/null
@@ -1,32 +0,0 @@
-import { Command, CommandoMessage, CommandoClient } from 'discord.js-commando';
-//@ts-ignore no types
-import emoji from 'emoji-random';
-
-module.exports = class WinkRoleplay extends Command {
- constructor(client: CommandoClient) {
- super(client, {
- name: 'wink',
- group: 'roleplay',
- memberName: 'wink',
- description: 'Wink at a specified user.',
- examples: ['uwu!wink @sin#1337'],
- userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- throttling: {
- usages: 5,
- duration: 30
- },
- args: [
- {
- key: 'uUser',
- prompt: 'Which user would you like to wink at?',
- type: 'user'
- }
- ]
- });
- }
- run(msg: CommandoMessage, { uUser }: any) {
- msg.delete();
- return msg.say(`***${msg.author.username}** winks at **${uUser.username}**.*` + ' ' + emoji.random())
- }
-}; \ No newline at end of file