1.0.5-beta • Published 10 months ago

teamarcades.nsfw v1.0.5-beta

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

teamarcades.nsfw

Support: https://teamarcades.xyz/dc NPM: npmjs.com/package/teamarcades.nsfw It is not only used for discord.js, it can work wherever javascript is used.

Example

const v = require("teamarcades.nsfw");

console.log(await v.ping()) // NSFW image send ping.

console.log(await v.hentai()) // Hentai image/png-gif

console.log(await v.pussy()) // Pussy image/png-gif

console.log(await v.pgif()) // Porngraphy image/gif

console.log(await v.four()) // 4k image/png-gif

// All types;
/* 
  hentai, 
  pussy, 
  pgif, 
  four, 
  hneko, 
  neko, 
  anal, 
  hanal, 
  thigh, 
  boobs, 
  ass, 
  kanna, 
  hthigh, 
  tentacle,
  hboobs, 
  holo,
  hass, 
  yaoi, 
  hkitsune, 
  kemonomimi
*/

// Note: await and () must be present.

Simple discord.js@13.5.0 Command;

const v = require('teamarcades.nsfw')
const Discord = require("discord.js");

exports.run = async (client, message, args) => {
  if(message.channel.nsfw == true) {
    message.channel.send({
      embeds: [
        new Discord.MessageEmbed()
        .setColor("RANDOM")
        .setImage(await v.hentai())
      ]
    })
  } else {
    message.channel.send({
      embeds: [
        new Discord.MessageEmbed()
        .setTitle("ERROR")
        .setColor("RED")
        .setDescription("This channel nsfw content is off, please try again after turning it on.")
        .setImage("https://img.png")
      ]
    })
  }
}

module.exports.conf = {
  enabled: true,
  guildOnly: false,
  aliases: []
};

module.exports.help = {
  name: 'hentai',
  description: '',
  usage: '' 
};

Simple discord.js@14.9.0 Command;

const v = require('teamarcades.nsfw')
const Discord = require("discord.js");

exports.run = async (client, message, args) => {
  if(message.channel.nsfw == true) {
    message.channel.send({
      embeds: [
        new Discord.EmbedBuilder()
        .setColor("RANDOM")
        .setImage(await v.hentai())
      ]
    })
  } else {
    message.channel.send({
      embeds: [
        new Discord.EmbedBuilder()
        .setTitle("ERROR")
        .setColor("RED")
        .setDescription("This channel nsfw content is off, please try again after turning it on.")
        .setImage("https://img.png")
      ]
    })
  }
}

module.exports.conf = {
  enabled: true,
  guildOnly: false,
  aliases: []
};

module.exports.help = {
  name: 'hentai',
  description: '',
  usage: '' 
};

Installation

If you have trouble with the installation, please feel free to visit our discord address.

  • npm i teamarcades.nsfw

t e a m a r c a d e s . n s f w

1.0.5-beta

10 months ago