mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-14 00:08:06 +02:00
Fix Examples in Commands
This commit is contained in:
@@ -6,8 +6,8 @@ module.exports = class MagicBallCommand extends Command {
|
||||
name: '8ball',
|
||||
group: 'response',
|
||||
memberName: '8ball',
|
||||
description: 'Predicts your future. (;8ball Am I stupid?)',
|
||||
examples: [';8ball Am I stupid?'],
|
||||
description: 'Predicts your future. (x;8ball Am I stupid?)',
|
||||
examples: ['x;8ball Am I stupid?'],
|
||||
args: [{
|
||||
key: 'question',
|
||||
prompt: 'What do you want to ask the 8 ball?',
|
||||
|
||||
@@ -9,8 +9,8 @@ module.exports = class ChooseCommand extends Command {
|
||||
],
|
||||
group: 'response',
|
||||
memberName: 'choose',
|
||||
description: 'Chooses between things. (;choose "Cow" "Sheep")',
|
||||
examples: [';choose "Cow" "Sheep"', ';choose "Bark" "Woof" "Meow" "Moo"'],
|
||||
description: 'Chooses between things. (x;choose "Cow" "Sheep")',
|
||||
examples: ['x;choose "Cow" "Sheep"', 'x;choose "Bark" "Woof" "Meow" "Moo"'],
|
||||
args: [{
|
||||
key: 'choices',
|
||||
prompt: 'What choices do you want me pick from?',
|
||||
|
||||
@@ -10,8 +10,8 @@ module.exports = class CoinFlipCommand extends Command {
|
||||
],
|
||||
group: 'response',
|
||||
memberName: 'coin',
|
||||
description: 'Flips a coin. (;coin)',
|
||||
examples: [';coin']
|
||||
description: 'Flips a coin. (x;coin)',
|
||||
examples: ['x;coin']
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -6,8 +6,8 @@ module.exports = class ComplimentCommand extends Command {
|
||||
name: 'compliment',
|
||||
group: 'response',
|
||||
memberName: 'compliment',
|
||||
description: 'Compliments the user of your choice. (;compliment @User)',
|
||||
examples: [';compliment @User'],
|
||||
description: 'Compliments the user of your choice. (x;compliment @User)',
|
||||
examples: ['x;compliment @User'],
|
||||
args: [{
|
||||
key: 'thing',
|
||||
prompt: 'What do you want to compliment?',
|
||||
|
||||
@@ -6,8 +6,8 @@ module.exports = class FactCoreCommand extends Command {
|
||||
name: 'factcore',
|
||||
group: 'response',
|
||||
memberName: 'factcore',
|
||||
description: 'Says a random Fact Core quote. (;factcore)',
|
||||
examples: [';factcore']
|
||||
description: 'Says a random Fact Core quote. (x;factcore)',
|
||||
examples: ['x;factcore']
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -10,8 +10,8 @@ module.exports = class FishyCommand extends Command {
|
||||
],
|
||||
group: 'response',
|
||||
memberName: 'fishy',
|
||||
description: 'Catches a fish. (;fishy)',
|
||||
examples: [';fishy']
|
||||
description: 'Catches a fish. (x;fishy)',
|
||||
examples: ['x;fishy']
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -9,8 +9,8 @@ module.exports = class FortuneCookieCommand extends Command {
|
||||
],
|
||||
group: 'response',
|
||||
memberName: 'fortune',
|
||||
description: 'Fortune Cookie. (;fortune)',
|
||||
examples: [';fortune']
|
||||
description: 'Fortune Cookie. (x;fortune)',
|
||||
examples: ['x;fortune']
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -10,8 +10,8 @@ module.exports = class RandomNameCommand extends Command {
|
||||
],
|
||||
group: 'response',
|
||||
memberName: 'name',
|
||||
description: 'Generates a random name (;name Male)',
|
||||
examples: [';name', ';name male', ';name female'],
|
||||
description: 'Generates a random name (x;name Male)',
|
||||
examples: ['x;name', 'x;name male', 'x;name female'],
|
||||
args: [{
|
||||
key: 'gender',
|
||||
prompt: 'Which gender do you want to generate a name for?',
|
||||
|
||||
@@ -10,8 +10,8 @@ module.exports = class OffspringCommand extends Command {
|
||||
],
|
||||
group: 'response',
|
||||
memberName: 'offspring',
|
||||
description: 'Tells you if your new child is a boy or a girl. (;offspring)',
|
||||
examples: [';offspring']
|
||||
description: 'Tells you if your new child is a boy or a girl. (x;offspring)',
|
||||
examples: ['x;offspring']
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -11,8 +11,8 @@ module.exports = class QuantumCoinCommand extends Command {
|
||||
],
|
||||
group: 'response',
|
||||
memberName: 'quantumcoin',
|
||||
description: 'Flips a coin that lands on nothing. (;quantumcoin)',
|
||||
examples: [';quantumcoin']
|
||||
description: 'Flips a coin that lands on nothing. (x;quantumcoin)',
|
||||
examples: ['x;quantumcoin']
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -9,8 +9,8 @@ module.exports = class RateWaifuCommand extends Command {
|
||||
],
|
||||
group: 'response',
|
||||
memberName: 'ratewaifu',
|
||||
description: 'Rates your Waifu. (;ratewaifu Xiao Pai)',
|
||||
examples: [';ratewaifu Xiao Pai'],
|
||||
description: 'Rates your Waifu. (x;ratewaifu Xiao Pai)',
|
||||
examples: ['x;ratewaifu Xiao Pai'],
|
||||
args: [{
|
||||
key: 'waifu',
|
||||
prompt: 'Who do you want to rate?',
|
||||
|
||||
@@ -9,8 +9,8 @@ module.exports = class RoastCommand extends Command {
|
||||
],
|
||||
group: 'response',
|
||||
memberName: 'roast',
|
||||
description: 'Roasts the user of your choice. (;roast @User)',
|
||||
examples: [';roast @username'],
|
||||
description: 'Roasts the user of your choice. (x;roast @User)',
|
||||
examples: ['x;roast @username'],
|
||||
args: [{
|
||||
key: 'thing',
|
||||
prompt: 'What do you want to roast?',
|
||||
|
||||
@@ -10,8 +10,8 @@ module.exports = class RollCommand extends Command {
|
||||
],
|
||||
group: 'response',
|
||||
memberName: 'roll',
|
||||
description: 'Rolls a Dice of your choice. (;roll 6)',
|
||||
examples: [';roll 6'],
|
||||
description: 'Rolls a Dice of your choice. (x;roll 6)',
|
||||
examples: ['x;roll 6'],
|
||||
args: [{
|
||||
key: 'value',
|
||||
prompt: 'What is the maximum number you wish to appear?',
|
||||
|
||||
@@ -12,8 +12,8 @@ module.exports = class RouletteCommand extends Command {
|
||||
],
|
||||
group: 'response',
|
||||
memberName: 'roulette',
|
||||
description: 'Chooses a random member. (;roulette Who is the best?)',
|
||||
examples: [';roulette Who is the best?'],
|
||||
description: 'Chooses a random member. (x;roulette Who is the best?)',
|
||||
examples: ['x;roulette Who is the best?'],
|
||||
guildOnly: true
|
||||
});
|
||||
}
|
||||
|
||||
@@ -9,8 +9,8 @@ module.exports = class ShipCommand extends Command {
|
||||
],
|
||||
group: 'response',
|
||||
memberName: 'ship',
|
||||
description: 'Ships two people. (;ship @Rem and @Nate)',
|
||||
examples: [';ship @Rem and @Nate'],
|
||||
description: 'Ships two people. (x;ship @Rem and @Nate)',
|
||||
examples: ['x;ship @Rem and @Nate'],
|
||||
args: [{
|
||||
key: 'things',
|
||||
prompt: 'What do you want to ship together?',
|
||||
|
||||
Reference in New Issue
Block a user