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/rules.h | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 src/rules.h (limited to 'src/rules.h') diff --git a/src/rules.h b/src/rules.h new file mode 100644 index 0000000..d61b176 --- /dev/null +++ b/src/rules.h @@ -0,0 +1,53 @@ +#pragma once +#include +#include + +using namespace std; + +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"} +}; + +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} + }}, + {"misc", { + {"shield", 2}, + {"ring of protection", 1} + }} +}; -- cgit v1.2.3