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

Kinetic Blast macro help needed!

I am playing a Pathfinder Kineticist, and wanted some macros to use for my kinetic blasts that will scale properly with level and stat adjustments. There are four different ones needed (although I suppose I could just change the 1's to 2's for the composite blasts): --Physical blasts are ranged attacks that deal an amount of damage equal to 1d6+1 + the kineticist’s Constitution modifier, increasing by 1d6+1 for every 2 kineticist levels beyond 1st. --Energy blasts are ranged touch attacks that deal an amount of damage equal to 1d6 + 1/2 the kineticist’s Constitution modifier, increasing by 1d6 for every 2 kineticist levels beyond 1st. --Physical composite blasts deal an amount of damage equal to 2d6+2 + the kineticist’s Constitution modifier, increasing by 2d6+2 for every 2 kineticist levels beyond 1st. --Energy composite blasts deal an amount of damage equal to 2d6 + 1/2 the kineticist’s Constitution modifier, increasing by 2d6 for every 2 kineticist levels beyond 1st. I've only done relatively simple macros, so this is beyond my ability. Any help is much appreciated!
1499425095

Edited 1499425261
Ziechael
Forum Champion
Sheet Author
API Scripter
if i understand correctly (and i rarely do): Physical Blast -  [[ [[ceil(@{level}/2)]]d6 + ceil(@{level}/2) + @{con-mod} ]] damage Energy Blast -  [[ [[ceil(@{level}/2)]]d6 + ceil(@{con-mod}/2) ]] To incorporate composite directly into the above you could do -  Physical Blast - [[ [[ceil(@{level}/2) * ?{Composite|No,1|Yes,2}]]d6 + (ceil(@{level}/2) * ?{Composite|No,1|Yes,2}) + @{con-mod} ]] damage Energy Blast - [[ [[ceil(@{level}/2) * ?{Composite|No,1|Yes,2}]]d6 + ceil(@{con-mod}/2) ]]
They work like a charm! Thank you very much!