25 lines
833 B
TypeScript
25 lines
833 B
TypeScript
|
import { EAttrTypeL1 } from "../../../../core/EEnum";
|
||
|
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../../core/SkillBase";
|
||
|
// 高級疾風驟雨
|
||
|
export default class HighJiFengZhouYu extends SkillBase {
|
||
|
constructor() {
|
||
|
super();
|
||
|
this.init();
|
||
|
}
|
||
|
|
||
|
init() {
|
||
|
this.id = ESkillType.HighJiFengZhouYu;
|
||
|
this.name = "高級疾風驟雨";
|
||
|
this.icon = "jfzy";
|
||
|
this.desc = "增加攻擊力、大幅增加連擊率。";
|
||
|
this.effectDesc = "[A]增加攻擊力{0}%;[E]增加連擊率{1}%";
|
||
|
this.effectMap = {
|
||
|
[EAttrTypeL1.ATK_PERC]: { add: 3.83, index: 0 },
|
||
|
[EAttrTypeL1.PHY_REBOUND_PROB]: { add: 3.83, index: 0 }
|
||
|
};
|
||
|
this.attrDesc = "攻 連擊率";
|
||
|
this.action_type = ActionType.PASSIVE;
|
||
|
this.quality = ESkillQuality.HIGH;
|
||
|
}
|
||
|
|
||
|
}
|