0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-03 17:02:40 +00:00

Fixing spelling mistake

This commit is contained in:
Scott Tolksdorf
2016-11-10 10:54:00 -05:00
committed by GitHub
parent 58c67d7d4d
commit 8c4a6221e2

View File

@@ -19,8 +19,8 @@ module.exports = function(classname){
"#### Hit Points", "#### Hit Points",
"___", "___",
"- **Hit Dice:** 1d" + hitDie + " per " + classname + " level", "- **Hit Dice:** 1d" + hitDie + " per " + classname + " level",
"- **Hit Points at 1st Level:** " + hitDie + " + your Constituion modifier", "- **Hit Points at 1st Level:** " + hitDie + " + your Constitution modifier",
"- **Hit Points at Higher Levels:** 1d" + hitDie + " (or " + (hitDie/2 + 1) + ") + your Constituion modifier per " + classname + " level after 1st", "- **Hit Points at Higher Levels:** 1d" + hitDie + " (or " + (hitDie/2 + 1) + ") + your Constitution modifier per " + classname + " level after 1st",
"", "",
"#### Proficiencies", "#### Proficiencies",
"___", "___",
@@ -39,4 +39,4 @@ module.exports = function(classname){
"- " + (_.sample(["10 lint fluffs", "1 button", "a cherished lost sock"])), "- " + (_.sample(["10 lint fluffs", "1 button", "a cherished lost sock"])),
"\n\n\n" "\n\n\n"
].join('\n'); ].join('\n');
} }