diff --git a/README.md b/README.md index 0020f61..2f91b9b 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ -Rem-chan is a versatile and interactive Discord bot themed around the character [Rem](https://anilist.co/character/88575). With a variety of commands ranging from administrative tasks to fun image-related and random activities, Rem-chan brings an engaging experience to your server. Whether you're managing your server, searching for anime or manga information, or simply enjoying some random fun with coin flips and image commands, Rem-chan adds a touch of anime-inspired charm to your Discord community +Rem-chan is a versatile and interactive Discord bot themed around the character [Rem](https://Anilist.co/character/88575). With a variety of commands ranging from administrative tasks to fun image-related and random activities, Rem-chan brings an engaging experience to your server. Whether you're managing your server, searching for anime or manga information, or simply enjoying some random fun with coin flips and image commands, Rem-chan adds a touch of anime-inspired charm to your Discord community ## Prefix diff --git a/commands/search/searchAnime.js b/commands/search/searchAnime.js index 6c03bdc..a69a69e 100644 --- a/commands/search/searchAnime.js +++ b/commands/search/searchAnime.js @@ -1,4 +1,4 @@ -const {Command, aniList, Random, ErrorMessage, ErrorType} = require('../../lib.js') +const {Command, Anilist, Random, ErrorMessage, ErrorType} = require('../../lib.js') const {EmbedBuilder, ActionRowBuilder, ButtonBuilder, ButtonStyle} = require('discord.js'); @@ -16,7 +16,7 @@ class anime extends Command{ } async run(message, args){ if(!args[0]) return new ErrorMessage(this.client).send(ErrorType.Arguments, message) - const data = await new aniList().searchAnime(args.join(' ')); + const data = await new Anilist().searchAnime(args.join(' ')); if(data=='Error') return new ErrorMessage(this.client).send(ErrorType.Arguments, message, [`Couldn't find any anime with the search argument you provided.`]) // console.log('SearchAnime: Data:', data[1].title.romaji, data.length); @@ -57,7 +57,7 @@ class anime extends Command{ */ async function sendMessage(id) { - const data = await new aniList().getAnimeInfo(id); + const data = await new Anilist().getAnimeInfo(id); // console.log('Command: SearchChar: SendMessage: Data', data.season) const embed = new EmbedBuilder() .setTitle(`${data.title.romaji} (${data.title.native + data.title.english?'/'+data.title.english:''})`) @@ -81,7 +81,7 @@ class anime extends Command{ embed.addFields( {name:'Trailer:', value:data.trailer?(data.trailer.site=='youtube'?`https://www.youtube.com/watch?v=${data.trailer.id}`:`https://www.dailymotion.com/video/${data.trailer.id}`):'N/A'}, {name:'MAL Page', value:data.malLink, inline:true}, - {name:'AniList Page', value:data.url, inline:true} + {name:'Anilist Page', value:data.url, inline:true} ) const randomID = Random(); const row = new ActionRowBuilder() diff --git a/commands/search/searchChar.js b/commands/search/searchChar.js index 7de079f..f34ea76 100644 --- a/commands/search/searchChar.js +++ b/commands/search/searchChar.js @@ -1,4 +1,4 @@ -const {Command, aniList, Random, ErrorMessage, ErrorType} = require('../../lib.js') +const {Command, Anilist, Random, ErrorMessage, ErrorType} = require('../../lib.js') const {EmbedBuilder, ActionRowBuilder, ButtonBuilder, ButtonStyle} = require('discord.js'); @@ -16,7 +16,7 @@ class char extends Command{ async run(message, args) { if(!args[0]) return new ErrorMessage(this.client).send(ErrorType.Arguments, message) - const data = await new aniList().searchChar(args.join(' ')); + const data = await new Anilist().searchChar(args.join(' ')); if(data=='Error') return new ErrorMessage(this.client).send(ErrorType.Arguments, message, [`Couldn't find any character with the search argument you provided.`]) const embed = new EmbedBuilder(); const randomID = Random(); @@ -58,7 +58,7 @@ class char extends Command{ */ async function sendMessage(id) { - const data = await new aniList().getCharInfo(id); + const data = await new Anilist().getCharInfo(id); const embed = new EmbedBuilder() .setTitle(`${data.name.full} (${data.name.native})`) .setAuthor({name:"Rem-chan", iconURL:"https://i.imgur.com/g6FSNhL.png",url:'https://rem.wordfights.com/addtodiscord'}) diff --git a/commands/search/searchManga.js b/commands/search/searchManga.js index 5d28d03..80ded9d 100644 --- a/commands/search/searchManga.js +++ b/commands/search/searchManga.js @@ -1,4 +1,4 @@ -const {Command, aniList, Random, ErrorMessage,ErrorType} = require('../../lib.js') +const {Command, Anilist, Random, ErrorMessage,ErrorType} = require('../../lib.js') const {EmbedBuilder, ActionRowBuilder, ButtonBuilder, ButtonStyle} = require('discord.js'); @@ -16,7 +16,7 @@ class manga extends Command{ async run(message, args) { if(!args[0]) return new ErrorMessage(this.client).send(ErrorType.Arguments, message) - const data = await new aniList().searchManga(args.join(' ')); + const data = await new Anilist().searchManga(args.join(' ')); if(data=='Error') return new ErrorMessage(this.client).send(ErrorType.Arguments, message, [`Couldn't find any character with the search argument you provided.`]) // console.log('SearchManga: Data:', data) const embed = new EmbedBuilder(); @@ -60,7 +60,7 @@ class manga extends Command{ */ async function sendMessage(id) { - const data = await new aniList().getMangaInfo(id); + const data = await new Anilist().getMangaInfo(id); const embed = new EmbedBuilder() .setTitle(`${data.title.romaji} (${data.title.native} / ${data.title.english})`) .setAuthor({name:"Rem-chan", iconURL:"https://i.imgur.com/g6FSNhL.png",url:'https://rem.wordfights.com/addtodiscord'}) diff --git a/dist/lib.d.ts b/dist/lib.d.ts index 036e88a..8796082 100644 --- a/dist/lib.d.ts +++ b/dist/lib.d.ts @@ -99,7 +99,7 @@ export class ErrorMessage { OldMessages: string; }, message: Message, extraMessages: string[]): Promise; } -declare class aniListCli { +declare class AnilistCli { /** * * @param {String} ss - Search Query @@ -10056,7 +10056,7 @@ declare class FreeGames { } import { ClientOptions } from "discord.js"; /** - * AniList Client -> Search Functions + * Anilist Client -> Search Functions */ declare class AnimeInfo { /** @@ -10104,5 +10104,5 @@ declare class MangaInfo { description: string; coverImage: string; } -export { GatewayIntentBits, Partials, ActivityType, Message, command as Command, _Client as Client, aniListCli as aniList }; +export { GatewayIntentBits, Partials, ActivityType, Message, command as Command, _Client as Client, AnilistCli as Anilist }; //# sourceMappingURL=lib.d.ts.map \ No newline at end of file diff --git a/lib.js b/lib.js index 8f2b9ac..12948af 100644 --- a/lib.js +++ b/lib.js @@ -529,7 +529,7 @@ class ErrorMessage }module.exports.ErrorMessage = ErrorMessage; /** - * AniList Client -> Search Functions + * Anilist Client -> Search Functions */ class AnimeInfo { @@ -609,7 +609,7 @@ class Options } } -class aniListCli { +class AnilistCli { /** * * @param {Options} options @@ -617,7 +617,7 @@ class aniListCli { */ async getInfo(options) { - return await fetch('https://graphql.anilist.co', options).then(handleResponse) + return await fetch('https://graphql.Anilist.co', options).then(handleResponse) .then(handleData) .catch(handleError); function handleResponse(response) @@ -939,7 +939,7 @@ class aniListCli { } } -}module.exports.aniList = aniListCli; +}module.exports.Anilist = AnilistCli; const channelM = require('./models/channels');