Orcpub/orcpub

Feature Request: Add Schedule 5 Spellcaster Progression

Opened this issue · 3 comments

Motivation / Use Case
Adding this will allow custom classes to replicate the Pact Magic feature of the Warlock class.

Other Information
Add spell slot schedule 5 to
https://github.com/Orcpub/orcpub/blob/develop/src/cljc/orcpub/dnd/e5/options.cljc

5 {1 {1 1}
2 {1 2}
3 {2 2}
4 {2 2}
5 {3 2}
6 {3 2}
7 {4 2}
8 {4 2}
9 {5 2}
10 {5 2}
11 {5 3}
12 {5 3}
13 {5 3}
14 {5 3}
15 {5 3}
16 {5 3}
17 {5 4}
18 {5 4}
19 {5 4}
20 {5 4}})

Add spell slot schedule 6 to
https://github.com/Orcpub/orcpub/blob/develop/src/cljc/orcpub/dnd/e5/options.cljc

6 {3 {1 1}
4 {1 2}
5 {2 2}
6 {2 2}
7 {3 2}
8 {3 2}
9 {4 2}
10 {4 2}
11 {5 2}
12 {5 2}
13 {5 3}
14 {5 3}
15 {5 3}
16 {5 3}
17 {5 3}
18 {5 3}
19 {5 4}
20 {5 4}})

After looking 5 and 6 match exactly. Already has been done.

Related to Missing implementation of the caster level in the class builder
https://github.com/Orcpub/orcpub/pull/273/files

Missing implementation here:
https://github.com/Orcpub/orcpub/blob/develop/src/cljs/orcpub/dnd/e5/views.cljs#L5495-L5506