first features implemented

This commit is contained in:
Ben Cook
2018-12-19 16:56:04 -05:00
parent db76a1924a
commit 0ed7262fc8
11 changed files with 317 additions and 16 deletions
+4
View File
@@ -88,4 +88,8 @@ class Skill():
is_proficient = self.skill_name in character.skill_proficiencies
if is_proficient:
modifier += character.proficiency_bonus
# Check for expertise
is_expert = self.skill_name in character.skill_expertise
if is_expert:
modifier += character.proficiency_bonus
return modifier