26 lines
801 B
TypeScript
26 lines
801 B
TypeScript
import { EAttrTypeL1 } from "../../../../core/EEnum";
|
|
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../../core/SkillBase";
|
|
|
|
// 斗轉星移
|
|
export default class DouZhuanXingYi extends SkillBase {
|
|
constructor() {
|
|
super();
|
|
this.init();
|
|
}
|
|
|
|
init() {
|
|
this.id = ESkillType.DouZhuanXingYi;
|
|
this.name = "斗轉星移";
|
|
this.icon = "dzxy";
|
|
this.desc = "增加氣血、反震程度。";
|
|
this.effectDesc = "[B]增加氣血{0}%;[E]增加反震程度{1}%";
|
|
this.effectMap = {
|
|
[EAttrTypeL1.HP_PERC]: { add: 1.7, index: 0 },
|
|
[EAttrTypeL1.PHY_REBOUND]: { add: 2.25, index: 1 }
|
|
};
|
|
this.attrDesc = "血 反震程度";
|
|
this.action_type = ActionType.PASSIVE;
|
|
this.quality = ESkillQuality.LOW;
|
|
}
|
|
|
|
} |