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