From 11de786afea1e1788215f8dcb57cc056fac3fddd Mon Sep 17 00:00:00 2001 From: Martin Lehoux <martin@lehoux.net> Date: Fri, 15 Feb 2019 22:18:12 +0100 Subject: [PATCH] add config template --- .gitignore | 2 +- config.template.yml | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 config.template.yml diff --git a/.gitignore b/.gitignore index f7c4ce5..cc9a88a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ node_modules yarn.lock .vscode -config.json \ No newline at end of file +config.yml \ No newline at end of file diff --git a/config.template.yml b/config.template.yml new file mode 100644 index 0000000..b295004 --- /dev/null +++ b/config.template.yml @@ -0,0 +1,26 @@ +port: 3000 +secret: cf13b4c99b46f8cc07ca89146122b7aa +cryptRounds: 10 +maxActionPoints: 480 +initAttributesPoints: 15 +attributes: + - strength + - constitution + - dexterity + - intelligence + - wisdom + - charisma +costTable: + 7: -4 + 8: -2 + 9: -1 + 10: 0 + 11: 1 + 12: 2 + 13: 3 + 14: 5 + 15: 7 + 16: 10 + 17: 13 + 18: 17 +maxCharactersNumber: 4 \ No newline at end of file -- GitLab