From 2cae1aa33f80ce0844fb54a84ce103146a7fe7ad Mon Sep 17 00:00:00 2001 From: Your Name Date: Mon, 19 Apr 2021 13:46:14 -0400 Subject: Started earnest work on cli --- src/rules.h | 88 ++++++++++++++++++++++++++++++++----------------------------- 1 file changed, 46 insertions(+), 42 deletions(-) (limited to 'src/rules.h') diff --git a/src/rules.h b/src/rules.h index d61b176..c1cc6e1 100644 --- a/src/rules.h +++ b/src/rules.h @@ -4,50 +4,54 @@ using namespace std; -static vector abilities {"str", "dex", "con", "int", "wis", "cha"}; +namespace rules { -static map skill2ability { + static vector abilities {"str", "dex", "con", "int", "wis", "cha"}; + + static map skill2ability { {"Athletics", "str"}, - {"Acrobatics", "dex"}, - {"Sleight of Hand", "dex"}, - {"Stealth", "dex"}, - {"Arcana", "int"}, - {"History", "int"}, - {"Investigation", "int"}, - {"Nature", "int"}, - {"Religion", "int"}, - {"Animal Handling", "wis"}, - {"Insight", "wis"}, - {"Medicine", "wis"}, - {"Perception", "wis"}, - {"Survival", "wis"}, - {"Deception", "cha"}, - {"Intimidation", "cha"}, - {"Performance", "cha"}, - {"Persuasion", "cha"} -}; + {"Acrobatics", "dex"}, + {"Sleight of Hand", "dex"}, + {"Stealth", "dex"}, + {"Arcana", "int"}, + {"History", "int"}, + {"Investigation", "int"}, + {"Nature", "int"}, + {"Religion", "int"}, + {"Animal Handling", "wis"}, + {"Insight", "wis"}, + {"Medicine", "wis"}, + {"Perception", "wis"}, + {"Survival", "wis"}, + {"Deception", "cha"}, + {"Intimidation", "cha"}, + {"Performance", "cha"}, + {"Persuasion", "cha"} + }; -static map> armor { + static map> armor { {"light", { - {"padded", 11}, - {"leather", 11}, - {"studded leather", 12} - }}, - {"medium", { - {"hide", 12}, - {"chain shirt", 13}, - {"scale mail", 14}, - {"breastplate", 14}, - {"half plate", 15} - }}, - {"heavy", { - {"ring mail", 14}, - {"chain mail", 16}, - {"splint", 17}, - {"plate", 18} + {"padded", 11}, + {"leather", 11}, + {"studded leather", 12} }}, - {"misc", { - {"shield", 2}, - {"ring of protection", 1} - }} -}; + {"medium", { + {"hide", 12}, + {"chain shirt", 13}, + {"scale mail", 14}, + {"breastplate", 14}, + {"half plate", 15} + }}, + {"heavy", { + {"ring mail", 14}, + {"chain mail", 16}, + {"splint", 17}, + {"plate", 18} + }}, + {"misc", { + {"shield", 2}, + {"ring of protection", 1} + }} + }; + +} -- cgit v1.2.3