2023-03-15 14:09:09 +00:00
|
|
|
import SoundboardCommand from "../../classes/soundboardCommand.js";
|
|
|
|
|
|
|
|
class FartReverbCommand extends SoundboardCommand {
|
|
|
|
static file = "./assets/audio/fart2.ogg";
|
|
|
|
static description = "Plays a fart sound effect with extra reverb";
|
|
|
|
static aliases = ["fart2"];
|
|
|
|
}
|
|
|
|
|
2021-09-20 17:26:40 +00:00
|
|
|
export default FartReverbCommand;
|