19 lines
608 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 GongWuBuKe2 extends SkillBase {
constructor() {
super();
this.id = ESkillType.GongWuBuKe2;
this.name = "攻無不克・珍藏";
this.icon = "76101";
this.effectDesc = "增加自身{0}%的攻擊屬性";
this.effectMap = {
[EAttrTypeL1.ATK_ADD]: { add: 10, index: 0 },
};
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.HIGH;
}
}