19 lines
681 B
TypeScript
19 lines
681 B
TypeScript
import { EAttrTypeL1 } from "../../../core/EEnum";
|
|
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../core/SkillBase";
|
|
|
|
// 劈風斬浪・珍藏
|
|
export default class PiFengZhanLang2 extends SkillBase {
|
|
constructor() {
|
|
super();
|
|
this.id = ESkillType.PiFengZhanLang2;
|
|
this.name = "劈風斬浪・珍藏";
|
|
this.icon = "2878";
|
|
this.effectDesc = "增加自身{0}%的加強橫掃屬性";
|
|
this.effectMap = {
|
|
[EAttrTypeL1.SWEEP_EHAN]: { add: 20, index: 0 },
|
|
[EAttrTypeL1.HP_PERC]: { add: 20, index: 1 },
|
|
};
|
|
this.action_type = ActionType.PASSIVE;
|
|
this.quality = ESkillQuality.HIGH;
|
|
}
|
|
} |