UNPKG

nidhishpackage

Version:

This is a fun package for [Discord](https://discord.com) The library is [Discord.js](https://discord.js.org)

25 lines (21 loc) 683 B
async function gethbj(options = {}) { const Fetch = require(`node-fetch`) const res = await Fetch("https://nekos.life/api/v2/img/blowjob"), json = await res.json(); if (!json.url) throw new Error(`Something Went Wrong, Try Again Later!`); const Data = { embed: { color: options.Color || "RANDOM", description: "Random Hentai Blowjob img", image: { url: json.url }, timestamp: new Date() } }; if (options.ResultOnly && options.ResultOnly === true) return { Result: json.url }; return Data; }; module.exports = gethbj