27 lines
925 B
TypeScript
27 lines
925 B
TypeScript
import { EAttrTypeL1 } from "../../../../core/EEnum";
|
|
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../../core/SkillBase";
|
|
|
|
// 高級怒劍狂花
|
|
export default class HighNuJianKuangHua extends SkillBase {
|
|
constructor() {
|
|
super();
|
|
this.init();
|
|
}
|
|
|
|
init() {
|
|
this.id = ESkillType.HighNuJianKuangHua;
|
|
this.name = "高級怒劍狂花";
|
|
this.icon = "njkh";
|
|
this.desc = "增加攻擊力、狂暴率、連擊率。";
|
|
this.effectDesc = "[A]增加攻擊力{0}%;[E]增加狂暴率{1}%;[E]增加連擊率{2}%";
|
|
this.effectMap = {
|
|
[EAttrTypeL1.ATK_PERC]: { add: 3.18, index: 0 },
|
|
[EAttrTypeL1.PHY_DEADLY]: { add: 3.5, index: 1 },
|
|
[EAttrTypeL1.PHY_COMBO_PROB]: { add: 3.18, index: 2 }
|
|
};
|
|
this.attrDesc = "攻 狂暴 連擊";
|
|
this.action_type = ActionType.PASSIVE;
|
|
this.quality = ESkillQuality.HIGH;
|
|
}
|
|
|
|
} |