Ejemplo n.º 1
0
 public UnitSkillData(string eName, string cName, int costMP, int costHP, string description, int skillRange, int hoverRange, int skillRate, UnitSkill.ComboType comboType, UnitSkill.SkillType skillType, UnitSkill.SkillClass skillClass, UnitSkill.RangeType rangeType, int animID) : base(eName, cName)
 {
     this.costMP      = costMP;
     this.costHP      = costHP;
     this.description = description;
     this.skillRange  = skillRange;
     this.hoverRange  = hoverRange;
     this.skillRate   = skillRate;
     this.comboType   = comboType;
     this.skillType   = skillType;
     this.skillClass  = skillClass;
     this.rangeType   = rangeType;
     this.animID      = animID;
 }
Ejemplo n.º 2
0
 public AttackSkillData(string eName, string cName, int costMP, int costHP, string description, int skillRange, int hoverRange, int skillRate, UnitSkill.ComboType comboType, UnitSkill.SkillType skillType, UnitSkill.SkillClass skillClass, UnitSkill.RangeType rangeType, int animID, int damageFactor, int hit, int extraCrit, int extraPounce) : base(eName, cName, costMP, costHP, description, skillRange, hoverRange, skillRate, comboType, skillType, skillClass, rangeType, animID)
 {
     this.damageFactor = damageFactor;
     this.hit          = hit;
     this.extraCrit    = extraCrit;
     this.extraPounce  = extraPounce;
 }