• 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

Adding Shifting Feats

You'll have to research how to accomplish this for each feat using the guide to the editor and by copying existing feats that do similar things and looking at the related eval scripts. Using one feat an example...

Beasthide Shift (Shifting)
Benefit: You gain a +1 bonus to natural armor for each [Shifting] feat you possess. This shift lasts for 2 rounds.
Special: At 3 Shifting feats, half of your Natural Armor bonus applies to your Touch AC (rounded down).
At 5 Shifting feats, you add your full Natural Armor bonus to your Touch AC

Here's what my planned approach would be:

1. Create the basic skeletal feats so you have feat IDs you can work with.
2. Use #hasfeat[feat_id] in an eval script for each feat and gather a sum. Use the sum to add a natural armor bonus if sum(feats) <3).
3. Add an elseif condition: if sum(feats) >= 3, divide the natural armor bonus and apply half to touch AC.
4. Add an elseif condition if sum(feats) >=5 apply the entire bonus to both ACs.
5. You'll probably want a check box to turn it off and on since it's conditional.

I would consider not doing the eval script at all since the feat only lasts 2 rounds (i.e. it's conditional).
 
Back
Top