diff --git a/assets/images/city17map.png b/assets/images/city17map.png new file mode 100644 index 0000000..1386084 Binary files /dev/null and b/assets/images/city17map.png differ diff --git a/commands/image-editing/city17.js b/commands/image-editing/city17.js new file mode 100644 index 0000000..af7eb5e --- /dev/null +++ b/commands/image-editing/city17.js @@ -0,0 +1,20 @@ +import ImageCommand from "../../classes/imageCommand.js"; + +class CitySeventeenCommand extends ImageCommand { + static category = "image-editing" + static description = "Welcome everyone to City 17!"; + + params = { + assetPath: "assets/images/city17.png", + distortPath: "assets/images/city17map.png", + compx: 132, + compy: 366 + }; + + static aliases = ["cityseventeen"]; + + static noImage = "You need to provide an image/GIF!"; + static command = "scott"; +} + +export default CitySeventeenCommand;