• 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

FeyCraft Material

Spyderbane

Well-known member
Has anyone created this? I was trying to make this for the weapon but I cannot seem to get it to use dex bonus for attack bonus instead of str.

to be honest this is the farthest I have gotten with this material. Its from DMG II pg 275
 
I figured out how to add dex bonus to attack for the weapon.

Post Attributes: 10000

var enhbonus as number
enhbonus = hero.child[aDEX].field[aModBonus].value
parent.field[wAttBonus].value = enhbonus

How do I lower the damage dice i.e. 1d6 => 1d4 and so on?
 
I figured out how to add dex bonus to attack for the weapon.

Post Attributes: 10000

var enhbonus as number
enhbonus = hero.child[aDEX].field[aModBonus].value
parent.field[wAttBonus].value = enhbonus

While this adds the DEX bonus, it doesn't remove the STR. Better option would be to apply the Weapon Finesse tag and let the system do the heavy lifting (Helper.Finesse).

How do I lower the damage dice i.e. 1d6 => 1d4 and so on?

There's a Helper.DamageUp tag, but the opposite doesn't appear to be true. I'll need to investigate this.

Update: We may be able to adjust weapon damage by adjusting the Damage field:

Code:
field[wDamage].value -= 1

Will test this theory when I get a chance.
 
Last edited:
Back
Top