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

26 lines
808 B
TypeScript

import {EAttrTypeL1, EHorsePASV} from "../../../../core/EEnum";
import SkillBase, {ActionType, ESkillQuality, ESkillType} from "../../core/SkillBase";
// 左右逢源
export default class ZuoYouFengYuan extends SkillBase {
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.ZuoYouFengYuan;
this.name = "左右逢源";
this.icon = "zyfy";
this.desc = "氣血法力相互加成";
this.effectDesc = "[E]氣血法力相互加成,分別增加彼此的{0}%";
this.effectMap = {
[EAttrTypeL1.HP_PERC]: { add: 2.03, index: 0 },
[EAttrTypeL1.MP_PERC]: { add: 2.03, index: 0 },
};
this.attrDesc = "氣血、法力";
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.LOW;
}
}