Package Exports
- somerandompackage
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 (somerandompackage) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
The best anime package for discord bots
The package is made for fun :)
My Github
My Discord Server (RUSSIAN)
Anime
Function | Description |
---|---|
angry | Gets a URL of a angry gif |
bang | Gets a URL of a bang gif |
bite | Gets a URL of a bit gif |
cry | Gets a URL of a cry gif |
feed | Gets a URL of a feed gif |
hug | Gets a URL of a hug gif |
kiss | Gets a URL of a kiss gif |
lick | Gets a URL of a lick gif |
poke | Gets a URL of a poke gif |
punch | Gets a URL of a punch gif |
slap | Gets a URL of a slap gif |
tickle | Gets a URL of a tickle gif |
Other
Function | Description |
---|---|
eball | Function with answers from the magic ball |
cat | Random images of cats |
fox | Random images of foxes |
dog | Random images of dogs |
Documentation: In development...
Usage example:
const srp = require('somerandompackage');
<client>.on('message', async msg => {
if (msg.content === "angry"){
var anger = await srp.angry();
msg.channel.send(anger)
}
});
const srp = require('somerandompackage');
<client>.on('message', async msg => {
if (msg.content === "8ball"){
var balls = await srp.eball();
msg.channel.send(balls)
}
})