Roll dice (eg Asphodice) and show outcomes https://rpg.bertieb.org/dice-roller/
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

10 строки
264 B

  1. import { Asphodice } from "./asphodice";
  2. let asphodice: Asphodice = new Asphodice();
  3. let number: number = 4;
  4. for (let i = 0; i < 10; i++) {
  5. console.log("--------------------");
  6. console.log("Rolling", number, asphodice);
  7. console.log(asphodice.roll(number));
  8. }