aniquotes
Collects anime quotes for node.js, discord.js Who doesn't like a dose of anime from time to time, maybe a quote to motivate you?
Usage
Discord.js Example
const { MessageEmbed } = require('discord.js');
const { randomQuote } = require('aniquotes-npm')
const { searchAnime } = require('node-kitsu'); // credits to the person who made node-kitsu!!
module.exports = {
name: "aniquote",
run: async ( client, message) => {
const { quote, anime, id, name } = randomQuote();
const res = await searchAnime(anime,0).catch(()=>{}) || [];
const image = res?.[0]?.attributes?.coverImage?.original || null;
return message.channel.send(
new MessageEmbed()
…