• 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

Arcane discovery: Forest's Blessing

Azhrei

Well-known member
This feat gives an arcane caster +1 caster level and +1 to the save DC for any spell they cast that is also on the druid's spell list.

Hero Lab doesn't have this feat — how would I go about adding it? I know a little about how to add scripts, but I don't even know where to start when it comes to checking whether a given spell is also on the spell list of another class...

Thanks.
 
"Forest's Blessing" is the D20PFSRD 'generic name' for the Feat. The original name is Yuelral's Blessing, and it is in Hero Lab if you have the appropriate data package.
 
Okay, thanks. But I don't have whatever source that feat is in.

So the question remains: how do I grant +1 CL and +1 save DC for any spell my mage casts that is also on the druid spell list? Does anyone know of any other feats or traits or items that provide a similar capability that I might be able to investigate for sample code?

Thanks!
 
PostLevel 10000

Code:
      foreach pick in hero from BaseSpell where "sClass.cHelpWiz & sClass.cHelpDrd"
        eachpick.field[sDC].value += 1
        eachpick.field[sCL].value += 1
        nexteach
 
Back
Top