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

From wikinotes
Line 24: Line 24:
== Abilities ==
== Abilities ==
<blockquote>
<blockquote>
Ability Modifiers
<syntaxhighlight lang="python">
# Ability modifiers are bonuses/penalties based on your skill-level
# ex. an ability of 1, has a modifier of (-5).
#    the final value being '-4'
#
# Formula:
(${LVL} // 2) - 5
</syntaxhighlight>
Race Bonuses
<syntaxhighlight lang="yaml">
<syntaxhighlight lang="yaml">
# BEFORE vs AFTER initial assignment
ABILITY_MOD = (POINTS // 2) - 5
ABILITY_SCORE = POINTS + ABILITY_MOD
</syntaxhighlight>
</syntaxhighlight>


Final Result
Sample Result
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
STR 15 (+2)  # 17
#  POINTS  MOD  FINAL
DEX 14 (+2)  # 16
STR 15   (+2)  # 17
CON 13 (+1)  # 14
DEX 14   (+2)  # 16
INT 12 (+1)  # 13
CON 13   (+1)  # 14
WIS 10 (+0)  # 10
INT 12   (+1)  # 13
CHA 8 (-1)  #  7
WIS 10   (+0)  # 10
CHA   8   (-1)  #  7
</syntaxhighlight>
</syntaxhighlight>
</blockquote><!-- Abilities -->
</blockquote><!-- Abilities -->
</blockquote><!-- Creation -->
</blockquote><!-- Creation -->

Revision as of 19:39, 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:

Creation

Abilities

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