Remove Help Examples

This commit is contained in:
Daniel Odendahl Jr
2017-04-23 17:03:17 +00:00
parent 37c9eb32ef
commit bc7153ec91
103 changed files with 112 additions and 227 deletions
+1 -2
View File
@@ -10,8 +10,7 @@ module.exports = class YearsCommand extends Command {
],
group: 'avataredit',
memberName: '3000years',
description: 'It\'s been 3000 years... (x;3000years @User)',
examples: ['x;3000years @user'],
description: 'It\'s been 3000 years...',
args: [{
key: 'user',
prompt: 'Which user would you like to edit the avatar of?',
+1 -2
View File
@@ -10,8 +10,7 @@ module.exports = class BeautifulCommand extends Command {
],
group: 'avataredit',
memberName: 'beautiful',
description: 'Oh, this? This is beautiful. (x;beautiful @User)',
examples: ['x;beautiful @User'],
description: 'Oh, this? This is beautiful.',
args: [{
key: 'user',
prompt: 'Which user would you like to edit the avatar of?',
+1 -2
View File
@@ -11,8 +11,7 @@ module.exports = class BobRossCommand extends Command {
],
group: 'avataredit',
memberName: 'bobross',
description: 'Make Bob Ross draw your avatar. (x;bobross @User)',
examples: ['x;bobross @User'],
description: 'Make Bob Ross draw an avatar.',
args: [{
key: 'user',
prompt: 'Which user would you like to edit the avatar of?',
+1 -2
View File
@@ -11,8 +11,7 @@ module.exports = class RIPCommand extends Command {
],
group: 'avataredit',
memberName: 'rip',
description: 'Puts a profile picture over a gravestone. (x;rip @User)',
examples: ['x;rip @User'],
description: 'Puts a user\'s avatar over a gravestone.',
args: [{
key: 'user',
prompt: 'Which user would you like to edit the avatar of?',
+1 -5
View File
@@ -5,13 +5,9 @@ module.exports = class SteamCardCommand extends Command {
constructor(client) {
super(client, {
name: 'steamcard',
aliases: [
'card'
],
group: 'avataredit',
memberName: 'steamcard',
description: 'Put an avatar on a Steam Card. (x;steamcard @User)',
examples: ['x;steamcard @user'],
description: 'Put an avatar on a Steam Card.',
args: [{
key: 'user',
prompt: 'Which user would you like to edit the avatar of?',
+1 -2
View File
@@ -6,8 +6,7 @@ module.exports = class LotteryCommand extends Command {
name: 'lottery',
group: 'games',
memberName: 'lottery',
description: '1 in 100 Chance of Winning. Winners get... The feeling of winning? (x;lottery)',
examples: ['x;lottery']
description: '1 in 100 chance of winning. Winners get... The feeling of winning?'
});
}
+1 -2
View File
@@ -9,8 +9,7 @@ module.exports = class MathGameCommand extends Command {
name: 'mathgame',
group: 'games',
memberName: 'mathgame',
description: 'See how fast you can answer a math problem in a given time limit. (x;mathgame easy)',
examples: ['x;mathgame easy', 'x;mathgame medium', 'x;mathgame hard', 'x;mathgame extreme'],
description: 'See how fast you can answer a math problem in a given time limit.',
args: [{
key: 'difficulty',
prompt: 'What difficulty should the math game be? easy, medium, hard, or extreme?',
+1 -2
View File
@@ -11,8 +11,7 @@ module.exports = class QuizCommand extends Command {
],
group: 'games',
memberName: 'quiz',
description: 'Answer a quiz question. (x;quiz)',
examples: ['x;quiz']
description: 'Answer a quiz question.'
});
}
+3 -3
View File
@@ -6,12 +6,12 @@ module.exports = class RockPaperScissorsCommand extends Command {
super(client, {
name: 'rps',
aliases: [
'rockpaperscissors'
'rockpaperscissors',
'rock-paper-scissors'
],
group: 'games',
memberName: 'rps',
description: 'Play Rock Paper Scissors (x;rps Rock)',
examples: ['x;rps Rock'],
description: 'Play Rock-Paper-Scissors.',
args: [{
key: 'choice',
prompt: 'Rock, Paper, or Scissors?',
+1 -2
View File
@@ -7,8 +7,7 @@ module.exports = class SlotsCommand extends Command {
name: 'slots',
group: 'games',
memberName: 'slots',
description: 'Play slots. (x;slots)',
examples: ['x;slots']
description: 'Play slots.'
});
}
+1 -2
View File
@@ -8,8 +8,7 @@ module.exports = class TypingGameCommand extends Command {
name: 'typinggame',
group: 'games',
memberName: 'typinggame',
description: 'See how fast you can type a sentence in a given time limit. (x;typinggame easy)',
examples: ['x;typinggame easy', 'x;typinggame medium', 'x;typinggame hard', 'x;typinggame extreme'],
description: 'See how fast you can type a sentence in a given time limit.',
args: [{
key: 'difficulty',
prompt: 'What difficulty should the typing game be? Easy, Medium, Hard, or Extreme?',
+2 -3
View File
@@ -11,8 +11,7 @@ module.exports = class EmojiCommand extends Command {
],
group: 'guildinfo',
memberName: 'emoji',
description: 'Gives a list of the current server\'s emoji. (x;emoji)',
examples: ['x;emoji'],
description: 'Gives a list of the current server\'s custom emoji.',
guildOnly: true
});
}
@@ -21,6 +20,6 @@ module.exports = class EmojiCommand extends Command {
if (message.channel.type !== 'dm') {
if (!message.channel.permissionsFor(this.client.user).hasPermission(['SEND_MESSAGES', 'READ_MESSAGES'])) return;
}
return message.say(message.guild.emojis.map(e => e).join('')).catch(() => message.say(':x: Error! Something went wrong!'));
return message.say(message.guild.emojis.map(e => e).join('')).catch(() => message.say(':x: Error! Perhaps you have no custom emoji?'));
}
};
+1 -2
View File
@@ -14,8 +14,7 @@ module.exports = class GuildInfoCommand extends Command {
],
group: 'guildinfo',
memberName: 'server',
description: 'Gives some info on the current server. (x;server)',
examples: ['x;server'],
description: 'Gives some info on the current server.',
guildOnly: true
});
}
+2 -5
View File
@@ -10,9 +10,8 @@ module.exports = class MemeCommand extends Command {
],
group: 'imageedit',
memberName: 'meme',
description: 'Sends a Meme with text of your choice, and a background of your choice. (x;meme facepalm "I can\'t even" "comprehend this")',
description: 'Sends a Meme with text of your choice, and a background of your choice.',
details: `**Codes:** ${memecodes.join(', ')}`,
examples: ['x;meme facepalm "I can\'t even" "comprehend this"'],
args: [{
key: 'type',
prompt: 'What meme type do you want to use?',
@@ -59,10 +58,8 @@ module.exports = class MemeCommand extends Command {
run(message, args) {
if (message.channel.type !== 'dm') {
if (!message.channel.permissionsFor(this.client.user).hasPermission(['SEND_MESSAGES', 'READ_MESSAGES'])) return;
if (!message.channel.permissionsFor(this.client.user).hasPermission('ATTACH_FILES')) return message.say(':x: Error! I don\'t have the Attach Files Permission!');
}
const { type, toprow, bottomrow } = args;
const link = `https://memegen.link/${type}/${toprow}/${bottomrow}.jpg`;
return message.channel.send({files: [link]}).catch(() => message.say(':x: Error! Something went wrong!'));
return message.channel.send({files: [`https://memegen.link/${type}/${toprow}/${bottomrow}.jpg`]});
}
};
+1 -2
View File
@@ -10,8 +10,7 @@ module.exports = class BanCommand extends Command {
],
group: 'moderation',
memberName: 'ban',
description: 'Bans a user. (x;ban @User being a jerk.)',
examples: ['x;ban @User being a jerk.'],
description: 'Bans a user and logs the ban to the mod_logs.',
guildOnly: true,
args: [{
key: 'member',
+1 -2
View File
@@ -7,8 +7,7 @@ module.exports = class KickCommand extends Command {
name: 'kick',
group: 'moderation',
memberName: 'kick',
description: 'Kicks a user. (x;kick @User being a jerk.)',
examples: ['x;kick @User being a jerk.'],
description: 'Kicks a user and logs the kick to the mod_logs.',
guildOnly: true,
args: [{
key: 'member',
+1 -2
View File
@@ -6,8 +6,7 @@ module.exports = class LockdownCommand extends Command {
name: 'lockdown',
group: 'moderation',
memberName: 'lockdown',
description: 'Locks down the current server or removes a lockdown, which prevents non-roled members from speaking. (x;lockdown start)',
examples: ['x;lockdown start', 'x;lockdown stop'],
description: 'Locks down the current channel or removes a lockdown, which prevents non-roled members from speaking.',
guildOnly: true,
args: [{
key: 'type',
+1 -6
View File
@@ -6,16 +6,11 @@ module.exports = class PruneCommand extends Command {
name: 'prune',
aliases: [
'clean',
'cleanchannel',
'prunemessages',
'cleanmessages',
'clearmessages',
'bulkdelete'
],
group: 'moderation',
memberName: 'prune',
description: 'Deletes a defined number of messages from the current channel, up to 99. (x;prune 45)',
examples: ['x;prune 45'],
description: 'Deletes a specified number of messages from the current channel, up to 99.',
guildOnly: true,
throttling: {
usages: 1,
+1 -2
View File
@@ -10,8 +10,7 @@ module.exports = class UnbanCommand extends Command {
],
group: 'moderation',
memberName: 'unban',
description: 'Unbans a user. (x;unban USERID not being a jerk.)',
examples: ['x;unban USERID not being a jerk.'],
description: 'Unbans a user and logs the unban to the mod_logs.',
guildOnly: true,
args: [{
key: 'memberID',
+1 -2
View File
@@ -7,8 +7,7 @@ module.exports = class WarnCommand extends Command {
name: 'warn',
group: 'moderation',
memberName: 'warn',
description: 'Warns a user. (x;warn @User being a jerk)',
examples: ['x;warn @User being a jerk.'],
description: 'Warns a user and logs the warn to the mod_logs.',
guildOnly: true,
args: [{
key: 'member',
+1 -2
View File
@@ -6,8 +6,7 @@ module.exports = class CanYouNotCommand extends Command {
name: 'canyounot',
group: 'random',
memberName: 'canyounot',
description: 'Can YOU not? (x;canyounot)',
examples: ['x;canyounot']
description: 'Can YOU not?'
});
}
+1 -2
View File
@@ -11,8 +11,7 @@ module.exports = class EasterEggCommand extends Command {
],
group: 'random',
memberName: 'easteregg',
description: 'Can you discover all the easter eggs? (x;easteregg I\'m an easter egg)',
examples: ['x;easteregg I\'m an easter egg'],
description: 'Can you discover all the easter eggs?',
args: [{
key: 'tag',
prompt: 'What easter egg do you want to view?',
+1 -2
View File
@@ -10,8 +10,7 @@ module.exports = class GiveFlowerCommand extends Command {
],
group: 'random',
memberName: 'giveflower',
description: 'Gives Xiao Pai a flower. (x;giveflower)',
examples: ['x;giveflower']
description: 'Gives Xiao Pai a flower.'
});
}
+1 -2
View File
@@ -6,8 +6,7 @@ module.exports = class LennyCommand extends Command {
name: 'lenny',
group: 'random',
memberName: 'lenny',
description: 'Responds with the lenny face. (x;lenny)',
examples: ['x;lenny']
description: 'Responds with the lenny face.'
});
}
+1 -8
View File
@@ -5,16 +5,9 @@ module.exports = class MathCommand extends Command {
constructor(client) {
super(client, {
name: 'math',
aliases: [
'add',
'subtract',
'multiply',
'divide'
],
group: 'random',
memberName: 'math',
description: 'Does Math (x;math 2 + 2)',
examples: ['x;math 2 + 2'],
description: 'Does math.',
args: [{
key: 'expression',
prompt: 'What do you want to answer?',
+1 -2
View File
@@ -10,8 +10,7 @@ module.exports = class MotivateCommand extends Command {
],
group: 'random',
memberName: 'motivate',
description: 'Motivates someone. (x;motivate @User)',
examples: ['x;motivate @User'],
description: 'Motivates something/someone.',
args: [{
key: 'thing',
prompt: 'What do you want to motivate?',
+1 -2
View File
@@ -7,8 +7,7 @@ module.exports = class NitroCommand extends Command {
name: 'nitro',
group: 'random',
memberName: 'nitro',
description: 'Sends a "This Message Can Only be viewed by Nitro Members" message. (x;nitro)',
examples: ['x;nitro']
description: 'Sends a "This Message Can Only be viewed by Nitro Members" message.'
});
}
+1 -2
View File
@@ -6,8 +6,7 @@ module.exports = class SlowClapCommand extends Command {
name: 'slowclap',
group: 'random',
memberName: 'slowclap',
description: '*Slow Clap*. (x;slowclap)',
examples: ['x;slowclap']
description: '*Slow Clap*.'
});
}
+1 -2
View File
@@ -6,8 +6,7 @@ module.exports = class SpamCommand extends Command {
name: 'spam',
group: 'random',
memberName: 'spam',
description: 'Puts a picture of Spam. (x;spam)',
examples: ['x;spam']
description: 'Puts a picture of Spam.'
});
}
+2 -4
View File
@@ -6,13 +6,11 @@ module.exports = class StrawpollCommand extends Command {
super(client, {
name: 'strawpoll',
aliases: [
'poll',
'survey'
'poll'
],
group: 'random',
memberName: 'strawpoll',
description: 'Creates a Strawpoll with your options. (x;strawpoll "Who likes chips?" "Me" "Not Me")',
examples: ['x;strawpoll "Who likes chips?" "Me" "Not Me"'],
description: 'Creates a Strawpoll with your options.',
args: [{
key: 'title',
prompt: 'What would you like the title of the Strawpoll to be?',
+1 -2
View File
@@ -11,8 +11,7 @@ module.exports = class TodayCommand extends Command {
],
group: 'random',
memberName: 'today',
description: 'Tells you what happened today. (x;today)',
examples: ['x;today']
description: 'Tells you what happened today in history.'
});
}
+1 -2
View File
@@ -12,8 +12,7 @@ module.exports = class WouldYouRatherCommand extends Command {
],
group: 'random',
memberName: 'wouldyourather',
description: 'Gets a random would you rather question. (x;wouldyourather)',
examples: ['x;wouldyourather']
description: 'Gets a random would you rather question.'
});
}
+4 -2
View File
@@ -5,10 +5,12 @@ module.exports = class CatCommand extends Command {
constructor(client) {
super(client, {
name: 'cat',
aliases: [
'neko'
],
group: 'randomimg',
memberName: 'cat',
description: 'Sends a random cat picture. (x;cat)',
examples: ['x;cat']
description: 'Sends a random cat image.'
});
}
+1 -2
View File
@@ -10,8 +10,7 @@ module.exports = class PotatoCommand extends Command {
],
group: 'randomimg',
memberName: 'potato',
description: 'Sends a random Potato picture. (x;potato)',
examples: ['x;potato']
description: 'Sends a random potato image.'
});
}
+1 -2
View File
@@ -7,8 +7,7 @@ module.exports = class RandomPunCommand extends Command {
name: 'pun',
group: 'randomimg',
memberName: 'pun',
description: 'Sends a random pun image. (x;pun)',
examples: ['x;pun']
description: 'Sends a random pun image.'
});
}
+1 -2
View File
@@ -10,8 +10,7 @@ module.exports = class VocaloidCommand extends Command {
],
group: 'randomimg',
memberName: 'vocaloid',
description: 'Sends a random VOCALOID song. (x;vocaloid)',
examples: ['x;vocaloid']
description: 'Sends a random VOCALOID song.'
});
}
+1 -2
View File
@@ -10,8 +10,7 @@ module.exports = class XiaoCommand extends Command {
],
group: 'randomimg',
memberName: 'xiaopai',
description: 'Sends a random image of Xiao Pai. (x;xiaopai)',
examples: ['x;xiaopai']
description: 'Sends a random image of Xiao Pai.'
});
}
+1 -2
View File
@@ -7,8 +7,7 @@ module.exports = class MagicBallCommand extends Command {
name: '8ball',
group: 'response',
memberName: '8ball',
description: 'Predicts your future. (x;8ball Am I stupid?)',
examples: ['x;8ball Am I stupid?'],
description: 'Predicts your future.',
args: [{
key: 'question',
prompt: 'What do you want to ask the 8 ball?',
+1 -2
View File
@@ -9,8 +9,7 @@ module.exports = class ChooseCommand extends Command {
],
group: 'response',
memberName: 'choose',
description: 'Chooses between things. (x;choose "Cow" "Sheep")',
examples: ['x;choose "Cow" "Sheep"', 'x;choose "Bark" "Woof" "Meow" "Moo"'],
description: 'Chooses between things.',
args: [{
key: 'choices',
prompt: 'What choices do you want me pick from?',
+1 -2
View File
@@ -11,8 +11,7 @@ module.exports = class CoinFlipCommand extends Command {
],
group: 'response',
memberName: 'coin',
description: 'Flips a coin. (x;coin)',
examples: ['x;coin']
description: 'Flips a coin.'
});
}
+1 -2
View File
@@ -7,8 +7,7 @@ module.exports = class ComplimentCommand extends Command {
name: 'compliment',
group: 'response',
memberName: 'compliment',
description: 'Compliments the user of your choice. (x;compliment @User)',
examples: ['x;compliment @User'],
description: 'Compliments something/someone.',
args: [{
key: 'thing',
prompt: 'What do you want to compliment?',
+1 -2
View File
@@ -7,8 +7,7 @@ module.exports = class FactCoreCommand extends Command {
name: 'factcore',
group: 'response',
memberName: 'factcore',
description: 'Says a random Fact Core quote. (x;factcore)',
examples: ['x;factcore']
description: 'Says a random Fact Core quote.'
});
}
+1 -2
View File
@@ -11,8 +11,7 @@ module.exports = class FishyCommand extends Command {
],
group: 'response',
memberName: 'fishy',
description: 'Catches a fish. (x;fishy)',
examples: ['x;fishy']
description: 'Catches a fish.'
});
}
+1 -2
View File
@@ -10,8 +10,7 @@ module.exports = class FortuneCookieCommand extends Command {
],
group: 'response',
memberName: 'fortune',
description: 'Fortune Cookie. (x;fortune)',
examples: ['x;fortune']
description: 'Fortune Cookie.'
});
}
+1 -2
View File
@@ -11,8 +11,7 @@ module.exports = class RandomNameCommand extends Command {
],
group: 'response',
memberName: 'name',
description: 'Generates a random name (x;name Male)',
examples: ['x;name', 'x;name male', 'x;name female'],
description: 'Generates a random name.',
args: [{
key: 'gender',
prompt: 'Which gender do you want to generate a name for?',
+1 -2
View File
@@ -11,8 +11,7 @@ module.exports = class OffspringCommand extends Command {
],
group: 'response',
memberName: 'offspring',
description: 'Tells you if your new child is a boy or a girl. (x;offspring)',
examples: ['x;offspring']
description: 'Tells you if your new child is a boy or a girl.'
});
}
+1 -2
View File
@@ -12,8 +12,7 @@ module.exports = class QuantumCoinCommand extends Command {
],
group: 'response',
memberName: 'quantumcoin',
description: 'Flips a coin that lands on nothing. (x;quantumcoin)',
examples: ['x;quantumcoin']
description: 'Flips a coin that lands on nothing.'
});
}
+1 -2
View File
@@ -9,8 +9,7 @@ module.exports = class RateWaifuCommand extends Command {
],
group: 'response',
memberName: 'ratewaifu',
description: 'Rates your Waifu. (x;ratewaifu Xiao Pai)',
examples: ['x;ratewaifu Xiao Pai'],
description: 'Rates your Waifu.',
args: [{
key: 'waifu',
prompt: 'Who do you want to rate?',
+1 -2
View File
@@ -10,8 +10,7 @@ module.exports = class RoastCommand extends Command {
],
group: 'response',
memberName: 'roast',
description: 'Roasts the user of your choice. (x;roast @User)',
examples: ['x;roast @username'],
description: 'Roasts something/someone.',
args: [{
key: 'thing',
prompt: 'What do you want to roast?',
+1 -2
View File
@@ -10,8 +10,7 @@ module.exports = class RollCommand extends Command {
],
group: 'response',
memberName: 'roll',
description: 'Rolls a Dice of your choice. (x;roll 6)',
examples: ['x;roll 6'],
description: 'Rolls a dice with a maximum value you specify.',
args: [{
key: 'value',
prompt: 'What is the maximum number you wish to appear?',
+1 -2
View File
@@ -12,8 +12,7 @@ module.exports = class RouletteCommand extends Command {
],
group: 'response',
memberName: 'roulette',
description: 'Chooses a random member. (x;roulette Who is the best?)',
examples: ['x;roulette Who is the best?'],
description: 'Chooses a random member in the server.',
guildOnly: true
});
}
+1 -2
View File
@@ -9,8 +9,7 @@ module.exports = class ShipCommand extends Command {
],
group: 'response',
memberName: 'ship',
description: 'Ships two people. (x;ship @Rem and @Nate)',
examples: ['x;ship @Rem and @Nate'],
description: 'Ships things/people together.',
args: [{
key: 'things',
prompt: 'What do you want to ship together?',
+1 -2
View File
@@ -6,8 +6,7 @@ module.exports = class CuddleCommand extends Command {
name: 'cuddle',
group: 'roleplay',
memberName: 'cuddle',
description: 'Cuddles someone. (x;cuddle @User)',
examples: ['x;cuddle @User'],
description: 'Cuddles something/someone.',
args: [{
key: 'thing',
prompt: 'What do you want to roleplay with?',
+1 -2
View File
@@ -6,8 +6,7 @@ module.exports = class DivorceCommand extends Command {
name: 'divorce',
group: 'roleplay',
memberName: 'divorce',
description: 'Divorces someone. (x;divorce @User)',
examples: ['x;divorce @User'],
description: 'Divorces something/someone.',
args: [{
key: 'thing',
prompt: 'What do you want to roleplay with?',
+1 -2
View File
@@ -6,8 +6,7 @@ module.exports = class EatCommand extends Command {
name: 'eat',
group: 'roleplay',
memberName: 'eat',
description: 'Eats something/someone. (x;eat @User)',
examples: ['x;eat @User'],
description: 'Eats something/someone.',
args: [{
key: 'thing',
prompt: 'What do you want to roleplay with?',
+1 -2
View File
@@ -6,8 +6,7 @@ module.exports = class FalconPunchCommand extends Command {
name: 'falconpunch',
group: 'roleplay',
memberName: 'falconpunch',
description: 'Falcon Punches someone. (x;falconpunch @User)',
examples: ['x;falconpunch @User'],
description: 'Falcon Punches something/someone.',
args: [{
key: 'thing',
prompt: 'What do you want to roleplay with?',
+1 -2
View File
@@ -6,8 +6,7 @@ module.exports = class FistBumpCommand extends Command {
name: 'fistbump',
group: 'roleplay',
memberName: 'fistbump',
description: 'Fistbumps someone. (x;fistbump @User)',
examples: ['x;fistbump @User'],
description: 'Fistbumps something/someone.',
args: [{
key: 'thing',
prompt: 'What do you want to roleplay with?',
+1 -2
View File
@@ -6,8 +6,7 @@ module.exports = class HighFivesCommand extends Command {
name: 'highfive',
group: 'roleplay',
memberName: 'highfive',
description: 'High Fives someone. (x;highfive @User)',
examples: ['x;highfive @User'],
description: 'High Fives something/someone.',
args: [{
key: 'thing',
prompt: 'What do you want to roleplay with?',
+1 -2
View File
@@ -6,8 +6,7 @@ module.exports = class HitwithShovelCommand extends Command {
name: 'hitwithshovel',
group: 'roleplay',
memberName: 'hitwithsovel',
description: 'Hits someone with a shovel. (x;hitwithshovel @User)',
examples: ['x;hitwithshovel @User'],
description: 'Hits something/someone with a shovel.',
args: [{
key: 'thing',
prompt: 'What do you want to roleplay with?',
+1 -2
View File
@@ -6,8 +6,7 @@ module.exports = class HugCommand extends Command {
name: 'hug',
group: 'roleplay',
memberName: 'hug',
description: 'Hugs someone. (x;hug @User)',
examples: ['x;hug @User'],
description: 'Hugs something/someone.',
args: [{
key: 'thing',
prompt: 'What do you want to roleplay with?',
+1 -2
View File
@@ -6,8 +6,7 @@ module.exports = class InhaleCommand extends Command {
name: 'inhale',
group: 'roleplay',
memberName: 'inhale',
description: 'Inhales someone. (x;inhale @User)',
examples: ['x;inhale @User'],
description: 'Inhales something/someone.',
args: [{
key: 'thing',
prompt: 'What do you want to roleplay with?',
+1 -2
View File
@@ -6,8 +6,7 @@ module.exports = class KillCommand extends Command {
name: 'kill',
group: 'roleplay',
memberName: 'kill',
description: 'Kills someone. (x;kill @User)',
examples: ['x;kill @User'],
description: 'Kills something/someone.',
args: [{
key: 'thing',
prompt: 'What do you want to roleplay with?',
+1 -2
View File
@@ -6,8 +6,7 @@ module.exports = class KissCommand extends Command {
name: 'kiss',
group: 'roleplay',
memberName: 'kiss',
description: 'Kisses someone. (x;kiss @User)',
examples: ['x;kiss @User'],
description: 'Kisses something/someone.',
args: [{
key: 'thing',
prompt: 'What do you want to roleplay with?',
+1 -2
View File
@@ -6,8 +6,7 @@ module.exports = class MarryCommand extends Command {
name: 'marry',
group: 'roleplay',
memberName: 'marry',
description: 'Marries someone. (x;marry @User)',
examples: ['x;marry @User'],
description: 'Marries something/someone.',
args: [{
key: 'thing',
prompt: 'What do you want to roleplay with?',
+1 -2
View File
@@ -6,8 +6,7 @@ module.exports = class PatCommand extends Command {
name: 'pat',
group: 'roleplay',
memberName: 'pat',
description: 'Pats someone. (x;pat @User)',
examples: ['x;pat @User'],
description: 'Pats something/someone.',
args: [{
key: 'thing',
prompt: 'What do you want to roleplay with?',
+1 -2
View File
@@ -6,8 +6,7 @@ module.exports = class PokeCommand extends Command {
name: 'poke',
group: 'roleplay',
memberName: 'poke',
description: 'Pokes someone. (x;poke @User)',
examples: ['x;poke @User'],
description: 'Pokes something/someone.',
args: [{
key: 'thing',
prompt: 'What do you want to roleplay with?',
+1 -2
View File
@@ -6,8 +6,7 @@ module.exports = class PunchCommand extends Command {
name: 'punch',
group: 'roleplay',
memberName: 'punch',
description: 'Punches someone. (x;punch @User)',
examples: ['x;punch @User'],
description: 'Punches something/someone.',
args: [{
key: 'thing',
prompt: 'What do you want to roleplay with?',
+1 -2
View File
@@ -6,8 +6,7 @@ module.exports = class SlapCommand extends Command {
name: 'slap',
group: 'roleplay',
memberName: 'slap',
description: 'Slaps someone. (x;slap @User)',
examples: ['x;slap @User'],
description: 'Slaps something/someone.',
args: [{
key: 'thing',
prompt: 'What do you want to roleplay with?',
+1 -2
View File
@@ -12,8 +12,7 @@ module.exports = class BotSearchCommand extends Command {
],
group: 'search',
memberName: 'botinfo',
description: 'Searches Discord Bots for info on a bot. (x;botinfo @Bot)',
examples: ['x;botinfo @Bot'],
description: 'Searches Discord Bots for info on a bot.',
args: [{
key: 'bot',
prompt: 'Which bot do you want to get information for?',
+1 -2
View File
@@ -14,8 +14,7 @@ module.exports = class DefineCommand extends Command {
],
group: 'search',
memberName: 'define',
description: 'Defines a word. (x;define Cat)',
examples: ['x;define Cat'],
description: 'Defines a word.',
args: [{
key: 'word',
prompt: 'What would you like to define?',
+1 -2
View File
@@ -11,8 +11,7 @@ module.exports = class DiscrimCommand extends Command {
],
group: 'search',
memberName: 'discrim',
description: 'Searches the server for a certain discriminator. (x;discrim 8081)',
examples: ['x;discrim 8081'],
description: 'Searches for other users with a certain discriminator.',
args: [{
key: 'discrim',
prompt: 'Which discriminator would you like to search for?',
+1 -2
View File
@@ -11,8 +11,7 @@ module.exports = class ForecastCommand extends Command {
],
group: 'search',
memberName: 'forecast',
description: 'Gets the seven-day forecast for a specified location. (x;forecast San Francisco)',
examples: ['x;forecast San Francisco'],
description: 'Gets the seven-day forecast for a specified location.',
args: [{
key: 'location',
prompt: 'What location would you like to get the forecast for?',
+1 -2
View File
@@ -12,8 +12,7 @@ module.exports = class GoogleCommand extends Command {
],
group: 'search',
memberName: 'google',
description: 'Searches Google. (x;google Cat)',
examples: ['x;google Cat'],
description: 'Searches Google.',
args: [{
key: 'query',
prompt: 'What would you like to search for?',
+1 -2
View File
@@ -14,8 +14,7 @@ module.exports = class IMDBCommand extends Command {
],
group: 'search',
memberName: 'imdb',
description: 'Searches IMDB for a specified movie. (x;imdb How to Train Your Dragon)',
examples: ['x;imdb How to Train Your Dragon'],
description: 'Searches IMDB for a specified movie.',
args: [{
key: 'movie',
prompt: 'What movie or TV Show would you like to search for?',
+1 -2
View File
@@ -6,8 +6,7 @@ module.exports = class LMGTFYCommand extends Command {
name: 'lmgtfy',
group: 'search',
memberName: 'lmgtfy',
description: 'Responds with a LMGTFY link. (x;lmgtfy How to Internet)',
examples: ['x;lmgtfy How to Internet'],
description: 'Responds with a LMGTFY link.',
args: [{
key: 'query',
prompt: 'What would you like to the link to search for?',
+1 -2
View File
@@ -10,8 +10,7 @@ module.exports = class MapCommand extends Command {
],
group: 'search',
memberName: 'map',
description: 'Gets a map image for the location you define with the zoom level you define (1-20). (x;map 15 Cartersville, GA)',
examples: ['x;map 15 Cartersville, GA'],
description: 'Gets a map image for the location you define with the zoom level you define (1-20).',
args: [{
key: 'zoom',
prompt: 'What would you like the zoom level for the map to be? Limit 1-20.',
+1 -2
View File
@@ -8,8 +8,7 @@ module.exports = class NeopetCommand extends Command {
name: 'neopet',
group: 'search',
memberName: 'neopet',
description: 'Gives a Neopet\'s image, searchable by name. (x;neopet Pikachu53535)',
examples: ['x;neopet Pikachu53535'],
description: 'Gives a Neopet\'s image, searchable by name.',
args: [{
key: 'pet',
prompt: 'What pet would you like to get the image of?',
+1 -2
View File
@@ -13,8 +13,7 @@ module.exports = class OsuCommand extends Command {
],
group: 'search',
memberName: 'osu',
description: 'Searches Osu user data. (x;osu dragonfire535)',
examples: ['x;osu dragonfire535'],
description: 'Searches Osu! user data.',
args: [{
key: 'username',
prompt: 'What osu username would you like to search for?',
+2 -4
View File
@@ -8,13 +8,11 @@ module.exports = class SoundCloudCommand extends Command {
name: 'soundcloud',
aliases: [
'cloudsound',
'scloud',
'csound'
'scloud'
],
group: 'search',
memberName: 'soundcloud',
description: 'Searches SoundCloud for a song. (x;soundcloud Turtle Dreams)',
examples: ['x;soundcloud Turtle Dreams'],
description: 'Searches SoundCloud for a song.',
args: [{
key: 'query',
prompt: 'What do you want to search SoundCloud for?',
+1 -2
View File
@@ -13,8 +13,7 @@ module.exports = class UrbanCommand extends Command {
],
group: 'search',
memberName: 'urban',
description: 'Searches Urban Dictionary. (x;urban Cat)',
examples: ['x;urban Cat'],
description: 'Searches Urban Dictionary for a word.',
args: [{
key: 'word',
prompt: 'What would you like to define?',
+1 -2
View File
@@ -8,8 +8,7 @@ module.exports = class WattpadCommand extends Command {
name: 'wattpad',
group: 'search',
memberName: 'wattpad',
description: 'Searches Wattpad for a specified book. (x;wattpad Heroes of Dreamland)',
examples: ['x;wattpad Heroes of Dreamland'],
description: 'Searches Wattpad for a book.',
args: [{
key: 'book',
prompt: 'What book would you like to search for?',
+1 -2
View File
@@ -8,8 +8,7 @@ module.exports = class WeatherCommand extends Command {
name: 'weather',
group: 'search',
memberName: 'weather',
description: 'Searches weather for a specified location. (x;weather San Francisco)',
examples: ['x;weather San Francisco'],
description: 'Gets weather information for a specified location.',
args: [{
key: 'location',
prompt: 'What location would you like to get the current weather for?',
+1 -2
View File
@@ -8,8 +8,7 @@ module.exports = class WikipediaCommand extends Command {
name: 'wikipedia',
group: 'search',
memberName: 'wikipedia',
description: 'Searches Wikipedia for something. (x;wikipedia Cat)',
examples: ['x;wikipedia Cat'],
description: 'Searches Wikipedia for something.',
args: [{
key: 'query',
prompt: 'What would you like to search for?',
+1 -2
View File
@@ -11,8 +11,7 @@ module.exports = class YouTubeCommand extends Command {
],
group: 'search',
memberName: 'youtube',
description: 'Searches YouTube for a video. (x;youtube video)',
examples: ['x;youtube video'],
description: 'Searches YouTube for a video.',
args: [{
key: 'video',
prompt: 'What would you like to search for?',
+1 -2
View File
@@ -8,8 +8,7 @@ module.exports = class YuGiOhCommand extends Command {
name: 'yugioh',
group: 'search',
memberName: 'yugioh',
description: 'Gets info on a Yu-Gi-Oh! Card. (x;yugioh Blue-Eyes White Dragon)',
examples: ['x;yugioh Blue-Eyes White Dragon'],
description: 'Gets info on a Yu-Gi-Oh! Card.',
args: [{
key: 'card',
prompt: 'What card would you like to get data for?',
+1 -2
View File
@@ -14,8 +14,7 @@ module.exports = class BinaryCommand extends Command {
name: 'binary',
group: 'textedit',
memberName: 'binary',
description: 'Converts text to binary. (x;binary This text)',
examples: ['x;binary This text'],
description: 'Converts text to binary.',
args: [{
key: 'text',
prompt: 'What text would you like to convert to binary?',
+1 -2
View File
@@ -6,8 +6,7 @@ module.exports = class CowsayCommand extends Command {
name: 'cowsay',
group: 'textedit',
memberName: 'cowsay',
description: 'Converts text to cowsay. (x;cowsay This text)',
examples: ['x;cowsay This text'],
description: 'Converts text to cowsay.',
args: [{
key: 'text',
prompt: 'What text would you like the cow to say?',
+1 -2
View File
@@ -7,8 +7,7 @@ module.exports = class EmbedCommand extends Command {
name: 'embed',
group: 'textedit',
memberName: 'embed',
description: 'Sends a message in an embed. (x;embed This is an example.)',
examples: ['x;embed This is an example.'],
description: 'Sends a message in an embed.',
guildOnly: true,
args: [{
key: 'text',
+1 -2
View File
@@ -11,8 +11,7 @@ module.exports = class MorseCommand extends Command {
],
group: 'textedit',
memberName: 'morse',
description: 'Translates text to morse code. (x;morse This is Morse Code.)',
examples: ['x;morse This is Morse Code.'],
description: 'Translates text to morse code.',
args: [{
key: 'text',
prompt: 'What text would you like to convert to morse?',
+1 -2
View File
@@ -12,8 +12,7 @@ module.exports = class PirateCommand extends Command {
],
group: 'textedit',
memberName: 'pirate',
description: 'Talk like a pirate! (x;pirate This is being said like a pirate!)',
examples: ['x;pirate This is being said like a pirate!'],
description: 'Talk like a pirate!',
args: [{
key: 'text',
prompt: 'What text would you like to convert to pirate?',
+1 -2
View File
@@ -6,8 +6,7 @@ module.exports = class ReverseCommand extends Command {
name: 'reverse',
group: 'textedit',
memberName: 'reverse',
description: 'Reverses text (x;reverse This text please)',
examples: ['x;reverse This text please'],
description: 'Reverses text.',
args: [{
key: 'text',
prompt: 'What text would you like to reverse?',
+1 -2
View File
@@ -12,8 +12,7 @@ module.exports = class SayCommand extends Command {
],
group: 'textedit',
memberName: 'say',
description: 'Make XiaoBot say what you wish. (x;say I can talk!)',
examples: ['x;say I can talk!'],
description: 'Make XiaoBot say what you wish.',
guildOnly: true,
args: [{
key: 'text',
+1 -2
View File
@@ -8,8 +8,7 @@ module.exports = class TemmieCommand extends Command {
name: 'temmie',
group: 'textedit',
memberName: 'temmie',
description: 'Translate text to Temmie speak. (x;temmie I am Temmie)',
examples: ['x;temmie I am Temmie.'],
description: 'Translate text to Temmie speak.',
args: [{
key: 'text',
prompt: 'What text would you like to convert to Temmie speak?',
+1 -2
View File
@@ -12,8 +12,7 @@ module.exports = class UpsideDownCommand extends Command {
],
group: 'textedit',
memberName: 'upsidedown',
description: 'Flips text upside-down. (x;upsidedown It\'s upside-down!)',
examples: ['x;upsidedown It\'s upside-down!'],
description: 'Flips text upside-down.',
args: [{
key: 'text',
prompt: 'What text would you like to flip upside-down?',
+1 -2
View File
@@ -11,8 +11,7 @@ module.exports = class WebhookCommand extends Command {
],
group: 'textedit',
memberName: 'webhook',
description: 'Posts a message to the webhook defined in your `process.env`. (x;webhook Hey guys!)',
examples: ['x;webhook Hey guys!'],
description: 'Posts a message to the webhook defined in your `process.env`.',
guildOnly: true,
args: [{
key: 'text',
+1 -2
View File
@@ -7,8 +7,7 @@ module.exports = class ZalgoCommand extends Command {
name: 'zalgo',
group: 'textedit',
memberName: 'zalgo',
description: 'Zalgoizes Text (x;zalgo This Text)',
examples: ['x;zalgo This Text'],
description: 'Zalgoizes Text.',
args: [{
key: 'text',
prompt: 'What text would you like to convert to zalgo?',
+1 -2
View File
@@ -6,8 +6,7 @@ module.exports = class AvatarCommand extends Command {
name: 'avatar',
group: 'userinfo',
memberName: 'avatar',
description: 'Gives a link to someone\'s avatar. (x;avatar @User)',
examples: ['x;avatar @XiaoBot'],
description: 'Gives a link to a user\'s avatar.',
args: [{
key: 'user',
prompt: 'Which user would you like to get the avatar of?',
+1 -2
View File
@@ -14,8 +14,7 @@ module.exports = class UserInfoCommand extends Command {
],
group: 'userinfo',
memberName: 'user',
description: 'Gives some info on a user. (x;user @User)',
examples: ['x;user @User'],
description: 'Gives some info on a user.',
guildOnly: true,
args: [{
key: 'user',
+1 -2
View File
@@ -14,8 +14,7 @@ module.exports = class InfoCommand extends Command {
],
group: 'util',
memberName: 'info',
description: 'Gives some bot info for your shard. (x;info)',
examples: ['x;info']
description: 'Gives some bot info for your shard.'
});
}
+1 -2
View File
@@ -6,8 +6,7 @@ module.exports = class InviteCommand extends Command {
name: 'invite',
group: 'util',
memberName: 'invite',
description: 'Sends you an invite for the bot and an invite to my server. (x;invite)',
examples: ['x;invite']
description: 'Sends you an invite for the bot and an invite to my server.'
});
}

Some files were not shown because too many files have changed in this diff Show More