• 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

Adjustment to add weapon special ability

Zan Thrax

Well-known member
Is there an adjustment anywhere that will let me apply a weapon special ability to a weapon? I'm building an Inquisitor with the Redemption Inquisition and I'd like to be able to apply Merciful to his weapons without having to directly adjust his equipment.
 
You can't actually add the Merciful pick to a weapon, mainly because you can only add picks to custom weapons, and there's no guarantee you're wielding a custom weapon when using the inquisition.

You are better off in this case, having your adjustment duplicate what the merciful property's script does. Below is the Merciful script:

Code:
      if (parent.tagis[component.BaseWep] <> 0) then
        perform parent.assign[wSpecial.Nonlethal]
        #extradamage[parent," plus 1d6 non-lethal",field[name].text]
      else
        foreach pick in hero from BaseWep where container.child[gCustMagic].field[gWeapExpr].text
          perform eachpick.assign[wSpecial.Nonlethal]
          #extradamage[eachpick," plus 1d6 non-lethal",field[name].text]
          nexteach
        endif
 
My adjustment addon has this adjustment already included. Its called "Weapon Elemental Dmg, Custom" and it lets you type in anything you wish to display as "extra" damage.

So you can easily type in "+1d6 non-lethal" into the "(Duration)" text box of the adjustment and have it display next to your selected weapon.
 
There is also already a magic item which does something similar, from ultimate equipment. It's called the Deliquescent Glove, so you could look there for inspiration.
 
Back
Top