Added character AC.

This commit is contained in:
raeleus 2024-10-05 23:52:16 -07:00
parent a8fbc6df5b
commit 09b404cbdc
3 changed files with 40 additions and 3 deletions

View file

@ -40,6 +40,7 @@ const modifier = (text) => {
text += `*** ${possessiveName.toUpperCase()} BIO ***\n`
text += `Class: ${character.className}\n`
text += `Health: ${character.health}/${getHealthMax()}\n`
text += `Armor Class: ${character.ac}\n`
text += `Experience: ${character.experience}\n`
text += `Level: ${getLevel(character.experience)}\n`
var nextLevel = getNextLevelXp(character.experience)