Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function rollpick(n) =
- roll := 1d20;
- bonus := 12+n;
- targetac := 20;
- 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
- function rollrapier(n) =
- roll := 1d20;
- bonus := 12+n;
- targetac := 20;
- 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
- call rollrapier(0) + call rollpick(-4)
Advertisement
Add Comment
Please, Sign In to add comment