thaldrin/src/modules/images/wolf.ts

19 lines
477 B
TypeScript
Raw Normal View History

2021-04-10 21:28:17 +00:00
import yiff from '../../utils/yiff';
2021-04-04 15:17:46 +00:00
import Command from '../../handler/structures/Command';
2021-04-10 21:28:17 +00:00
import { Context } from '../../utils/types';
2021-04-04 15:17:46 +00:00
export = class Wolf extends Command {
constructor() {
super({
2021-04-08 00:43:17 +00:00
name: "wolf",
2021-04-04 15:17:46 +00:00
description: "Show a Wolf",
aliases: ["awoo"],
cooldown: 0,
})
}
2021-04-10 21:28:17 +00:00
async command(ctx: Context) {
let image = await yiff.yiffy('animals', "wolf")
console.log(image)
2021-04-04 15:17:46 +00:00
}
}