first commit

This commit is contained in:
2020-11-28 19:12:19 +01:00
commit c3a7388592
38 changed files with 3189 additions and 0 deletions

26
module/kh-config.js Normal file
View File

@@ -0,0 +1,26 @@
export const KH = {};
KH.armor_mod_types = {
"init": {
"value": "init",
"label": "MOD.INIT",
},
};
KH.armor_types = {
"light": {
"value": "light",
"label": "ARMOR.LIGHT",
"ac": 10,
},
"medium": {
"value": "medium",
"label": "ARMOR.MEDIUM",
"ac": 20,
},
"heavy": {
"value": "heavy",
"label": "ARMOR.HEAVY",
"ac": 30,
},
};