D&D 5e: Core Mechanics: Difference between revisions

From wikinotes
No edit summary
Line 30: Line 30:
</syntaxhighlight>
</syntaxhighlight>
</blockquote><!-- Defend -->
</blockquote><!-- Defend -->
= Currency =
<blockquote>
<syntaxhighlight lang="yaml">
# gold, silver, copper
1GP == 10SP == 100CP
</syntaxhighlight>
</blockquote><!-- Currency -->

Revision as of 21:41, 3 July 2022

Dice

  • There are 6x dice: d4, d6, d8, d10, d12, d20
  • Classes are assigned a hit-die (HD) which may be d6-d12.
d6:  sorcerer, wizard
d8:  artificer, bard, cleric, druid, monk, rogue, warlock
d10: fighter, paladin
d12: barbarian

Attack

# conflicting info.
# manual says:
#  * 1d20 + ${WEAPON_PROFICIENCY}
#  * 1d${WEAPON_TYPE_DICE} + ${WEAPON_PROFICIENCY}
#
WEAPON_PROFICIENCY = ${STR_MODIFIER} + ${CLASS_PROFICIENCY_MODIFIER}

Defend

ARMOR_CLASS = 10 + ${DEX} # + ARMOR

Currency

# gold, silver, copper
1GP == 10SP == 100CP