11 lines
342 B
Smalltalk
11 lines
342 B
Smalltalk
|
accessing
|
||
|
rollDice
|
||
|
"For the moment, I will model a dice roll in Ironsworn Starforged.
|
||
|
A more abstract vocabulary should be deviced allowing the roll of
|
||
|
dice pool"
|
||
|
|
||
|
^ OrderedDictionary new
|
||
|
at: 'challenge die (1):' put: 10 atRandom;
|
||
|
at: 'action die:' put: 6 atRandom;
|
||
|
at: 'challenge die (2):' put: 10 atRandom;
|
||
|
yourself.
|