New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

apylady

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

apylady

Get anime actions image

latest
npmnpm
Version
1.0.6
Version published
Maintainers
1
Created
Source

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

Karma Bot

Keywords

anime

FAQs

Package last updated on 31 Mar 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts