19 lines
672 B
TypeScript
Raw Permalink 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 YvPoYunHun3 extends SkillBase {
constructor() {
super();
this.id = ESkillType.YvPoYunHun3;
this.name = "雨魄雲魂・無價";
this.icon = "74331";
this.effectDesc = "增加自身{0}%的強遺忘屬性";
this.effectMap = {
[EAttrTypeL1.K_FORGET]: { add: 25, index: 0 },
[EAttrTypeL1.K_PHY_GET]: { add: 17, index: 1 },
};
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.FINAL;
}
}