28 lines
964 B
TypeScript
28 lines
964 B
TypeScript
import SkillBase, { AffectType,ESkillQuality, EAttackType, MagicType, ESkillType } from "../core/SkillBase";
|
||
|
||
// 威眇天下
|
||
export default class WeiMiaoTianXia extends SkillBase {
|
||
constructor() {
|
||
super();
|
||
this.init();
|
||
}
|
||
|
||
init() {
|
||
this.id = ESkillType.WeiMiaoTianXia;
|
||
this.name = '威眇天下';
|
||
this.icon = '10314';
|
||
this.desc = '對隨機2-3個目標造成一定物理傷害';
|
||
this.faXi = MagicType.Physics;
|
||
this.atkType = EAttackType.MELEE;
|
||
this.scale=AffectType.GROUP;
|
||
this.vecLevelExp = [1700, 13000];
|
||
this.quality = ESkillQuality.HIGH; //技能 品質
|
||
}
|
||
|
||
|
||
|
||
getDetail(): string {
|
||
|
||
return `對隨機2-3個目標造成一定物理傷害。虎符每次成功執行任意指令後,會切換“霸道”與“王道”的形態。 “王道”提升傷害抵抗、氣血上限;“霸道”提升傷害加深、攻擊力、降低仙法、物理、三尸抗性`;
|
||
}
|
||
} |