Added bounce

This commit is contained in:
Essem 2022-12-28 14:24:22 -06:00
parent 89caa43068
commit 5d8974d177
No known key found for this signature in database
GPG key ID: 7D497397CC3A2A8C
4 changed files with 72 additions and 0 deletions

View file

@ -0,0 +1,11 @@
import ImageCommand from "../../classes/imageCommand.js";
class BounceCommand extends ImageCommand {
static description = "Makes an image bounce up and down";
static aliases = ["bouncy"];
static noImage = "You need to provide an image/GIF to bounce!";
static command = "bounce";
}
export default BounceCommand;