1.0.0 • Published 4 years ago

discord-nsfw-utils v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
4 years ago

Discord-Nsfw-Utils

discord-nsfw-utils is a module to implement nsfw commands in your own discord bot. This is the continued part of discord-simple-nsfw package

Types

  • Boobs (Can be real or hentai)
  • Ass (Can be real or hentai)
  • Futanari (Only hentai)

Installation

npm install discord-nsfw-utils

Example in a message

const Discord = require('discord.js')
const client = new Discord.Client()
const nsfw = require('discord-nsfw-utils')

client.on('message', (message) => {
	if (message.startsWith(`!boobs`)) {
		const boobs = nsfw.boobs('real') //Can be hentai too
		message.channel.send(boobs)
	}
})

Example in an embed

const Discord = require('discord.js')
const client = new Discord.Client()
const nsfw = require('discord-nsfw-utils')

client.on('message', (message) => {
	const boobs = nsfw.boobs('real')

	if (message.startsWith(`!boobs`)) {

		const boobsEmbed = new Discord.MessageEmbed() //In v11 use RichEmbed() instead
		.setTitle('Boobs for you')
		.setImage(boobs)
		.setTimestamp()
		message.channel.send(`${message.author}`, { embed: boobsEmbed })
	}		
})

Contact me

Discord: Jelosus1#1684

License

ISC

1.0.0

4 years ago