• 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

Eberron Warforged

Gumbytie

Well-known member
Yes, I know it isn't technically a SW setting but some players seem interested in porting the setting over to SW. So I am the HeroLab guy who has to make it work :)

Warforged have a a Racial Property called "Integrated Protection" that gives them natural armour of +2.

Initialization/3000
Code:
~set the defensive value for the armor
      perform hero.child[armNatural].setfocus
      focus.field[defDefense].value = 2
Bootstraps: armNatural Fields Id: livename Value: Integrated Armor

Works correctly.

Now they have a Racial Edge option called "Adamantine Body" that boosts the armor from +2 to +4.

PreTraits/5000
Code:
~set the defensive value for the armor
      perform hero.child[armNatural].setfocus
      focus.field[livename].text = "Adamantine Armor"
      focus.field[defDefense].value += 2

On the Armory Tab we now see +4 Adamantine Armor. But on the Basics Tab our Touch still reads 6(2). It isn't adding the +2 to the armor like the initial Racial Property did.

Any suggestions? There are no errors.
 
Back
Top