Orcpub / orcpub

Code for Dungeon Master's Vault Community Edition
https://www.dungeonmastersvault.com/
Eclipse Public License 2.0
208 stars 104 forks source link

Feature Request: Add Schedule 5 Spellcaster Progression #561

Open DivertedCircle opened 2 years ago

DivertedCircle commented 2 years ago

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}})

datdamnzotz commented 2 years ago

5 and 6 already exist, we can make them 6 and 7 and in #562 8 https://github.com/Orcpub/orcpub/blob/develop/src/cljc/orcpub/dnd/e5/options.cljc#L485-L576

datdamnzotz commented 2 years ago

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

datdamnzotz commented 2 years ago

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