modified scott native to accept arbitrary values

This commit is contained in:
murm 2023-03-22 04:49:51 -04:00
parent 513efc4436
commit 44f8f30ccc
3 changed files with 31 additions and 3 deletions

View file

@ -0,0 +1,20 @@
import ImageCommand from "../../classes/imageCommand.js";
class ScottCommand extends ImageCommand {
static category = "image-editing"
static description = "JJoS an image";
params = {
assetPath: "assets/images/jjos.png",
distortPath: "assets/images/jjosmap.png",
compx: 261,
compy: 126
};
static aliases = ["woz", "tv", "porn"];
static noImage = "You need to provide an image/GIF to JJoS!";
static command = "scott";
}
export default ScottCommand;