11 lines
367 B
JavaScript
11 lines
367 B
JavaScript
|
const ImageCommand = require("../../classes/imageCommand.js");
|
||
|
|
||
|
class GameXplainCommand extends ImageCommand {
|
||
|
static description = "Makes a GameXplain thumbnail from an image";
|
||
|
static aliases = ["gx"];
|
||
|
|
||
|
static noImage = "you need to provide an image to make a GameXplain thumbnail from!";
|
||
|
static command = "gamexplain";
|
||
|
}
|
||
|
|
||
|
module.exports = GameXplainCommand;
|