Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 350 Bytes

Roll.md

File metadata and controls

19 lines (16 loc) · 350 Bytes

🎲 Dice Rolling

const { Roll } = require('falgames');

const Game = new Roll({
  message: message,
  isSlashGame: false,
  embed: {
    title: 'Dice Roll',
    color: '#551476'
  },
  notValidRollMessage: 'Please provide a valid roll.',
  rollLimit: 500,
  rollLimitMessage: 'You can\'t roll this much dice.'
});

Game.roll("1d20")