20 lines
699 B
TypeScript
Raw Normal View History

2025-04-24 17:03:28 +08:00
import { EAttrTypeL1 } from "../../../core/EEnum";
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../core/SkillBase";
// 精疲力竭・把玩
export default class JingPiLiJie1 extends SkillBase {
constructor() {
super();
this.id = ESkillType.JingPiLiJie1;
this.name = "精疲力竭・把玩";
this.icon = "76301";
this.effectDesc = "增加自身{0}%的加強破甲屬性和加強震擊屬性";
this.effectMap = {
[EAttrTypeL1.BREAK_EHAN]: { add: 10, index: 0 },
[EAttrTypeL1.THUD_EHAN]: { add: 10, index: 1 },
};
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.LOW;
}
}