-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathd_and_d.ts
executable file
·47 lines (39 loc) · 1.24 KB
/
d_and_d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env node
const {getRandomInt} = require('mad-utils');
const roll = () => getRandomInt(1, 20);
console.log(`Does it look like anyone lives there?`, '\n');
console.log(`Is there a chimney with smoke coming out?`, '\n');
console.log(`Is there a door?`, '\n');
console.log(`Are there windows?`, '\n');
const natureRoll1 = roll();
const natureRoll2 = roll();
const natureRoll = ((natureRoll1 > natureRoll2) ? natureRoll1 : natureRoll2) + 1;
console.log(`Any cool plants?`);
console.log(`NATURE RESULT: ${natureRoll} / 20`, '\n');
console.log(`Any other cool shit?`);
console.log(`INVESTIGATION RESULT: ${roll() + 4} / 20`);
console.log(``);
/**
* Jordan :: Bo
* Runty wood elf
* 5'8
* Has disheveled chain mail
* Flowing locks
* Dislikes other wood elves
*
* Karen :: Tyra
* Half-orc
* Dead family
* Sibling of
*
*
* Guillian :: Tobias
* She-hulk - grayish dark greenish tinted skin
* Tusks coming out of lower jaw - a little smaller than orc tusks
* Giant beast bone coming out of side
* Deep sunken eyes
* Strong brow
* Long black hair
*
* Darin Sildermath
*/