Advertisement
DeLevely

Fantasy Frankenwolf Troll formula

Mar 26th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. NumberAbilityDice:=1; \ Change to alter the number of ability dice
  2. NumberProficiencyDice:=0; \ Change to alter the number of proficiency dice
  3. Target := 5; \Change to set the difficulty of the target number
  4.  
  5. x := NumberAbilityDice d8;
  6. abilitysuccess:= count Target <= x;
  7. abilitycrit:= count (x keep 8); \Doubles the dice that roll 8s
  8. abilityfail:= count 1=x; \Subtracts dice that roll 1s
  9. abilityroll := abilitysuccess+abilitycrit-abilityfail;
  10.  
  11. y := NumberProficiencyDice d12;
  12. proficiencysuccess:= count Target <= y;
  13. proficiencycrit:= count (y keep 12); \Doubles the dice that roll 12s
  14. proficiencyfail:= count 1=y; \Subtracts dice that roll 1
  15. proficiencyroll := proficiencysuccess+proficiencycrit-proficiencyfail;
  16.  
  17. Skillcheck := abilityroll + proficiencyroll;
  18. Skillcheck
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement