22 lines
777 B
TypeScript
22 lines
777 B
TypeScript
|
import SkillBase, { ActionType, AffectType, EAttackType, EffectPos, MagicType, ESkillType } from "../core/SkillBase";
|
|||
|
// 兵臨城下
|
|||
|
export default class BingLinChengXia extends SkillBase{
|
|||
|
constructor() {
|
|||
|
super();
|
|||
|
this.init();
|
|||
|
}
|
|||
|
|
|||
|
init() {
|
|||
|
this.id = ESkillType.BingLinChengXia;
|
|||
|
this.name = '兵臨城下';
|
|||
|
this.icon = "3001";
|
|||
|
this.desc = '使用技能後的當回合物理攻擊中,攻擊力提高到2.5倍,需消耗50%最大生命值和20%最大法力值發動。 ';
|
|||
|
this.particleEffect = '31205';
|
|||
|
this.atkType = EAttackType.MELEE;
|
|||
|
}
|
|||
|
|
|||
|
getDetail():string{
|
|||
|
return `使用技能後的當回合物理攻擊中,攻擊力提高到2.5倍,需消耗50%最大生命值和20%最大法力值發動。 `;
|
|||
|
}
|
|||
|
}
|