diff --git a/plugins/cosplay.js b/plugins/cosplay.js new file mode 100644 index 000000000..92b57ee24 --- /dev/null +++ b/plugins/cosplay.js @@ -0,0 +1,11 @@ +// wahai para para weaboo🗿 +let fetch = require('node-fetch') +let handler = async (m, { conn }) => { + conn.sendFile(m.chat, global.API('adiisus', '/api/randomimage/cosplay'), 'cosplay.jpg', '_*Done*_', m) +} +handler.help = ['cosplay'] +handler.tags = ['internet'] + +handler.command = /^(cosplay)$/i + +module.exports = handler