|
|
|
@ -61,11 +61,14 @@ class manga extends Command{
|
|
|
|
|
async function sendMessage(id)
|
|
|
|
|
{
|
|
|
|
|
const data = await new Anilist().getMangaInfo(id);
|
|
|
|
|
data.description = data.description.replaceAll('~!', '').replaceAll('!~', '').replaceAll(/<[^>]*>/g, '');
|
|
|
|
|
data.description = data.description.length>1500?(data.description.substring(0, 1500) + "..."):data.description;
|
|
|
|
|
console.log(data.description)
|
|
|
|
|
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'})
|
|
|
|
|
.setColor(0x003284)
|
|
|
|
|
.setDescription(data.description.replaceAll('~!', '').replaceAll('!~', '').replaceAll(/<[^>]*>/g, '').substring(0, 1500) + "...")
|
|
|
|
|
.setDescription(data.description)
|
|
|
|
|
.setFooter({ text: 'Rem-Chan on', iconURL: 'https://i.imgur.com/g6FSNhL.png' })
|
|
|
|
|
.addFields({name:'Page', value:data.url, inline:true})
|
|
|
|
|
.setImage(data.coverImage)
|
|
|
|
|