PDA

View Full Version : Creating Character classes in new pathfinder format



Ratupper
May 6th, 2017, 23:50
Is there a tutorial out there somewhere on creating new character classes in the new pathfinder format. I'd like to build a War priest Character class that levels like the like the classes in the core rulebook.

Spin-Man
May 7th, 2017, 02:55
Zacchaeus made an excellent video you can find here (https://www.fantasygrounds.com/forums/showthread.php?37112-New-Class-Creation-Video) that shows how to do it. It uses D&D 5E, but it's the same method.

Ratupper
May 7th, 2017, 03:42
Thanks very helpful. Still can't figure out how to get the spells per day to work. For the core class this auto populates but not for the class I'm creating. Any thoughts?

Spin-Man
May 7th, 2017, 08:39
I made an exact duplicate of the wizard class and that didn't automatically fill the spells per day, so you may have to just update that manually for custom classes unless you edit the XML file. Hopefully someone more knowledgeable than me will have a better solution for you.

Nickademus
May 7th, 2017, 10:50
Spells per day are controlled (in the 5e ruleset so possibly also in PF) by an ability called <spellcasting> granted at either 1st, 2nd, or 3rd level. D&D 5e has a more standardized system of multiclassing and spells per day, so the system is hard coded into the ruleset. It may be that the PF spells per day is to diverse among classes to do this automatically.

But just in case, make sure your spellcasting ability is called "Spellcasting" and see if that fixes it.

Moon Wizard
May 7th, 2017, 18:24
The Pathfinder code looks specifically for a class feature called "Spells". (different than "Spellcasting" for 5E)

The wording must contain "must have a <ability> score equal to" or "must have an <ability> score equal to" in order for the ability to be pulled, and for the spell feature to be considered valid.

Spell slots are specifically added by class name, and have to be coded into the ruleset at this point. This is because there is very little standard for spell slot progression in 3.5E. (Each of these have their own progression: cleric/druid/witch/wiz, alc/bard/inq/summ, ora/sorc, pal/rgr, adept, ***, blackguard)

Regards,
JPG

Ratupper
May 7th, 2017, 20:43
@Moon Wizard thanks that makes sense.

Anyone know how to create new class features like the core rule book has under special abilities?...all coded xml I presume so just add manually?

swbuza
May 7th, 2017, 21:00
What I did is add them as story entries, extracted them form the db.xml, did a search replace to change them to Class Features and stuck them in a "Special Abilities" reference section of a module.

swbuza
May 7th, 2017, 21:02
I think it is also possible to add them as Class Features with a ZERO in the level. This will not add them to the character sheet when you add levels of the class, but you can drag them in manually. This would also work.

Moon Wizard
May 7th, 2017, 22:53
If they are added automatically, then they should be added as class features with the appropriate level they are gained (1-20).
If they are optional, then swbuza's second option is probably the easiest. Add as a class feature with a level value of zero.

Regards,
JPG