added some new fields for help

This commit is contained in:
Emily 2020-10-29 19:20:45 +11:00
parent 7f6d54f14b
commit 7464316789
17 changed files with 88 additions and 51 deletions

View file

@ -12,7 +12,8 @@ module.exports = class {
this.cooldown = 2000,
this.help = {
description: 'Shows you colours that can be random, a hex code or generated from the words you type into the command.',
usage: 'colour <hexcode | text>',
arguments: '[hexcode/text]',
details: '',
examples: '`colour` - generates a random colour\n`colour #ee79ff` - Displays the colour of this hexcode\n`colour alpaca` - Generates a colour from the word alpaca'
};
}

View file

@ -13,7 +13,8 @@ module.exports = class {
this.cooldown = 2000,
this.help = {
description: 'Sends you a strip from the best comic ever',
usage: 'garfield <daily>',
arguments: '[daily]',
details: '',
examples: '`garfield` - sends a random garfield comic strip\n`garfield daily` - sends the daily strip'
};
}
@ -22,19 +23,18 @@ module.exports = class {
let date = 'xxxx';
if (args[0] && args[0].toLowerCase() === 'daily') date = new Date();
message.channel.sendTyping();
try {
fetch('https://garfield-comics.glitch.me/~SRoMG/?date=' + date)
.then(res => res.json())
.then(json => {
const embed = new Embed()
.setTitle(`${json.data.name} (No. ${json.data.number})`)
.setColour(client.functions.displayHexColour(message.channel.guild, client.user.id))
.setURL('https://www.mezzacotta.net/garfield/?comic=' + json.data.number)
.setImage(json.data.image.src);
message.channel.createMessage({ embed: embed });
});
} catch (err) {
message.channel.send(`${client.constants.emojis.botError} An error has occurred: ${err}`);
}
fetch('https://garfield-comics.glitch.me/~SRoMG/?date=' + date)
.then(res => res.json())
.then(json => {
const embed = new Embed()
.setTitle(`${json.data.name} (No. ${json.data.number})`)
.setColour(client.functions.displayHexColour(message.channel.guild, client.user.id))
.setURL('https://www.mezzacotta.net/garfield/?comic=' + json.data.number)
.setImage(json.data.image.src);
message.channel.createMessage({ embed: embed });
})
.catch(err => {
message.channel.createMessage(`${client.constants.emojis.botError} An error has occurred: ${err}`);
});
}
};

View file

@ -11,8 +11,9 @@ module.exports = class {
this.botPerms = [],
this.cooldown = 2000,
this.help = {
description: 'Generates a random (and likely terrible) inspirational quote. Makes use of the Inspirobot API.',
usage: 'inspirobot',
description: 'Generates a random (and likely terrible) inspirational quote.',
arguments: '',
details: '',
examples: null
};
}