• 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

Nymph’s Inspiration Token

kinithin

Member
Nymph’s Inspiration Token

Code:
  <thing id="ioNymphTok" name="Nymph’s Inspiration Token" description="A nymph can choose an intelligent creature to inspire and serve as a muse by giving that creature some token of her affection (typically a lock of her hair). As long as the nymph retains her favor for this creature and as long as the creature carries the nymph’s token, the creature gains a +4 insight bonus on all Will saving throws, Craft checks, and Perform checks. A bard who has a nymph for a muse in this way can use his bardic performance for an additional number of rounds per day equal to his nymph muse’s Charisma modifier. The nymph retains a link to her token and its carrier as if she had cast a status spell on the carrier. The nymph can end this effect at any time as a free action. A single nymph may only inspire one creature at a time in this manner." compset="Wondrous">
    <tag group="Helper" tag="AlwaysAvl"/>
    <tag group="gType" tag="Wonder"/>
    <tag group="Helper" tag="NoPathSoc"/>
    <eval phase="PostLevel" priority="5000">
      #applybonus[BonInsight, hero.child[svWill], 4]
      #applybonus[BonInsight, hero.child[AllCraft], 4]
      #applybonus[BonInsight, hero.child[AllPerform], 4]

      ~ A Bard also gains additional bardic performance/day equal to his nymph muse's Charisma modifier (in this case +7, as nymph has a 25 CHA)
      #trkmax[cBrdPerfor] += 7
    </eval>
  </thing>
 
Back
Top