AniList class renamed to AniList (from aniList)

master
masterhc 1 year ago
parent 95679a7cc0
commit 567aa9b93d

@ -5,7 +5,7 @@
<img styles="algin:center" src="https://git.wordfights.com/masterhc/Remchanv2/raw/branch/master/public/images/297223b974b01cc567b25a200d1e3229.png">
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

@ -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()

@ -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'})

@ -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'})

6
dist/lib.d.ts vendored

@ -99,7 +99,7 @@ export class ErrorMessage {
OldMessages: string;
}, message: Message, extraMessages: string[]): Promise<void>;
}
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

@ -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');

Loading…
Cancel
Save