From 98b5d8a3a9fc5e7229b2bb3b373e45d5c949c0e0 Mon Sep 17 00:00:00 2001 From: Emily J Date: Sat, 7 Nov 2020 10:42:25 +1100 Subject: [PATCH] filled out help --- bot/commands/Fun/{typematchup.js => type.js} | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) rename bot/commands/Fun/{typematchup.js => type.js} (93%) diff --git a/bot/commands/Fun/typematchup.js b/bot/commands/Fun/type.js similarity index 93% rename from bot/commands/Fun/typematchup.js rename to bot/commands/Fun/type.js index 36d0620..4d43a26 100644 --- a/bot/commands/Fun/typematchup.js +++ b/bot/commands/Fun/type.js @@ -8,15 +8,15 @@ module.exports = class { this.category = category, this.enabled = true, this.devOnly = false, - this.aliases = ['type'], + this.aliases = ['type', 'typematchup'], this.userPerms = [], this.botPerms = [], this.cooldown = 5000, this.help = { - description: 'Get useful data on any pokemon you ask me to!', - arguments: '', - details: '', - examples: '`pokemon mudkip`\n`pokemon giratina origin`' + description: 'Get the strengths and weaknesses of a pokemon type/type combination', + arguments: ' [type2]', + details: 'The type2 argument is only needed if you are submitting two types, not a pokemon or singular type.', + examples: '`effective ghost dragon`\n`effective ribombee`' }; }