16 lines
412 B
JavaScript
16 lines
412 B
JavaScript
import ImageCommand from "../../classes/imageCommand.js";
|
|
|
|
class SooSCommand extends ImageCommand {
|
|
params = {
|
|
soos: true
|
|
};
|
|
|
|
static description = "\"Loops\" an image sequence by reversing it when it's finished";
|
|
static aliases = ["boomerang"];
|
|
|
|
static requiresGIF = true;
|
|
static noImage = "You need to provide an image/GIF to loop!";
|
|
static command = "reverse";
|
|
}
|
|
|
|
export default SooSCommand;
|