summaryrefslogtreecommitdiff
path: root/src/commands/roleplay
diff options
context:
space:
mode:
author8cy <[email protected]>2020-07-07 03:55:21 -0700
committer8cy <[email protected]>2020-07-07 03:55:21 -0700
commit385b0960abdc8bb13172330a973dafd56560cf8d (patch)
tree86e85d23404a5170ffbf870a6faeba77b3430e0e /src/commands/roleplay
parentadd fanart for emma :star2: (diff)
downloaddep-core-385b0960abdc8bb13172330a973dafd56560cf8d.tar.xz
dep-core-385b0960abdc8bb13172330a973dafd56560cf8d.zip
big cool :star:
- add commenting to bot.ts - add types to most of the voice commands - add art and verify cmd for emma - add roastwilly cmd - fix rp cmd formatting
Diffstat (limited to 'src/commands/roleplay')
-rw-r--r--src/commands/roleplay/blush.ts2
-rw-r--r--src/commands/roleplay/celebrate.ts2
-rw-r--r--src/commands/roleplay/eat.ts2
-rw-r--r--src/commands/roleplay/fistbump.ts2
-rw-r--r--src/commands/roleplay/highfive.ts2
-rw-r--r--src/commands/roleplay/holdhands.ts2
-rw-r--r--src/commands/roleplay/hug.ts2
-rw-r--r--src/commands/roleplay/inhale.ts2
-rw-r--r--src/commands/roleplay/kill.ts2
-rw-r--r--src/commands/roleplay/kiss.ts2
-rw-r--r--src/commands/roleplay/pat.ts2
-rw-r--r--src/commands/roleplay/poke.ts2
-rw-r--r--src/commands/roleplay/punch.ts2
-rw-r--r--src/commands/roleplay/slap.ts2
-rw-r--r--src/commands/roleplay/sleep.ts2
-rw-r--r--src/commands/roleplay/wakeup.ts2
-rw-r--r--src/commands/roleplay/wave.ts2
-rw-r--r--src/commands/roleplay/wink.ts2
18 files changed, 18 insertions, 18 deletions
diff --git a/src/commands/roleplay/blush.ts b/src/commands/roleplay/blush.ts
index 9d7352a..9a1ab5c 100644
--- a/src/commands/roleplay/blush.ts
+++ b/src/commands/roleplay/blush.ts
@@ -26,6 +26,6 @@ module.exports = class BlushRoleplay extends Command {
});
}
run(msg: CommandoMessage, { uUser }: any) {
- return msg.say(`_**${msg.author.username}** blushes at **${uUser.username}**._` + ' ' + emoji.random())
+ 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
index f84f6f3..1f49cd9 100644
--- a/src/commands/roleplay/celebrate.ts
+++ b/src/commands/roleplay/celebrate.ts
@@ -19,6 +19,6 @@ module.exports = class CelebrateRoleplay extends Command {
});
}
run(msg: CommandoMessage) {
- return msg.say(`_**${msg.author.username}** celebrates._` + ' ' + emoji.random())
+ 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
index 25f4cbb..925a75c 100644
--- a/src/commands/roleplay/eat.ts
+++ b/src/commands/roleplay/eat.ts
@@ -19,6 +19,6 @@ module.exports = class EatRoleplay extends Command {
});
}
run(msg: CommandoMessage) {
- return msg.say(`_**${msg.author.username}** eats._` + ' ' + emoji.random())
+ 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
index dc6d32d..3bc991a 100644
--- a/src/commands/roleplay/fistbump.ts
+++ b/src/commands/roleplay/fistbump.ts
@@ -27,6 +27,6 @@ module.exports = class FistBumpRoleplay extends Command {
});
}
run(msg: CommandoMessage, { uUser }: any) {
- return msg.say(`_**${msg.author.username}** fist-bumps **${uUser.username}**._` + ' ' + emoji.random())
+ 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
index 605d505..5449c50 100644
--- a/src/commands/roleplay/highfive.ts
+++ b/src/commands/roleplay/highfive.ts
@@ -27,6 +27,6 @@ module.exports = class HighFiveRoleplay extends Command {
});
}
run(msg: CommandoMessage, { uUser }: any) {
- return msg.say(`_**${msg.author.username}** high-fives **${uUser.username}**._` + ' ' + emoji.random())
+ 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
index 7a46667..ec63061 100644
--- a/src/commands/roleplay/holdhands.ts
+++ b/src/commands/roleplay/holdhands.ts
@@ -27,6 +27,6 @@ module.exports = class HoldHandsRoleplay extends Command {
});
}
run(msg: CommandoMessage, { uUser }: any) {
- return msg.say(`_**${msg.author.username}** holds **${uUser.username}** hand._` + ' ' + emoji.random())
+ 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
index e31e53f..d5a6f09 100644
--- a/src/commands/roleplay/hug.ts
+++ b/src/commands/roleplay/hug.ts
@@ -26,6 +26,6 @@ module.exports = class HugRoleplay extends Command {
});
}
run(msg: CommandoMessage, { uUser }: any) {
- return msg.say(`_**${msg.author.username}** hugs **${uUser.username}**._` + ' ' + emoji.random())
+ 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
index 8a49bd1..3f94701 100644
--- a/src/commands/roleplay/inhale.ts
+++ b/src/commands/roleplay/inhale.ts
@@ -26,6 +26,6 @@ module.exports = class InhaleRoleplay extends Command {
});
}
run(msg: CommandoMessage, { uUser }: any) {
- return msg.say(`_**${msg.author.username}** inhales **${uUser.username}** but gained no abilities._` + ' ' + emoji.random())
+ 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
index 15446cd..8f1bebf 100644
--- a/src/commands/roleplay/kill.ts
+++ b/src/commands/roleplay/kill.ts
@@ -26,6 +26,6 @@ module.exports = class KillRoleplay extends Command {
});
}
run(msg: CommandoMessage, { uUser }: any) {
- return msg.say(`_**${msg.author.username}** kills **${uUser.username}**._` + ' ' + emoji.random())
+ 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
index 6dbec4e..d94d439 100644
--- a/src/commands/roleplay/kiss.ts
+++ b/src/commands/roleplay/kiss.ts
@@ -26,6 +26,6 @@ module.exports = class KissRoleplay extends Command {
});
}
run(msg: CommandoMessage, { uUser }: any) {
- return msg.say(`_**${msg.author.username}** kisses **${uUser.username}**._` + ' ' + emoji.random())
+ 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
index 82c47d2..8b2d632 100644
--- a/src/commands/roleplay/pat.ts
+++ b/src/commands/roleplay/pat.ts
@@ -26,6 +26,6 @@ module.exports = class PatRoleplay extends Command {
});
}
run(msg: CommandoMessage, { uUser }: any) {
- return msg.say(`_**${msg.author.username}** pat **${uUser.username}**._` + ' ' + emoji.random())
+ 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
index a008bcb..d16818b 100644
--- a/src/commands/roleplay/poke.ts
+++ b/src/commands/roleplay/poke.ts
@@ -26,6 +26,6 @@ module.exports = class PokeRoleplay extends Command {
});
}
run(msg: CommandoMessage, { uUser }: any) {
- return msg.say(`_**${msg.author.username}** pokes **${uUser.username}**._` + ' ' + emoji.random())
+ 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
index 8e5d8f8..2b911c6 100644
--- a/src/commands/roleplay/punch.ts
+++ b/src/commands/roleplay/punch.ts
@@ -26,6 +26,6 @@ module.exports = class PunchRoleplay extends Command {
});
}
run(msg: CommandoMessage, { uUser }: any) {
- return msg.say(`_**${msg.author.username}** punches **${uUser.username}**._` + ' ' + emoji.random())
+ 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
index afe6546..254981b 100644
--- a/src/commands/roleplay/slap.ts
+++ b/src/commands/roleplay/slap.ts
@@ -26,6 +26,6 @@ module.exports = class SlapRoleplay extends Command {
});
}
run(msg: CommandoMessage, { uUser }: any) {
- return msg.say(`_**${msg.author.username}** slaps **${uUser.username}**._` + ' ' + emoji.random())
+ 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
index 5186044..bd5c399 100644
--- a/src/commands/roleplay/sleep.ts
+++ b/src/commands/roleplay/sleep.ts
@@ -19,6 +19,6 @@ module.exports = class SleepRoleplay extends Command {
});
}
run(msg: CommandoMessage) {
- return msg.say(`_**${msg.author.username}** falls asleep._` + ' ' + emoji.random())
+ 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
index cdf99b4..485a64d 100644
--- a/src/commands/roleplay/wakeup.ts
+++ b/src/commands/roleplay/wakeup.ts
@@ -20,6 +20,6 @@ module.exports = class WakeUpRoleplay extends Command {
});
}
run(msg: CommandoMessage) {
- return msg.say(`_**${msg.author.username}** wakes up._` + ' ' + emoji.random())
+ 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
index 21e04f6..effc6e3 100644
--- a/src/commands/roleplay/wave.ts
+++ b/src/commands/roleplay/wave.ts
@@ -26,6 +26,6 @@ module.exports = class WaveRoleplay extends Command {
});
}
run(msg: CommandoMessage, { uUser }: any) {
- return msg.say(`_**${msg.author.username}** waves at **${uUser.username}**._` + ' ' + emoji.random())
+ 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
index 4b2061b..30935c1 100644
--- a/src/commands/roleplay/wink.ts
+++ b/src/commands/roleplay/wink.ts
@@ -26,6 +26,6 @@ module.exports = class WinkRoleplay extends Command {
});
}
run(msg: CommandoMessage, { uUser }: any) {
- return msg.say(`_**${msg.author.username}** winks at **${uUser.username}**._` + ' ' + emoji.random())
+ return msg.say(`___**${msg.author.username}** winks at **${uUser.username}**.___` + ' ' + emoji.random())
}
}; \ No newline at end of file