示例#1
0
 public Skill(string name, Constants.SkillId id, int cooldown, TurnAction turnAction)
 {
     this.Name       = name;
     this.Id         = id;
     this.Cooldown   = cooldown;
     this.TurnAction = turnAction;
 }
 public Attack(string actorName, int actorTurn, double actorTurnMeter, Constants.SkillId skill, string skillName, Constants.SkillId expectedAISkill)
 {
     this.ActorName       = actorName;
     this.ActorTurn       = actorTurn;
     this.ActorTurnMeter  = actorTurnMeter;
     this.Skill           = skill;
     this.SkillName       = skillName;
     this.ExpectedAISkill = expectedAISkill;
 }