jderam / hyperborea3

An app for creating characters for the Hyperborea RPG
MIT License
3 stars 0 forks source link

Create class_level_spells_known Table #16

Closed jderam closed 2 years ago

jderam commented 2 years ago

class_id level school_code spell_level qty_known (this level only)

To get total spells known you will need to group by school_code, spell_level and get a sum on qty_known

jderam commented 2 years ago

Thinking if this can include everything we need for spells known and spells per day:

PK( class_id class_level school_code spell_level) spells_known spells_per_day

jderam commented 2 years ago

taken care of in https://github.com/jderam/hyperborea-tools/pull/65