mrmBot-Matrix/commands/fun/dice.js

25 lines
635 B
JavaScript
Raw Normal View History

import Command from "../../classes/command.js";
class DiceCommand extends Command {
async run() {
const max = this.options.max ?? parseInt(this.args[0]);
2022-03-31 19:53:22 +00:00
if (!max) {
return `🎲 The dice landed on ${Math.floor(Math.random() * 6) + 1}.`;
} else {
2022-03-31 19:53:22 +00:00
return `🎲 The dice landed on ${Math.floor(Math.random() * max) + 1}.`;
}
}
2022-03-31 19:53:22 +00:00
static flags = [{
name: "max",
type: 4,
description: "The maximum dice value",
min_value: 1
}];
static description = "Rolls the dice";
static aliases = ["roll", "die", "rng", "random"];
static arguments = ["{number}"];
}
export default DiceCommand;