Working on a supplement that adds a couple of new spell blending arcana's to the magus list.
I essentially replicated the Spell Blending arcana items to make a new Harmonic Blending and a Jinx Blending. The Spell Blending allows the user to select a spell for the ability. The same exact logic, except for which class helper is specified, results in a "Nothing to select" message when the arcana is added to the magus.
Here is the new logic for Harmonic Blending.
~generate the expression saying what spells we're able to search for
~we're looking for spells that are bard spells but not magus spells and are of a level we can cast
field[usrCandid1].text = "component.BaseSpell & sClass.cHelpBrd & !sClass.cHelpBrd & (val:sLevel.? <= " & linkage
.field[cMaxSpLev].value & ")"
~whether this is the one spell version or the two spell version is extraneous now that we've chosen it
field[livename].text = "Harmonic Blending"
Post Attributes 30000 Sequence 1.
The only difference between this logic and the regular spell blending logic is cHelpWiz vs cHelpBrd and on Jinx Blending, cHelpWit.
So what am I missing?
Thanks.
I essentially replicated the Spell Blending arcana items to make a new Harmonic Blending and a Jinx Blending. The Spell Blending allows the user to select a spell for the ability. The same exact logic, except for which class helper is specified, results in a "Nothing to select" message when the arcana is added to the magus.
Here is the new logic for Harmonic Blending.
~generate the expression saying what spells we're able to search for
~we're looking for spells that are bard spells but not magus spells and are of a level we can cast
field[usrCandid1].text = "component.BaseSpell & sClass.cHelpBrd & !sClass.cHelpBrd & (val:sLevel.? <= " & linkage
~whether this is the one spell version or the two spell version is extraneous now that we've chosen it
field[livename].text = "Harmonic Blending"
Post Attributes 30000 Sequence 1.
The only difference between this logic and the regular spell blending logic is cHelpWiz vs cHelpBrd and on Jinx Blending, cHelpWit.
So what am I missing?
Thanks.