• 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

Change Spell List With Archetype?

Bottomhardt

New member
My GM is letting me play a Summoner on the condition that I use the Unchained spell list and I'm trying to make an archetype to change my spell list over, but all I can manage is adding the UC list to the regular one. Is there a way around this or am I stuck manually recreating the Summoner class with the UC spells?
 
Wow, seems there is no easy way to disable a Class default spell list and run the list you want with an archetype. Best I can recommend is use the UC summoner list with the "Uses Which Spells?" and use only the higher caster level spell. Example: Haste for Summoner is CL 2 where for the unchained summoner is CL 3. That is mainly the difference between them. Some spells where listed at higher spell levels. At least with the UC summoner list added you can select the later Spell Level spells.

Otherwise you may have to recreate the class from scratch and select UC Summoner spell list. :(

Seems like a easy addition as a feature to the editor to disable the default spell list.
 
I kind of figured that was going to be the answer, but thanks for the confirmation. I'll probably finish up making the class so I don't have to use two spell lists.
 
The spells a class will use is stored as sClass tags on that class. "Uses Which Spells?" on the archetypes adds new sClass tags, but if you also want to delete the existing ones, that's a simple script, to delete the one tag and assign a new tag.
 
So something like:
timing like Pre-levels 5000
foreach pick in hero from BaseSpell where "sClass.cHelpWit"
eachpick.delete[sClass.cHelpWit]
nexteach
Inside the Archetype. Just guessing here as I am tired. I probably shouldn't post when tired, but I am stubborn.
 
First/9000:
Code:
perform hero.childfound[cHelpSum].delete[sClass.cHelpSum]

And then use "Uses Which Spells?" to assign the unchained summoner list.
 
Back
Top