Add squish

This commit is contained in:
Essem 2022-10-07 13:26:12 -05:00
parent 7c9f22cd34
commit 2e7330636b
No known key found for this signature in database
GPG key ID: 7D497397CC3A2A8C
4 changed files with 87 additions and 2 deletions

View file

@ -0,0 +1,11 @@
import ImageCommand from "../../classes/imageCommand.js";
class SquishCommand extends ImageCommand {
static description = "Squishes/stretches an image";
static aliases = ["squishy", "squash"];
static noImage = "You need to provide an image/GIF to squish!";
static command = "squish";
}
export default SquishCommand;