18 lines
611 B
TypeScript
18 lines
611 B
TypeScript
import { EAttrTypeL1 } from "../../../core/EEnum";
|
|
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../core/SkillBase";
|
|
|
|
// 雨魄雲魂・珍藏
|
|
export default class YvPoYunHun2 extends SkillBase {
|
|
constructor() {
|
|
super();
|
|
this.id = ESkillType.YvPoYunHun2;
|
|
this.name = "雨魄雲魂・珍藏";
|
|
this.icon = "74331";
|
|
this.effectDesc = "增加自身{0}%的強遺忘屬性";
|
|
this.effectMap = {
|
|
[EAttrTypeL1.K_FORGET]: { add: 17, index: 0 },
|
|
};
|
|
this.action_type = ActionType.PASSIVE;
|
|
this.quality = ESkillQuality.HIGH;
|
|
}
|
|
} |