Example #1
0
 public Skill(string name, Ability.AbilityType asset, string descr)
     : this()
 {
     this.name = name;
     this.asset = asset;
     this.description = descr;
 }
Example #2
0
 public PlayerCharacter()
 {
     this.charisma = new Ability(Ability.AbilityType.CHARISMA, 0);
     this.logic = new Ability(Ability.AbilityType.LOGIC, 0);
     this.perception = new Ability(Ability.AbilityType.PERCEPTION, 0);
     this.power = new Ability(Ability.AbilityType.POWER, 0);
     this.speed = new Ability(Ability.AbilityType.SPEED, 0);
     this.stamina = new Ability(Ability.AbilityType.STAMINA, 0);
     this.strength = new Ability(Ability.AbilityType.STRENGTH, 0);
     this.willpower = new Ability(Ability.AbilityType.WILLPOWER, 0);
 }