D&D 5e: Character Progression: Difference between revisions

From wikinotes
No edit summary
Line 20: Line 20:
</blockquote><!-- Basics -->
</blockquote><!-- Basics -->


= Creation =
= Abilities =
<blockquote>
== Abilities ==
<blockquote>
<blockquote>
<syntaxhighlight lang="yaml">
<syntaxhighlight lang="yaml">
# MIN=0, MAX=20
ABILITY_MOD = (POINTS // 2) - 5
ABILITY_MOD = (POINTS // 2) - 5
ABILITY_SCORE = POINTS + ABILITY_MOD
ABILITY_SCORE = POINTS + ABILITY_MOD
Line 40: Line 39:
</syntaxhighlight>
</syntaxhighlight>
</blockquote><!-- Abilities -->
</blockquote><!-- Abilities -->
</blockquote><!-- Creation -->

Revision as of 19:40, 3 July 2022

Basics

# Creation
- Abilities:   # Strength, Dexterity, Constitution, Intelligence, Wisdom, Charisma.
- Alignment:
- Ideals:
- Bonds:
- Flaws:

# Limits
- Armor Class:    10 + ${DEX}  # plus calculated armor
- Carry Capacity: 15 * ${STR}

# Inventory
- XP:
- GP:

Abilities

# MIN=0, MAX=20
ABILITY_MOD = (POINTS // 2) - 5
ABILITY_SCORE = POINTS + ABILITY_MOD

Sample Result

#  POINTS  MOD   FINAL
STR  15    (+2)  # 17
DEX  14    (+2)  # 16
CON  13    (+1)  # 14
INT  12    (+1)  # 13
WIS  10    (+0)  # 10
CHA   8    (-1)  #  7