checked new code works for create-character

This commit is contained in:
Ben Cook
2018-12-23 03:22:47 -05:00
parent 6c4589d03f
commit a83c49146c
25 changed files with 264 additions and 195 deletions
+3 -2
View File
@@ -116,13 +116,14 @@ class CollegeOfWhispers(SubClass):
class Bard(CharClass):
name = 'Bard'
hit_dice_faces = 8
subclass_select_level = 3
saving_throw_proficiencies = ('dexterity', 'charisma')
primary_abilities = ('charisma',)
_proficiencies_text = (
'Light armor', 'simple weapons', 'hand crossbows', 'longswords',
'rapiers', 'shortswords', 'three musical instruments of your choice')
weapon_proficiencies = ((weapons.HandCrossbow, weapons.Longsword,
weapons.Rapier, weapons.Shortsword) +
weapon_proficiencies = (weapons.HandCrossbow, weapons.Longsword,
weapons.Rapier, weapons.Shortsword,
weapons.SimpleWeapon)
class_skill_choices = ('Acrobatics', 'Animal Handling', 'Arcana',
'Athletics', 'Deception', 'History', 'Insight',