27 lines
884 B
TypeScript
27 lines
884 B
TypeScript
import { EAttrTypeL1 } from "../../../../core/EEnum";
|
|
import SkillBase, { ActionType, ESkillType, ESkillQuality } from "../../core/SkillBase";
|
|
|
|
// 傲雪凌霜
|
|
export default class AoXueLingShuang extends SkillBase {
|
|
constructor() {
|
|
super();
|
|
this.init();
|
|
}
|
|
|
|
init() {
|
|
this.id = ESkillType.AoXueLingShuang;
|
|
this.name = "傲雪凌霜";
|
|
this.icon = "axls";
|
|
this.desc = "增加氣血、抗混亂、抗遺忘。";
|
|
this.effectDesc = "[B]增加氣血{0}%;[E]增加抗混亂{1}%;[E]抗遺忘{2}%";
|
|
this.effectMap = {
|
|
[EAttrTypeL1.HP_PERC]: { add: 1.3, index: 0 },
|
|
[EAttrTypeL1.K_CONFUSION]: { add: 1.4, index: 1 },
|
|
[EAttrTypeL1.K_FORGET]: { add: 1.35, index: 2 },
|
|
};
|
|
this.attrDesc = "血 抗混忘";
|
|
this.action_type = ActionType.PASSIVE;
|
|
this.quality = ESkillQuality.LOW;
|
|
}
|
|
|
|
} |