diff options
author | Your Name <you@example.com> | 2021-05-09 19:01:59 -0400 |
---|---|---|
committer | Your Name <you@example.com> | 2021-05-09 19:01:59 -0400 |
commit | e044fc4255aa64ef1dbc3d20ed87ed6e2f61a6bd (patch) | |
tree | 344c09421c5839a764a132fe9166f0e6e3f90e45 /src/creature_data.h | |
parent | d13358b71ec15085f2638fd9c3fc634df62dfc94 (diff) | |
download | dmtool-e044fc4255aa64ef1dbc3d20ed87ed6e2f61a6bd.tar.gz dmtool-e044fc4255aa64ef1dbc3d20ed87ed6e2f61a6bd.tar.bz2 dmtool-e044fc4255aa64ef1dbc3d20ed87ed6e2f61a6bd.zip |
Code refactoring
Diffstat (limited to 'src/creature_data.h')
-rw-r--r-- | src/creature_data.h | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/src/creature_data.h b/src/creature_data.h deleted file mode 100644 index 151a84c..0000000 --- a/src/creature_data.h +++ /dev/null @@ -1,28 +0,0 @@ -namespace creatue { - struct Creature_Data { - std::string givenName; - int hpMax; - int hp; - std::vector<std::shared_ptr<entry::Item>> inventory; - std::map<rules::Ability, int> stats; - std::map<rules::Skill, int> skills; - int proficiency; - std::string size; - std::string alignment; - int hdCount; - int hdSides; - std::string speed; - std::vector<rules::Ability> saves; - std::vector<std::string> senses; - std::string langs; - double cr; - bool observant; - std::string natArmorName; - int natArmorBonus; - std::vector<dmgType> dmgImmunities; - std::vector<dmgType> dmgResistances; - std::vector<dmgType> dmgVulnerabilities; - std::vector<dmgType> condImmunities; - std::vector<std::shared_ptr<entry::Feature>> features; - }; -} |