added multiclass proficiencies for all classes

This commit is contained in:
Ben Cook
2018-12-21 12:44:11 -05:00
parent 0dbe54605f
commit 66b08b57ea
13 changed files with 66 additions and 3 deletions
+3 -1
View File
@@ -100,9 +100,11 @@ class Barbarian(CharClass):
class_name = 'Barbarian'
hit_dice_faces = 12
saving_throw_proficiencies = ('strength', 'constitution')
weapon_proficiencies = (weapons.simple_weapons + weapons.martial_weapons)
_proficiencies_text = ('light armor', 'medium armor', 'shields',
'simple weapons', 'martial weapons')
weapon_proficiencies = (weapons.simple_weapons + weapons.martial_weapons)
multiclass_weapon_proficiencies = weapon_proficiencies
_multiclass_proficiencies_text = ('shields', 'simple weapons', 'martial weapons')
class_skill_choices = ('Animal Handling', 'Athletics',
'Intimidation', 'Nature', 'Perception', 'Survival')
subclasses_available = (BerserkerPath, TotemWarriorPath, BattleragerPath,