From 2ab51e507d620c4479e07ca0ec47d22c8c66bc90 Mon Sep 17 00:00:00 2001 From: Your Name Date: Tue, 13 Apr 2021 15:14:34 -0400 Subject: Initial commit --- src/armor.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/armor.h (limited to 'src/armor.h') 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; + }; +} -- cgit v1.2.3