Example #1
0
 public AbilityScores(int strength, int dexterity, int constitution, int intelligence, int wisdom, int charisma)
 {
     Strength     = new AttributeScore(strength);
     Dexterity    = new AttributeScore(dexterity);
     Constitution = new AttributeScore(constitution);
     Intelligence = new AttributeScore(intelligence);
     Wisdom       = new AttributeScore(wisdom);
     Charisma     = new AttributeScore(charisma);
 }
Example #2
0
 public AbilityScores()
 {
     Strength     = new AttributeScore();
     Dexterity    = new AttributeScore();
     Constitution = new AttributeScore();
     Intelligence = new AttributeScore();
     Wisdom       = new AttributeScore();
     Charisma     = new AttributeScore();
 }
Example #3
0
 public DefenseScores(int armorClass, int hitpoints)
 {
     ArmorClass = new AttributeScore(armorClass);
     HitPoints  = new HitPoints(hitpoints);
 }
Example #4
0
 public DefenseScores()
 {
     ArmorClass = new AttributeScore();
     HitPoints  = new HitPoints();
 }
Example #5
0
 public AttackScores(Weapon weapon, int baseAttackBonus)
 {
     Primary         = weapon;
     BaseAttackBonus = new AttributeScore(baseAttackBonus);
 }
Example #6
0
 public AttackScores(Weapon weapon, AttributeScore baseAttackBonus)
 {
     Primary         = weapon;
     BaseAttackBonus = baseAttackBonus;
 }
Example #7
0
 public AttackScores()
 {
     BaseAttackBonus = new AttributeScore(1);
 }