2021-12-03 00:05:52 +00:00
|
|
|
import ImageCommand from "../../classes/imageCommand.js";
|
|
|
|
|
|
|
|
class ZamnCommand extends ImageCommand {
|
2021-12-03 00:12:42 +00:00
|
|
|
static description = "Adds a \"ZAMN\" reaction to an image";
|
2021-12-03 00:05:52 +00:00
|
|
|
|
2022-01-26 18:53:20 +00:00
|
|
|
static noImage = "You need to provide an image/GIF to \"ZAMN\" at!";
|
2021-12-03 00:05:52 +00:00
|
|
|
static command = "zamn";
|
|
|
|
}
|
|
|
|
|
2022-01-26 18:53:20 +00:00
|
|
|
export default ZamnCommand;
|