-
Notifications
You must be signed in to change notification settings - Fork 14
Max Prepared Spells Formulas
Kevin Lee Garner edited this page Dec 2, 2023
·
5 revisions
The maximum number of prepared spells for casters with spell preparation can vary by class, subclass, temporary effects, feats, and boons. This page is intended for additional user-submitted formulas that can help others automate their max prepared spells calculations.
Tip
If you have a formula to submit to this wiki, create a github issue with the formula and what class/subclass/scenario it pertains to. The main requirement is that it pertains to maximum prepared spells.
- Artificer
max(@abilities.int.mod + floor(@classes.artificer.levels / 2), 1)
- Cleric
max(@abilities.wis.mod + @classes.cleric.levels, 1)
- Druid
max(@abilities.wis.mod + @classes.druid.levels, 1)
- Paladin
max(@abilities.cha.mod + floor(@classes.paladin.levels / 2), 1)
- Wizard
max(@abilities.int.mod + @classes.wizard.levels, 1)
- ...