• 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

Displaying only the better of two special abilities

Hi, Thanks for all the past help.

In many tempates, the character receives, for example, a damage reduction. For my example, let's say that damage reduction is 10/magic. However, there is usually a caveat that says if the base creature had a better damage reduction, then use that damage reduction. For example, the base creature, in my example, has a damage reduction of 15/magic. On my character sheet, it will display both damage reductions. How can I have only the better damage reduction display on my character sheet?

Thanks, Wolf
 
C:\HeroLab\data\d20\authoring\d20editwhere.htm is in the manual. Here is its text on DR:

#applydr[type, bonus]
Allows you to add a type of damage reduction to the hero. Using this macro makes sure that the highest DR value is used, since DR doesn't stack.

~ We're going to add damage reduction against magic, which is of type xDamRdMag - we
~ assume that the xDamRdMag pick has already been bootstrapped.

~ Give us DR 10 vs. Magic
#applydr[xDamRdMag, 10]
 
Back
Top