• 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

On Angelic Aspect

kiligir

New member
tl;dr How do you make a spell adjustment that adds a racial special and energy resistance?

Okay, so I've done some digging around. First, the link to the spell in question.

So, I need a control under spells to do this, since it's a lot. I figured I'd look into it, but... this is a bit over my head.

I need to add

  • low-light vision
  • darkvision 60 feet
  • DR 10/evil
  • three immunities
  • a pair of resistances
  • a racial save against poison
  • and the protective aura and truespeech abilities.

I can make the control and give the DR/evil, at least. I think I cannibalized correctly.

Code:
      ~ If we're not enabled, get out now
      doneif (field[pIsOn].value = 0)

      ~ Apply DR Evil to the hero
      #applydr[xDamRdEvil,10]

I need to add the racial specials (raLowLight), (raDarkVis), (xImmPetri), (raImmAcid), (raImmCold) (raProtAura) and (raTrueSpee) somehow, but I don't know the function. Adding the energy resistance seems easy enough to cannabalize, but since I'm here... may as well ask.
 
Your best way to figure this stuff out is to look at an existing spell adjustment and see how it does it. So maybe look at the spell adjustment "Darkvision" to see how it gives Darkvision 60ft. You can do this on the editor Adjustment tab using "New (Copy)" button.
 
Back
Top