Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

Pathfinder Fickle Attack Mythic Power Macro

1496673036
Stewart W.
Marketplace Creator
Fickle Attack let's any 1's rolled on the die become the max number of that die.  I was wondering if that is doable as a macro.  So, let's say I'm rolling 2d6 damage.  I want the results to look at both dice and if they are 1's, change them to 6's.  Can that be done?  
1496673640
The Aaron
Pro
API Scripter
I don't think so, directly.  You could create a Rollable Table that effectively has dice that have two 6s
1496673867
Stewart W.
Marketplace Creator
I think I catch you.  1=6 2=2, 3=3, etc.  Right?
1496674324
The Aaron
Pro
API Scripter
Right, so your FickleD6 table would have the following values and weights: 6 : 2 2 : 1 3 : 1 4 : 1 5 : 1 And you'd roll something like: [[ 2t[FickleD6] ]] You could have a separate 6 for the 1 and for the 6, and add a label so you could tell if the 1 had occurred, if that's necessary information.
1496676647
Stewart W.
Marketplace Creator
Thanks for the info!  I'll look into doing just that.