No native name on enlgish native characters. Name is only on the first property.

master
masterhc 1 year ago
parent dfb479cde0
commit d5d83c92b0

@ -25,7 +25,7 @@ class char extends Command{
var embeds = [];
for(var i = 0; i<data.length; i++)
{
fieldPayload.push({name:data[i].name.full+' ['+data[i].name.native+']', value:i.toString()});
fieldPayload.push({name:data[i].name.full+' '+(data[i].name.native?'['+data[i].name.native+']':''), value:i.toString()});
embeds.push(new EmbedBuilder().setImage(data[i].image).setURL('https://www.rem.wordfights.com'));
row.addComponents(
new ButtonBuilder()
@ -61,7 +61,7 @@ class char extends Command{
const data = await new Anilist().getCharInfo(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)
//console.log(data)
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'})
@ -79,6 +79,10 @@ class char extends Command{
{
embed.addFields({name:'Age:',value:data.age, inline:true});
}
if(!data.name.native)
{
embed.setTitle(`${data.name.full}`)
}
const randomID = Random();
const row = new ActionRowBuilder()
.addComponents(

Loading…
Cancel
Save