image-cord
Version:
It is a package used to make discord bots. It sends attachments of image manipulation, Anime, nsfw, and more pictures easily without any APIs.
16 lines (10 loc) • 345 B
JavaScript
const Fetch = require("node-fetch");
const randoms = require('../JSON/random.json')
async function Blush(options = {}) {
let random = randoms.random[Math.floor((Math.random() * randoms.random.length))];
const image = (`https://purrbot.site/img/sfw/blush/gif/blush_${random}.gif`);
return image;
};
module.exports = {
Blush
};