• 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

Create a race that boost one class ability

juan

New member
I am creating a racial trait to the kalashtar in my eberron campaign that gives him a menu of possible bonus choices. One of this choices of the menu gives him a bonus on one skill(already solved) and IF he is chooses a bard class it rases his fascinate hability DC in +1.
I know how to increase the DC, but i having isues on how to check if my hero is a bard, or alternatively if he has fascinate racial hability.

I would like to know what are my options. Can someone help me with this one?:D
 
You can check if the hero is a bard by checking that there is a Classes.Bard tag on the hero. However, it shouldn't be necessary. If you use childfound to transition to an ability, but that ability isn't present on the hero, nothing should happen. You can increase the ability DC by adding to the abDC field, like so:

Code:
hero.childfound[cXXXXXX].field[abDC].value += 1

Just replace cXXXXXX with the unique ID of the ability you would like to target.
 
Back
Top