Adds New Command for Breaking Bad Quotes
command: !bb
This commit is contained in:
28
src/commands/bb.js
Normal file
28
src/commands/bb.js
Normal file
@@ -0,0 +1,28 @@
|
||||
const axios = require('axios').default;
|
||||
const { MessageEmbed } = require('discord.js');
|
||||
const instance = axios.create({
|
||||
baseURL: 'https://breaking-bad-quotes.herokuapp.com/v1'
|
||||
});
|
||||
|
||||
async function getRandomQuotes(message, args) {
|
||||
const randomQuotesUrl = "/quotes";
|
||||
try {
|
||||
const result = await instance.get(randomQuotesUrl);
|
||||
const { quote, author } = result.data[0];
|
||||
const randomQuoteMessage = new MessageEmbed()
|
||||
.setDescription(quote)
|
||||
.setFooter(`${author}`);
|
||||
message.channel.send(randomQuoteMessage);
|
||||
} catch (error) {
|
||||
const errorMessage = new MessageEmbed()
|
||||
.setTitle("Stay out of territory: Error getting quotes from Walter White")
|
||||
.setColor("RED");
|
||||
message.channel.send(errorMessage);
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
execute(client, message, args) {
|
||||
getRandomQuotes(message, args);
|
||||
}
|
||||
}
|
||||
@@ -1,22 +1,22 @@
|
||||
const axios = require('axios').default;
|
||||
const {MessageEmbed} = require('discord.js');
|
||||
const { MessageEmbed } = require('discord.js');
|
||||
const instance = axios.create({
|
||||
baseURL: 'https://game-of-thrones-quotes.herokuapp.com/v1'
|
||||
});
|
||||
});
|
||||
|
||||
async function getRandomQuotes(message, args) {
|
||||
const randomQuotesUrl = "/random";
|
||||
try {
|
||||
const result = await instance.get(randomQuotesUrl);
|
||||
const {sentence, character: {name, house: {name:houseName}}} = result.data;
|
||||
const { sentence, character: { name, house: { name: houseName } } } = result.data;
|
||||
const randomQuoteMessage = new MessageEmbed()
|
||||
.setDescription(sentence)
|
||||
.setFooter(`${name}, ${houseName}`);
|
||||
.setDescription(sentence)
|
||||
.setFooter(`${name}, ${houseName}`);
|
||||
message.channel.send(randomQuoteMessage);
|
||||
} catch(error) {
|
||||
} catch (error) {
|
||||
const errorMessage = new MessageEmbed()
|
||||
.setTitle("Something went wrong: Error getting quotes from Arya Stark")
|
||||
.setColor("RED");
|
||||
.setTitle("Something went wrong: Error getting quotes from Arya Stark")
|
||||
.setColor("RED");
|
||||
message.channel.send(errorMessage);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -29,6 +29,11 @@
|
||||
"name": "got",
|
||||
"description": "Game of Thrones Quotes",
|
||||
"file": "./commands/got.js"
|
||||
},
|
||||
{
|
||||
"name": "bb",
|
||||
"description": "Breaking Bad Quotes",
|
||||
"file": "./commands/bb.js"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user