2025-04-24 17:03:28 +08:00

28 lines
997 B
TypeScript

import { EAttrTypeL1 } from "../../../../core/EEnum";
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../../core/SkillBase";
// 神樞鬼藏
export default class ShenShuGuiCang extends SkillBase {
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.ShenShuGuiCang;
this.name = "神樞鬼藏";
this.icon = 'ssgc';
this.desc = "增加氣血、攻擊率、抗三尸、抗鬼火。";
this.effectDesc = "[B]增加氣血0.42%;[A]增加攻擊力1.08%;[E]增加抗三尸1.41%;[E]增加抗鬼火0.75%";
this.effectMap = {
[EAttrTypeL1.HP_PERC]: { add: 1.42, index: 0 },
[EAttrTypeL1.ATK_PERC]: { add: 2.08, index: 1 },
[EAttrTypeL1.K_BLOODRETURN]: { add: 2.41, index: 2 },
[EAttrTypeL1.K_WILDFIRE]: { add: 1.75, index: 3 }
};
this.attrDesc = "血 攻 抗鬼法";
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.LOW;
}
}