mrmBot-Matrix/commands/image-editing/jjos.js

21 lines
489 B
JavaScript
Raw Normal View History

import ImageCommand from "../../classes/imageCommand.js";
2023-03-22 08:52:13 +00:00
class JJoSCommand 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
};
2023-03-22 08:52:13 +00:00
static aliases = ["hacker"];
static noImage = "You need to provide an image/GIF to JJoS!";
static command = "scott";
}
2023-03-22 08:52:13 +00:00
export default JJoSCommand;