Storm: Difference between revisions

From Soul Co, Your Home for inclusive DnD
(Created page with "====Very Rare, Requires Attunement by Romi==== ==Description== This magic rapier was granted to a contributor to the continent of Faeyis and its Mistress. On a critical, the weapon deals an additional 1d6 lightning damage to the target and every enemy within 5 ft. In addition, as an action, instead of attacking, the wielder can make a single strike against every enemy currently within its reach. ==Code== <pre> !attack import - name: Storm automation: - type:...")
 
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
====Very Rare, Requires Attunement by Romi====
====Very Rare, Requires Attunement====
[[Category:Homebrew Items]][[Category:Custom Items]][[Category:parkerpatrolss items]]


==Description==
==Description==

Latest revision as of 18:03, 21 April 2024

Very Rare, Requires Attunement

Description

This magic rapier was granted to a contributor to the continent of Faeyis and its Mistress. On a critical, the weapon deals an additional 1d6 lightning damage to the target and every enemy within 5 ft. In addition, as an action, instead of attacking, the wielder can make a single strike against every enemy currently within its reach.

Code


!attack import - name: Storm
  automation:
    - type: target
      target: each 
      effects:
        - type: attack
          hit:
            - type: damage
              damage: 1d8 + {dexterityMod + 2} [magical piercing] + 2d6 [magical lightning]
              overheal: false
          miss: []
          attackBonus: dexterityMod + proficiencyBonus + 2
    - type: text
      text: This magic rapier was granted to a contributor to the continent of Faeyis and its Mistress.  On a critical, the weapon deals an additional 1d6 lightning damage to the target and every enemy within 5 ft.  In addition, as an action, instead of attacking, the wielder can make a single strike against every enemy currently within its reach.
  _v: 2

and

  !attack import - name: Storm’s Wrath
  automation:
    - type: target
      target: each 
      effects:
        - type: attack
          hit:
            - type: damage
              damage: 1d6 [magical lightning]
              overheal: false
          miss: []
          attackBonus: dexterityMod + proficiencyBonus + 2
    - type: text
      text: On a critical, the weapon deals an additional 1d6 lightning damage to the target and every enemy within 5 ft.
  _v: 2