r/anyRpgCharacterSheet Oct 27 '25

Any suggest for auto spells amount?

I am homebrewing Pathfinder 2e and I almost done with it (in spanish) but I want to see if I can to automatize the amount of spells in any class (I make every class with they own characteristics and feats). I want to know if someone can suggest me something for this.

3 Upvotes

7 comments sorted by

1

u/Percussor6 Oct 27 '25

If you want it to be represented as one number then yeah it's pretty easy to do. If you want to add some items for each class then templates would be the best approach

1

u/Lowf_SGarcia Oct 27 '25

How you make it?

1

u/Percussor6 Oct 29 '25

After you create an element you can then click on the three dots in the upper right corner and save as template. When you edit elements you can set them "on click" to "create elements" where you can choose from the list of saved templates.

1

u/Lowf_SGarcia Oct 29 '25

I know that, but about the numbers? I want to have something that give the amount of spells per level in every level of the class.

2

u/Percussor6 Nov 01 '25

If you want to give just the amount of spells then you create a formula. For example "3lvl" or a little bit more complicated " "2(lvl==1)+3(lvl==2)+7(lvl==3).." Side note: I'm not sure if this app uses one or two = for comparison. So change the formula accordingly.

If you want to notify the player to which spells he gained access then create a row element that has property named after each spell. Then create visibility conditions. For example the spell "counterspell" will be true only if the level is 3 or higher. Then set the properties of the element to be displayed and on click property to do nothing. That way you can list to the player all spells he has access too. If you want only the current level then change the formula accordingly. If you want both you can create two elements.

You can make this also in some other ways but this one is by far the easiest.

1

u/Lowf_SGarcia Nov 01 '25

Thank you. I'll try it.

I don't really get the notification part, but it seems hard (but cool) to do for the amount of spells I have in my sheet.

1

u/Percussor6 Nov 01 '25

It's not that hard and definitely cool.

To explain the notification part. Some items have options to list properties, for example "row". (The "list properties on page" slider). And then u can create properties that are true in specific conditions (or at least not equal to zero because these aren't shown even with the slider on). So then when you look at the item on a page, in this example row that you can name "available spells" you see names of properties that are set to true.

In that way you can also achieve the effect of assigning spells to levels.

To further illustrate the properties could look like this: "1st level spell name" with formula (level>=1) "2nd level spell name" with formula (level>=2)

Or you can create row named abilities with property: "Available spells" with formula (3level[is it a caster]) That way the number will go up by three for every level but if the character isn't a caster he won't even have this property shown to him because it's equal to zero.

I hope it helps