mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-10 02:45:22 +02:00
Fix Examples in Commands
This commit is contained in:
@@ -14,8 +14,8 @@ module.exports = class BinaryCommand extends Command {
|
||||
name: 'binary',
|
||||
group: 'textedit',
|
||||
memberName: 'binary',
|
||||
description: 'Converts text to binary. (;binary This text)',
|
||||
examples: [';binary This text'],
|
||||
description: 'Converts text to binary. (x;binary This text)',
|
||||
examples: ['x;binary This text'],
|
||||
args: [{
|
||||
key: 'text',
|
||||
prompt: 'What text would you like to convert to binary?',
|
||||
|
||||
@@ -6,8 +6,8 @@ module.exports = class CowsayCommand extends Command {
|
||||
name: 'cowsay',
|
||||
group: 'textedit',
|
||||
memberName: 'cowsay',
|
||||
description: 'Converts text to cowsay. (;cowsay This text)',
|
||||
examples: [';cowsay This text'],
|
||||
description: 'Converts text to cowsay. (x;cowsay This text)',
|
||||
examples: ['x;cowsay This text'],
|
||||
args: [{
|
||||
key: 'text',
|
||||
prompt: 'What text would you like the cow to say?',
|
||||
|
||||
@@ -7,8 +7,8 @@ module.exports = class EmbedCommand extends Command {
|
||||
name: 'embed',
|
||||
group: 'textedit',
|
||||
memberName: 'embed',
|
||||
description: 'Sends a message in an embed. (;embed This is an example.)',
|
||||
examples: [';embed This is an example.'],
|
||||
description: 'Sends a message in an embed. (x;embed This is an example.)',
|
||||
examples: ['x;embed This is an example.'],
|
||||
guildOnly: true,
|
||||
args: [{
|
||||
key: 'text',
|
||||
|
||||
@@ -11,8 +11,8 @@ module.exports = class MorseCommand extends Command {
|
||||
],
|
||||
group: 'textedit',
|
||||
memberName: 'morse',
|
||||
description: 'Translates text to morse code. (;morse This is Morse Code.)',
|
||||
examples: [';morse This is Morse Code.'],
|
||||
description: 'Translates text to morse code. (x;morse This is Morse Code.)',
|
||||
examples: ['x;morse This is Morse Code.'],
|
||||
args: [{
|
||||
key: 'text',
|
||||
prompt: 'What text would you like to convert to morse?',
|
||||
|
||||
@@ -12,8 +12,8 @@ module.exports = class PirateCommand extends Command {
|
||||
],
|
||||
group: 'textedit',
|
||||
memberName: 'pirate',
|
||||
description: 'Talk like a pirate! (;pirate This is being said like a pirate!)',
|
||||
examples: [';pirate This is being said like a 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!'],
|
||||
args: [{
|
||||
key: 'text',
|
||||
prompt: 'What text would you like to convert to pirate?',
|
||||
|
||||
@@ -6,8 +6,8 @@ module.exports = class ReverseCommand extends Command {
|
||||
name: 'reverse',
|
||||
group: 'textedit',
|
||||
memberName: 'reverse',
|
||||
description: 'Reverses text (;reverse This text please)',
|
||||
examples: [';reverse This text please'],
|
||||
description: 'Reverses text (x;reverse This text please)',
|
||||
examples: ['x;reverse This text please'],
|
||||
args: [{
|
||||
key: 'text',
|
||||
prompt: 'What text would you like to reverse?',
|
||||
|
||||
@@ -12,8 +12,8 @@ module.exports = class SayCommand extends Command {
|
||||
],
|
||||
group: 'textedit',
|
||||
memberName: 'say',
|
||||
description: 'Make XiaoBot say what you wish. (;say I can talk!)',
|
||||
examples: [';say I can talk!'],
|
||||
description: 'Make XiaoBot say what you wish. (x;say I can talk!)',
|
||||
examples: ['x;say I can talk!'],
|
||||
guildOnly: true,
|
||||
args: [{
|
||||
key: 'text',
|
||||
|
||||
@@ -8,8 +8,8 @@ module.exports = class TemmieCommand extends Command {
|
||||
name: 'temmie',
|
||||
group: 'textedit',
|
||||
memberName: 'temmie',
|
||||
description: 'Translate text to Temmie speak. (;temmie I am Temmie)',
|
||||
examples: [';temmie I am Temmie.'],
|
||||
description: 'Translate text to Temmie speak. (x;temmie I am Temmie)',
|
||||
examples: ['x;temmie I am Temmie.'],
|
||||
args: [{
|
||||
key: 'text',
|
||||
prompt: 'What text would you like to convert to Temmie speak?',
|
||||
|
||||
@@ -12,8 +12,8 @@ module.exports = class UpsideDownCommand extends Command {
|
||||
],
|
||||
group: 'textedit',
|
||||
memberName: 'upsidedown',
|
||||
description: 'Flips text upside-down. (;upsidedown It\'s upside-down!)',
|
||||
examples: [';upsidedown It\'s upside-down!'],
|
||||
description: 'Flips text upside-down. (x;upsidedown It\'s upside-down!)',
|
||||
examples: ['x;upsidedown It\'s upside-down!'],
|
||||
args: [{
|
||||
key: 'text',
|
||||
prompt: 'What text would you like to flip upside-down?',
|
||||
|
||||
@@ -11,8 +11,8 @@ module.exports = class WebhookCommand extends Command {
|
||||
],
|
||||
group: 'textedit',
|
||||
memberName: 'webhook',
|
||||
description: 'Posts a message to the webhook defined in your `process.env`. (;webhook Hey guys!)',
|
||||
examples: [';webhook Hey guys!'],
|
||||
description: 'Posts a message to the webhook defined in your `process.env`. (x;webhook Hey guys!)',
|
||||
examples: ['x;webhook Hey guys!'],
|
||||
guildOnly: true,
|
||||
args: [{
|
||||
key: 'text',
|
||||
|
||||
@@ -7,8 +7,8 @@ module.exports = class ZalgoCommand extends Command {
|
||||
name: 'zalgo',
|
||||
group: 'textedit',
|
||||
memberName: 'zalgo',
|
||||
description: 'Zalgoizes Text (;zalgo This Text)',
|
||||
examples: [';zalgo This Text'],
|
||||
description: 'Zalgoizes Text (x;zalgo This Text)',
|
||||
examples: ['x;zalgo This Text'],
|
||||
args: [{
|
||||
key: 'text',
|
||||
prompt: 'What text would you like to convert to zalgo?',
|
||||
|
||||
Reference in New Issue
Block a user