aboutsummaryrefslogtreecommitdiff
path: root/commands/Fun/ship.js
blob: ba31db59ead825f9f52494f2a71811c9456c2db8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/** **************************************
 *
 *   Ship: Plugin for PokeBot that ships the user with someone else.
 *   Copyright (C) 2018 TheEdge, jtsshieh, Alee
 *
 *   Licensed under the Open Software License version 3.0
 *
 * *************************************/

exports.run = (bot, msg) => {
  msg.channel.send(msg.author.username + ' x ' + msg.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.',
};