SamsaraGame/assets/Script/ts/game/skill/low/BingLinChengXia.ts
2025-04-24 17:03:28 +08:00

22 lines
777 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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%最大法力值發動。 `;
}
}