UNPKG

4.16 kBMarkdownView Raw
1[![npm](https://img.shields.io/npm/v/aflb.svg)](https://www.npmjs.com/package/aflb)
2[![npm](https://img.shields.io/npm/dt/aflb.svg?maxAge=3600)](https://www.npmjs.com/package/aflb)
3[![install size](https://packagephobia.now.sh/badge?p=aflb)](https://packagephobia.now.sh/result?p=aflb)
4
5
6[![NPM](https://nodei.co/npm/aflb.png?downloads=true&downloadRank=true&stars=true)](https://nodei.co/npm/aflb/)
7
8# AFLB
9
10![aflb](https://cdn.discordapp.com/attachments/814183405901053992/894023623990468618/aflb_banner.png)
11
12## Installation
13```
14npm i aflb
15```
16Huge anime action gifs with no external dependencies.
17
18### Action Gifs
19
20| Function | Description |
21| -------- | ----------- |
22| `angry` | Gets a URL of a angry image/gif |
23| `baka` | Gets a URL of a baka image/gif |
24| `bite` | Gets a URL of a bite image/gif |
25| `bloodsuck` | Gets a URL of a bloodsuck image/gif |
26| `blush` | Gets a URL of a blush image/gif |
27| `bored` | Gets a URL of a bored image/gif |
28| `cheek` | Gets a URL of a cheek image/gif |
29| `clap` | Gets a URL of a clap image/gif |
30| `cringe` | Gets a URL of a cringe image/gif |
31| `cry` | Gets a URL of a cry image/gif |
32| `dance` | Gets a URL of a dance image/gif |
33| `drink` | Gets a URL of a drink image/gif |
34| `facedesk` | Gets a URL of a facedesk image/gif |
35| `fight` | Gets a URL of a fight image/gif |
36| `happy` | Gets a URL of a happy image/gif |
37| `hate` | Gets a URL of a hate image/gif |
38| `highfive` | Gets a URL of a highfive image/gif |
39| `horny` | Gets a URL of a horny image/gif |
40| `kill` | Gets a URL of a kill image/gif |
41| `hand` | Gets a URL of a hand image/gif |
42| `laugh` | Gets a URL of a laugh image/gif |
43| `lick` | Gets a URL of a lick image/gif |
44| `lurk` | Gets a URL of a lurk image/gif |
45| `meow` | Gets a URL of a meow image/gif |
46| `nom` | Gets a URL of a nom image/gif |
47| `feed` | Gets a URL of a feed image/gif |
48| `hug` | Gets a URL of a hug image/gif |
49| `nuzzle` | Gets a URL of a nuzzle image/gif |
50| `kiss` | Gets a URL of a kiss image/gif |
51| `pat` | Gets a URL of a pat image/gif |
52| `tickle` | Gets a URL of a tickle image/gif |
53| `poke` | Gets a URL of a poke image/gif |
54| `smug` | Gets a URL of a smug image/gif |
55| `stare` | Gets a URL of a stare image/gif |
56| `panic` | Gets a URL of a panic image/gif |
57| `nya` | Gets a URL of a nya image/gif |
58| `pout` | Gets a URL of a pout image/gif |
59| `run` | Gets a URL of a run image/gif |
60| `sad` | Gets a URL of a sad image/gif |
61| `sake` | Gets a URL of a drink sake image/gif |
62| `shoot` | Gets a URL of a shoot image/gif |
63| `sip` | Gets a URL of a sip tea image/gif |
64| `slap` | Gets a URL of a slap/punch/hit image/gif |
65| `sleep` | Gets a URL of a sleep image/gif |
66| `smile` | Gets a URL of a smile image/gif |
67| `smoke` | Gets a URL of a smoke image/gif |
68| `steal` | Gets a URL of a steal image/gif |
69| `stockings` | Gets a URL of a stockings image/gif |
70| `sweeties` | Gets a URL of a sweeties image/gif |
71| `wasted` | Gets a URL of a wasted image/gif |
72| `wave` | Gets a URL of a wave image/gif |
73| `tease` | Gets a URL of a wave image/gif |
74| `wink` | Gets a URL of a wink image/gif |
75| `sex` | Gets a URL of a (NO NSFW) sex image/gif |
76| `cuddle` | Gets a URL of a cuddle image/gif |
77
78## Examples
79
80Await/Async example
81```js
82const aflb = require('aflb');
83async function getKissImage() {
84 console.log(await aflb.kiss());
85}
86getKissImage();
87```
88returns:
89```json
90"https://cdn.discordapp.com/attachments/820213553540759571/894020186611548230/kiss_01.gif"
91```
92
93Standart Usage
94```js
95const aflb = require('aflb');
96
97console.log(aflb.hug())
98
99```
100returns:
101```json
102"https://cdn.discordapp.com/attachments/820213553540759571/894021582819835904/kiss_02.gif"
103```
104
105Usage in Embed
106```js
107const { MessageEmbed } = require('discord.js')
108const aflb = require('aflb');
109
110const embed = new MessageEmbed().setImage(aflb.kiss())
111```
112returns:
113```json
114"https://cdn.discordapp.com/attachments/820213553540759571/894021582819835904/kiss_02.gif"
115```
116![Embed Usage](https://cdn.discordapp.com/attachments/820213553540759571/894023119101120572/embed_usage.png)
\No newline at end of file