protected Character(string name, double health, double armor, double abilityPoints, Bag bag, Faction faction) { this.Name = name; this.BaseHealth = health; this.Health = health; this.BaseArmor = armor; this.Armor = armor; this.AbilityPoints = abilityPoints; this.Bag = bag; this.Faction = faction; }
public Cleric(string name, Faction faction) : base(name, baseHealth, baseArmor, abilityPoints, new Backpack(), faction) { }