2025-04-24 17:03:28 +08:00

18 lines
619 B
TypeScript

import { EAttrTypeL1 } from "../../../core/EEnum";
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../core/SkillBase";
// 返本修古・把玩
export default class FanBenXiuGu1 extends SkillBase {
constructor() {
super();
this.id = ESkillType.FanBenXiuGu1;
this.name = "返本修古・把玩";
this.icon = "74201";
this.effectDesc = "增加自身{0}%的強三尸屬性";
this.effectMap = {
[EAttrTypeL1.BLOODRETURN_EHAN]: { add: 8, index: 0 },
};
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.LOW;
}
}