• Please note: In an effort to ensure that all of our users feel welcome on our forums, we’ve updated our forum rules. You can review the updated rules here: http://forums.wolflair.com/showthread.php?t=5528.

    If a fellow Community member is not following the forum rules, please report the post by clicking the Report button (the red yield sign on the left) located on every post. This will notify the moderators directly. If you have any questions about these new rules, please contact support@wolflair.com.

    - The Lone Wolf Development Team

Increase damage die of kinetic blast

Sphynx

Well-known member
I'm trying to up the damage of the Thunderstorm blast to d8's, but can't seem to find the correct object. Downloaded Occult Origins package in hopes that would help me (Gravitic Boost) but the only line I see (perform field[usrChosen1].chosen.assign[Helper.DamageUp]) didn't help, so here's what I'm currently trying:

perform hero.child[cKinThuBla].assign[Helper.DamageUp]

Also not working... anyone know correct object to do the assign on?

Note: using Post-Levels: 10000
 
Last edited:
Well increasing the die size (ie using Helper.DamageUp) in this case is going to take you from 20d6 to 30d6. So you will need to directly affect the "Die Size" value instead.

Code:
hero.child[cKinThuBla].field[wRMainDSiz].value += 2
 
Back
Top