1.0.6 • Published 1 year ago

apylady v1.0.6

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year ago

npm install size

NPM

Installation

npm i anime-actions

A package for multiple anime actions for discord.

ACTIONS

ActionsDescription
bakaGets a URL of a baka image
blushGets a URL of a blush image
cuddleGets a URL of a cuddle image
biteGets a URL of a bite image
danceGets a URL of a dance image
slapGet a URL of a slap image
bonkGet a URL of a bonk image
kickGet a URL of a kick image
bullyGet a URL of a bully gif
hugGet a URL of a hug image
confusedGet a URL of a confused image
kissGet a URL of a kiss image
patGet a URL of a pat image
happyGet a URL of a happy image
yesGet a URL of a yes image
pokeGet a URL of a poke image
highfiveGet a URL of a highfive image
winkGet a URL of a wink image
waveGet a URL of a wave image
goodnightGet a URL of a goodnight image
thinkingGet a URL of a thinking image
sadGet a URL of a sad image
cryGet a URL of a cry image
stareGet a URL of a stare image
boredGet a URL of a cry image
screamGet a URL of a cry image
nervousGet a URL of a cry image
smileGet a URL of a smile image
punchGet a URL of a punch image
killGet a URL of a kill image
yeetGet a URL of a yeet image
wallpaperGet a URL of a wallpaper
zerotwoGet a URL of a zerotwo image

Examples

Discord.js v13 Example

const { Client, Intents } = require('discord.js');
const anime = require('anime-actions');
const intents = new Intents(32767);

const client = new Client({ intents });

client.once('ready', () => {
	console.log('Ready to hug');
});
client.on('messageCreate', async(message) => {
    if(message.content === 'hug') {
        message.channel.send(await anime.hug())
    }
})
client.login('your-token');

Discord.js v12 Example

const { Client} = require('discord.js');
const anime = require('anime-actions');

const client = new Client();

client.once('ready', () => {
	console.log('Ready to hug');
});
client.on('message', async(message) => {
    if(message.content === 'hug') {
        message.channel.send(await anime.hug())
    }
})
client.login('your-token');

Await/Async example

const anime = require('anime-actions');

async function kakashi() {
  console.log(await anime.hug());
}

kakashi();

Support Server

Bots using this api