• 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

Weapon Finesse - Applying to specific weapon?

TCArknight

Well-known member
Ok, I have one more feat question. :)

In D20 Modern, Weapon Finesse is only to one specific weapon. I know I can use "wClass.Light | Helper.Finesse" as the custom expression to select the weapon, but how then do I get just that one weapon finessed, and not all the others that would be light or finesseable?

Thanks!
Thomas
 
So the weapon finesse feat has been modified to apply only to Helper.Finesse, and not to wClass.Light?
 
A Light weapon is still eligible to be Finessed, as well as a couple of specific weapons that are not light. However, instead of the Finesse applying to All Light and Finesseable, it just applies to the one specific chose weapon. All other Light or Finesseable weapons still use STR.
 
I think you need to write a brand new feat for it that only looks for that weapon.

Here's the part of the code that handles the modification (Final/10000):

Code:
          var diff as number
          diff = hero.child[aDEX].field[aModBonus].value - hero.child[aSTR].field[aModBonus].value + herofield[tArmorCShl].value
          if (diff > 0) then
            field[wAttBAB].value += diff
            endif

So, you should be able to modify that to go within a foreach that looks for the selected weapon.
 
Back
Top