const { SlashCommandBuilder, ButtonBuilder, ButtonStyle, ActionRowBuilder, EmbedBuilder, Events, ActionRow, StringSelectMenuBuilder } = require('discord.js'); const puppeteer = require('puppeteer'); module.exports = { data: new SlashCommandBuilder() .setName('create') .setDescription('Cria uma ficha de Breed') .addStringOption(option => option.setName('dinoname') .setDescription('Selecione o nome do dino que deseja criar o breed.') .setRequired(true) .setAutocomplete(true)), async autocomplete(interaction) { const focusedValue = interaction.options.getFocused(); const choices = ['Amargasaurus', 'Andrewsarchus', 'Astro', 'Barionyx', 'Basilisk', 'Basilo', 'Carbo', 'Charca', 'Daeodon', 'Deino', 'Desmodus', 'FjordHawk', 'Giga', 'Griffin', 'LightWyvern', 'Mantis', 'Racer', 'Rex', 'Shadow', 'Snow', 'Bloodstalker', 'Stego', 'Tape', 'Theri', 'Thyla', 'Tuso', 'Velona', 'Voidwyrm', 'Yutirannus'] const filtered = choices.filter(choice => choice.toLowerCase().startsWith(focusedValue.toLowerCase())).slice(0, 25); await interaction.respond( filtered.map(choice => ({ name: choice, value: choice })), ); }, async execute(interaction) { let dinoname = interaction.options.getString('dinoname') async function getDinoImage(namedino) { const browser = await puppeteer.launch(); const page = await browser.newPage(); await page.goto('https://ark.wiki.gg/wiki/Creatures#Icon-0'); const dinoImage = await page.$(`img[alt='${namedino}']`); const imageSrc = await dinoImage.getProperty('src'); const imageUrl = await imageSrc.jsonValue(); console.log(imageUrl); await browser.close(); } const dinoUrl = await getDinoImage(`${dinoname}`); let criar = new EmbedBuilder() .setColor(0x080000) .setTitle(`${dinoname} Line`) .setDescription(`Selecione os status breedados de ${dinoname}`) .setAuthor({ name: 'Sunflower-LineCreator', iconURL: 'https://i.imgur.com/Qy2XpGi.png' }) .setThumbnail(dinoUrl) const statuscriar = new ActionRowBuilder() .addComponents( new StringSelectMenuBuilder() .setCustomId('status') .setPlaceholder('Select your status.') .setMinValues(1) .setMaxValues(4) .addOptions([ { label: 'Health', description: 'Selecione isto caso seu dino seja breedado em Health.', value: 'health', emoji: '<:Health:1051354075691745391>', }, { label: 'Stamina', description: 'Selecione isto caso seu dino seja breedado em Stamina.', value: 'stamina', emoji: '<:Stamina:1051354118859526236>', }, { label: 'Melee', description: 'Selecione isto caso seu dino seja breedado em Melee.', value: 'melee', emoji: '<:Damage:1051354091529445456>', }, { label: 'Food', description: 'Selecione isto caso seu dino seja breedado em Food.', value: 'food', emoji: '<:Food:1051354054644740117>', }, ]), ); const optionscriar = new ActionRowBuilder() .addComponents( new ButtonBuilder() .setCustomId('cancell') .setLabel('Cancelar') .setStyle(ButtonStyle.Danger) .setEmoji('⛔'), new ButtonBuilder() .setCustomId('continue') .setLabel('Continuar') .setStyle(ButtonStyle.Success) .setEmoji('✅') ) function createchannelcommand(guildId, embed) { createSchema.findOne({ Guild: guildId }, async (err, data) => { const createChannel = client.forums.cache.get(data.Forum); createChannel.channel.threads.create({ name: `\`${dinoname}\``, reason: `\`${dinoname}\` Line`, }) }); } await interaction.reply( { embeds: [criar], components: [statuscriar, optionscriar] } ) } }