Package Exports
- zocaanime
- zocaanime/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (zocaanime) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Installation
npm i zocaanimeA package for multiple anime actions for discord. Now with SFW and NSFW
ACTIONS
| Actions |
| --- | --- |
| baka |
| blush |
| cuddle |
| bite |
| dance |
| slap |
| bonk |
| bully |
| hug |
| kiss |
| pat |
| wallpaper|
| happy |
| wink |
| kill |
| highfive |
| wave |
| cry |
| smile |
| punch |
| kick |
| poke |
| goodnight |
| confused |
| sad |
| thinking |
| yes |
| yeet |
| stare |
| bored |
| scream |
| nervous |
Examples
Discord.js Example
const { Client, Intents } = require('discord.js');
const anime = require('npm i zocaanime');
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');Await/Async example
const anime = require('zocaanime');
async function hug() {
console.log(await anime.hug());
}
hug();