SamsaraGame/assets/Script/ts/game/skill/low/BingLinChengXia.ts

22 lines
777 B
TypeScript
Raw Normal View History

2025-04-24 17:03:28 +08:00
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%最大法力值發動。 `;
}
}