diff options
author | Your Name <you@example.com> | 2022-08-09 16:57:53 -0400 |
---|---|---|
committer | Your Name <you@example.com> | 2022-08-09 16:57:53 -0400 |
commit | 5937d893da5656be3f486c863ae54e08bbe66579 (patch) | |
tree | 15aedaf0753fcf73fe85e90e88a7d0af33036eca /src/armor.h | |
parent | 947d83c59ea86615e3a81a2ec122d843b5eceee9 (diff) | |
download | dmtool-5937d893da5656be3f486c863ae54e08bbe66579.tar.gz dmtool-5937d893da5656be3f486c863ae54e08bbe66579.tar.bz2 dmtool-5937d893da5656be3f486c863ae54e08bbe66579.zip |
Added generic items, worked on features
Diffstat (limited to 'src/armor.h')
-rw-r--r-- | src/armor.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/armor.h b/src/armor.h index c8bdb87..43bd002 100644 --- a/src/armor.h +++ b/src/armor.h @@ -5,15 +5,13 @@ namespace entry { struct armorImpl; - class Armor : public Item , public Substantial { + class Armor : public Item { public: Armor(); int getACBonus(void) const; std::string getArmorType(void) const; int getStrRequirement(void) const; bool stealthDisadvantage(void) const; - int getCost(void) const; - double getWeight(void) const; virtual std::string getText() const override; virtual std::string getText(const creature::Creature& c) const override; |