mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 13:14:58 +05:00
43 lines
951 B
JavaScript
43 lines
951 B
JavaScript
|
const { SlashCommandBuilder } = require("discord.js");
|
||
|
const BaseCommand = require("../../base/BaseCommand"),
|
||
|
fetch = require("node-fetch");
|
||
|
|
||
|
class Crab extends BaseCommand {
|
||
|
/**
|
||
|
*
|
||
|
* @param {import("../base/JaBa")} client
|
||
|
*/
|
||
|
constructor(client) {
|
||
|
super({
|
||
|
command: new SlashCommandBuilder()
|
||
|
.setName("crab")
|
||
|
.setDescription(client.translate("fun/crab:DESCRIPTION")),
|
||
|
aliases: [],
|
||
|
dirname: __dirname,
|
||
|
guildOnly: true,
|
||
|
ownerOnly: false
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
*
|
||
|
* @param {import("../../base/JaBa")} client
|
||
|
*/
|
||
|
async onLoad() {
|
||
|
//...
|
||
|
}
|
||
|
/**
|
||
|
*
|
||
|
* @param {import("../../base/JaBa")} client
|
||
|
* @param {import("discord.js").ChatInputCommandInteraction} interaction
|
||
|
* @param {Object} data
|
||
|
*/
|
||
|
async execute(client, interaction) {
|
||
|
const res = await fetch("https://and-here-is-my-code.glitch.me/img/crab").then(response => response.json());
|
||
|
|
||
|
interaction.reply({
|
||
|
content: res.Link
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = Crab;
|