This is a simple game command which fuses 2 different Pokemon!
const lib = require('lib')({token: process.env.STDLIB_SECRET_TOKEN});
let message = context.params.event.content;
if (message.startsWith(`${process.env.PREFIX}pokemon`)) {
const args = context.params.event.content.split(' ').slice(1)
let result = await lib.keith.pokefusion['@0.2.0']({
headPokemon: args[0],
bodyPokemon: args[1]
});
console.log(result);
await lib.discord.channels['@0.0.6'].messages.create({
channel_id: `${context.params.event.channel_id}`,
content: `${result.image_url}`
});
}
/// command made by HARSHAVARTHAN and CTK WARRIOR