aboutsummaryrefslogtreecommitdiff
path: root/src/armor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/armor.h')
-rw-r--r--src/armor.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/armor.h b/src/armor.h
new file mode 100644
index 0000000..0ea7199
--- /dev/null
+++ b/src/armor.h
@@ -0,0 +1,22 @@
+#pragma once
+#include "item.h"
+#include "json.hpp"
+
+namespace item {
+ class Armor : public Item {
+ public:
+ Armor(const nlohmann::json& data);
+ int getACBonus(void) const;
+ std::string getArmorType(void) const;
+ int getStrRequirement(void) const;
+ bool stealthDisadvantage(void) const;
+
+ virtual nlohmann::json toJson(void) const;
+
+ private:
+ const int acBonus;
+ const std::string armorType;
+ const int strRequirement;
+ const bool stealthDis;
+ };
+}