Draco18s

T-Roll PF2 DPS

Sep 10th, 2018
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. function rollpick(n) =
  2. roll := 1d20;
  3. bonus := 12+n;
  4. targetac := 20;
  5.  
  6. if (roll+bonus)>=(targetac+10) then sum 6d8+4 else if roll>=20 then sum 6d8+4 else if (roll+bonus)>=targetac then sum 3d4+4 else 0
  7.  
  8. function rollrapier(n) =
  9. roll := 1d20;
  10. bonus := 12+n;
  11. targetac := 20;
  12.  
  13. if (roll+bonus)>=(targetac+10) then sum 4d6+1d8+1d8+4 else if roll>=20 then sum 4d6+1d8+1d8+4 else if (roll+bonus)>=targetac then sum 2d6+1d4+4 else 0
  14.  
  15. call rollrapier(0) + call rollpick(-4)
Advertisement
Add Comment
Please, Sign In to add comment