26 lines
813 B
TypeScript
26 lines
813 B
TypeScript
import { EAttrTypeL1 } from "../../../../core/EEnum";
|
|
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../../core/SkillBase";
|
|
|
|
// 高級赤血青鋒
|
|
export default class HighChiXueQingFeng extends SkillBase {
|
|
constructor() {
|
|
super();
|
|
this.init();
|
|
}
|
|
|
|
init() {
|
|
this.id = ESkillType.HighChiXueQingFeng;
|
|
this.name = "高級赤血青鋒";
|
|
this.icon = 'cxqf';
|
|
this.desc = "增加氣血、狂暴率。";
|
|
this.effectDesc = "[B]增加氣血{0}%;[E]增加狂暴率{1}%";
|
|
this.effectMap = {
|
|
[EAttrTypeL1.HP_PERC]: { add: 3.5, index: 0 },
|
|
[EAttrTypeL1.PHY_DEADLY]: { add: 3.16, index: 1 },
|
|
};
|
|
this.attrDesc = "血 狂暴率";
|
|
this.action_type = ActionType.PASSIVE;
|
|
this.quality = ESkillQuality.HIGH;
|
|
}
|
|
|
|
} |