3.2.3 • Published 1 year ago

hmtai v3.2.3

Weekly downloads
330
License
UNLICENSED
Repository
-
Last release
1 year ago

Will be i updating this API? Of course nyse, dude, but this API has a 18.100 NSFW picture, and 1000+ SFW media. 19 200 total. All picture we added manually.

My goal is to create the most depraved library ever and I think I got it

Discord Server | REST API | HMfull | Support Project - Read Please!

Installation

npm install hmtai

Changelogs

v3.2.0

  • Many SFW endpoints
  • Hug SFW content update

Example(s)

NodeJS:

// hmtai //
const HMtai = require("hmtai");
const hmtai = new HMtai();

// Get SFW Neko Images, uwu //
console.log("SFW Neko: " + await hmtai.neko());

// Get other NSFW Images //
console.log("Hentai: " + await hmtai.nsfw.hentai());
console.log("BDSM: " + await hmtai.nsfw.bdsm());
console.log("Ero: " + await hmtai.nsfw.ero());

Legacy Function(s)

Example:

hmtai.sfw.function(); // Format
hmtai.sfw.neko(); // Example
hmtai.sfw.wallpaper(); // Example 2
FunctionDescription
waveGreeting! Wave gifs! (●'◡'●)
winkWink! 😉
teaI want some tea! ☕
bonkBaaakaa
punchONE PUUUUUUUUUUUNCH
pokePoke-poke :P
bullyCyberbullyig >:3
patLet's pat some good guys (/ω\)
kissKissu! :3
kickTurn back!
blushE-to... ////
feedWho want eat? :P
smugSmug :P
hugI like hugs, do you?
cuddleCuddle cuddle cuddle xD
cryBite bite biting :3
slapBAKA!!
fiveGive me five, bro! 👋
glompMy dear!!!
happyBecause i'm happy...
holdThat's...embrassing..
nomnom 0-0
smile:))))
throwGo out here, man!
lickMmm hum hum, so tasty~
biteNyaaaaaa!!
danceMove like lady jagger ヾ(≧▽≦*)o
boopBoopyy
sleepZzz 💤
likeI like it, nice 👍
killKill everyone, everybody!
nosebleedThat's...impressive
threatenRrrr
tickleTiiickle tickle tickle :3
depressionSFW depression Gifs :c
wolf_artsAwoooooo girls :3
jahy_artsSo hot Jahy :3
neko_artsSFW Neko Girls (Cat Girls)
coffee_artsDo you want some coffee? And girls :3
wallpaperSFW Wallpaper with Anime
mobileWallpaperSFW Wallpaper with Anime on Mobile

NSFW Function(s)

Example:

hmtai.nsfw.function(); // Format
hmtai.nsfw.hentai(); // Example
FunctionDescription
analDoes somebody like being in all holes?~
assI know you like anime ass~ uwu
bdsmIf you don't know what it is, search it up
cumBasically sticky white stuff that is usually milked from sharpies.
classicRelaxing classic kekus uwu
creampieSo hot, sticky, and inside uwu
mangaSends a random doujin page imageURL!
femdomFemale Domination?
hentaiSends a random vanilla hentai imageURL~
incestI know, you like it. Brothet and sister <3 And..mo...omg
masturbationYou like lewd solo?~
publicSome people like do it on a public..uh~
eroeros, ero Uniforms, etc, you know what eros are :3
orgyGroup Lewd Acts
elvesSo, it's not Elvis Presley, but i know, you like it :)
yuriWhat about cute Les?~
pantsuI mean... just why? You like underwear?
glassesGirls that wear glasses, uwu~
cuckoldWow, I won't even question your fetishes.
blowjobBasically an image of a girl sucking on a sharp blade!
boobjobSo soft, round ... gentle ... damn we love it
footjobSo you like smelly feet huh?
handjobSo you like how's it feeling in hand, huh?
boobsA-am..that's normal size!
thighsOh, i so like it, it's best of the best, like a religion <3
pussyThe genitals of a female, or a cat, you give the meaning.
ahegaoSo happy woman faces :))
uniformSchool and many other Uniforms~
gangbang5 on 1? Uh..
tentaclesI'm sorry but, why do you like it? Uh..
gifBasically an animated image, so yes :3
nsfwNekoNSFW Neko Girls (Cat Girls)
nsfwMobileWallpaperNSFW Anime Mobile Wallpaper
zettaiRyouikiThat one part of the flesh being squeeze in thigh-highs~<3

Wallpaper Function(s)

Example:

hmtai.nsfw.function(); // NSFW Format
hmtai.nsfw.mobileWallpaper(); // NSFW Example
FunctionDescription
hmtai.mobileWallpaper()Fetch a random SFW Wallpaper! (Mobile)
hmtai.wallpaper()Fetch a random SFW Wallpaper! (Desktop)
hmtai.nsfw.nsfwMobileWallpaper()Fetch a random NSFW Wallpaper! (Mobile)

Discord Bot Example

// Imports Discord.JS and HMtai //
const Discord = require("discord.js"); // v12
const HMtai = require("hmtai");
const hmtai = new HMtai()

// Create New Client //
const client = new Discord.Client();

// Bot Settings //
const settings = {
  prefix: "YOUR_BOT_PREFIX",
  token: "YOUR_BOT_TOKEN",
};

client.on("message", async (message) => {
  // Create New Embed //
  const embed = new Discord.MessageEmbed();

  // Defines Command //
  var command = message.content.toLowerCase().slice(settings.prefix.length).split(" ")[0];
  
  // Onii-chan, don't reply! //
  if (!message.content.startsWith(settings.prefix) || message.author.bot) return;

  if (command == "nsfwNeko") {

    // For Embed //
    embed.setImage(await hmtai.nsfw.nsfwNeko());
    return message.channel.send(embed);

    // For Plain Text //
    return message.channel.send(hmtai.nsfw.nsfwNeko());

    // For Attachment //
    let img = await hmtai.nsfw.nsfwNeko();
    return message.channel.send({file: [{ attachment: img, name: `NSFW${img.slice(-5)}` }]});
  } else if (command == "ero") {

    // For Embed //
    embed.setImage(await hmtai.nsfw.ero());
    return message.channel.send(embed);

    // For Plain Text //
    return message.channel.send(await hmtai.nsfw.ero());

    // For Attachment //
    let img = await hmtai.nsfw.nsfwNeko();
    return message.channel.send({file: [{ attachment: img, name: `NSFW${img.slice(-5)}` }]});
  }
});

Thank Yous

  • 💗Halami💗#1469 (What she shared with me her NSFW library!)

Sources

I hand picked most of the images from the following: Discord Servers, Konachan, Patreon, Friends sending to me, nHentai, gelbooru, etc.

Support

Discord Server

3.2.2

1 year ago

3.2.3

1 year ago

2.0.13

2 years ago

2.0.11

2 years ago

2.0.12

2 years ago

3.0.4

2 years ago

3.2.1

2 years ago

3.1.2

2 years ago

3.0.3

2 years ago

3.2.0

2 years ago

3.1.1

2 years ago

3.0.2

2 years ago

3.1.0

2 years ago

3.0.1

2 years ago

3.0.5

2 years ago

3.0.0

2 years ago

2.0.10

2 years ago

2.0.9

3 years ago

2.0.8

3 years ago

2.0.5

3 years ago

2.0.7

3 years ago

2.0.6

3 years ago

2.0.3

3 years ago

2.0.2

3 years ago

2.0.4

3 years ago

2.0.1

3 years ago

1.4.9

3 years ago

1.4.8

3 years ago

1.4.7

3 years ago

2.0.0

3 years ago

1.4.6

3 years ago

1.4.5

3 years ago

1.4.4

3 years ago

1.4.3

3 years ago

1.4.2

3 years ago

1.4.1

3 years ago

1.4.0

3 years ago

1.3.8

3 years ago

1.3.9

3 years ago