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

From wikinotes
No edit summary
Line 14: Line 14:
<blockquote>
<blockquote>
<syntaxhighlight lang="yaml">
<syntaxhighlight lang="yaml">
 
ARMOR_CLASS = 10 + ${DEX} # + ARMOR
</syntaxhighlight>
</syntaxhighlight>
</blockquote><!-- Defend -->
</blockquote><!-- Defend -->

Revision as of 19:29, 3 July 2022

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