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