dnd_spellbook_maker/lib.rs
1//! Library for making pdf documents of 5th edition D&D spells that are formatted like D&D source books.
2//!
3//! See repository for documentation on spell files.
4//!
5//! Repository at <https://github.com/ChandlerJayCalkins/dnd_spellbook_maker>.
6
7pub mod spells;
8mod spellbook_options;
9mod spellbook_gen_types;
10mod spellbook_writer;
11#[cfg(test)]
12mod tests;
13
14pub mod utils;
15
16pub use spellbook_options::*;
17pub use utils::*;
18
19// TODO
20// 1. Make it so multiple tables / stat blocks can be placed next to each other horizontally
21// 2. Make it so spells can have stat blocks in them
22// - Animate Dead
23// - Animate Objects
24// - Awaken
25// - Create Undead
26// - Find Steed
27// - Finger of Death
28// - Giant Insect
29// - Phantom Steed
30// - Summon Aberration
31// - Summon Beast
32// - Summon Celestial
33// - Summon Construct
34// - Summon Dragon
35// - Summon Elemental
36// - Summon Fey
37// - Summon Fiend
38// - Summon Undead