aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpokesudenk <thisis@notarealema.il>2018-02-24 13:37:25 -0500
committerpokesudenk <thisis@notarealema.il>2018-02-24 13:37:25 -0500
commit37d944238387b15a14521eda3a93ee2711cffcf3 (patch)
tree376b45d218109a6bd5afd4a017448af521f4e3ca
parent3a543cb427d6821380b04f7ffde084715ee70c90 (diff)
downloadPokeBot-37d944238387b15a14521eda3a93ee2711cffcf3.tar.gz
PokeBot-37d944238387b15a14521eda3a93ee2711cffcf3.tar.bz2
PokeBot-37d944238387b15a14521eda3a93ee2711cffcf3.zip
ship command, for gimmicks
-rw-r--r--commands/ship.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/commands/ship.js b/commands/ship.js
new file mode 100644
index 0000000..3e43317
--- /dev/null
+++ b/commands/ship.js
@@ -0,0 +1,15 @@
+exports.run = (bot, msg, args) => {
+ message.channel.send(message.author.username + " x " + message.guild.members.random().displayName + ':cruise_ship:');
+ };
+
+ exports.conf = {
+ aliases: [],
+ guildOnly: true,
+ };
+
+ exports.help = {
+ name: 'ship',
+ description: 'Test the luck of your love life! Ships you with another user.',
+ category: 'Fun',
+ };
+ \ No newline at end of file