mrmBot-Matrix/commands/soundboard/oof.js

9 lines
294 B
JavaScript
Raw Normal View History

2023-03-15 14:09:09 +00:00
import SoundboardCommand from "../../classes/soundboardCommand.js";
class OofCommand extends SoundboardCommand {
static file = "./assets/audio/oof.ogg";
static description = "Plays the Roblox \"oof\" sound";
static aliases = ["roblox", "commitdie"];
}
export default OofCommand;