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