• 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

Form of the Dragon

FluffyDingo

Well-known member
Trying to condense my Form of the Dragon spell modifiers, and running into a bit of a hitch. I'm using "component.SelectHelp & Selection.DragonDisc" to provide the drop list of dragon types, but all I know how to pull for tags is BloodEner and abArea, when I need to be able to pull what type of dragon is being selected. I'm not sure an actual dragon type is stored there, since every other ability just cares about energy type and breath area, so I will likely need to pull the name string itself, but I do not know how to do this. I assume some sort of code like:

Code:
var dragon as string

if (field[pChosen].ischosen <> 0) then
   perform field[pChosen].chosen.pulltags[livename.?]
   dragon = field[pChosen].chosen.tagnames[livename.?]
endif

except where [livename.?] is something I don't know.

Hopefully someone knows!
 
As in it's already being done? Does this also mean I shouldn't work on Elemental Body adjustments too?

Also just knowing in general is helpful, since I'm trying to do something very similar for Mortal Herald. (I can already do what I need for that, but same principle)
 
Last edited:
Yes, I've been working on Polymorph mechanics for most of this month, and I am finished with the polymorph spell adjustments from paizo's books (I held off on spells from 3rd party publishers for now). I'm currently working on adding similar effects to the various class and racial abilities.
 
Back
Top