Bonus Spells and Combat Rites in Arcana Evolved
Here’s the formula for bonus spells and combat rites in Arcana Evolved
A=Ability score
S=Spell Level (if S=0, S=1 in calculations)
B=Bonus spells for that level (if B<0, B=0)
if A > (10+S*2)
B = FLOOR((A-(2+(S*2)))/8)
else
B = 0
end if
FLOOR means round down, e.g. FLOOR(5.8) = 5, FLOOR(5.1) = 5, FLOOR(5.5)=5
E.g. for Ability score 18, spell level 2
Floor((18-(2+(2*2)))/8) = floor(1.5) = 1