26 lines
838 B
TypeScript
26 lines
838 B
TypeScript
|
import { EAttrTypeL1 } from "../../../../core/EEnum";
|
||
|
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../../core/SkillBase";
|
||
|
|
||
|
// 高級枯木盤根
|
||
|
export default class HighKuMuPanGen extends SkillBase {
|
||
|
constructor() {
|
||
|
super();
|
||
|
this.init();
|
||
|
}
|
||
|
|
||
|
init() {
|
||
|
this.id = ESkillType.HighKuMuPanGen;
|
||
|
this.name = "高級枯木盤根";
|
||
|
this.icon = "kmpg";
|
||
|
this.desc = "減少15%的速度(固定),增加氣血。";
|
||
|
this.effectDesc = "[M]減少{0}%的速度(固定),增加氣血{1}%。";
|
||
|
this.effectMap = {
|
||
|
[EAttrTypeL1.SPD_PERC]: { add: -15, grade: 0, index: 0 },
|
||
|
[EAttrTypeL1.HP_PERC]: { add: 3.6, index: 1 },
|
||
|
};
|
||
|
this.attrDesc = "減速加血";
|
||
|
this.action_type = ActionType.PASSIVE;
|
||
|
this.quality = ESkillQuality.HIGH;
|
||
|
}
|
||
|
|
||
|
}
|