const ImageCommand = require("../../classes/imageCommand.js"); class BlurpleCommand extends ImageCommand { params() { return { old: !!this.specialArgs.old }; } static description = "Turns an image blurple"; static flags = [{ name: "old", description: "Use the old blurple color" }]; static noImage = "You need to provide an image to make blurple!"; static command = "blurple"; static aliases = ["blurp"]; } module.exports = BlurpleCommand;