• 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

Rhythm Blade

SAbel

Well-known member
The weapon reads as follows but HL only adds the AC bonus not the Ref any suggestions

Shielding BladeLevel 4+ Common
This sword's broad cross guard is larger and thicker than normal, but a few practice swipes with this weapon show that it is still perfectly balanced.

Lvl 4 +1 840 gp Lvl 19 +4 105,000 gp
Lvl 9 +2 4,200 gp Lvl 24 +5 525,000 gp
Lvl 14 +3 21,000 gp Lvl 29 +6 2,625,000 gp
Weapon: Heavy blade or light blade

Enhancement Bonus: attack rolls and damage rolls

Critical: +1d6 damage per plus

Property
You gain a +1 shield bonus to AC.



Published in Dragon Magazine 391.

The Current eval script is
Phase: Traits
Priority 1000
Index 1

Script:

doneif (parent.tagis[Helper.EqpOff] = 0 )
#traitmodify[defAC,trtShield,1,""]

Timing: Before scripts: Derived trtFinal
 
Unless Shields have a built in functionality to add to Reflex defenses, there's nothing there in the code to do that. I'd have to go look at what things that do add to Reflex (I haven't done anything with the 4e files in like a year now), but I expect you'll need to do whatever they do.
 
Modify the Eval script to

doneif (parent.tagis[Helper.EqpOff] = 0 )
#traitmodify[defRef,trtShield,1,""]
#traitmodify[defAC,trtShield,1,""]

Do note that you will need to fix it on all the Rhythm Blade entries from +1 to +6, and that the description of the weapon does not indicate that the AC & Reflex bonuses go up with the weapon level, so that's an error in the existing entries.
 
Back
Top