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

20 lines
679 B
TypeScript

import { EAttrTypeL1 } from "../../../core/EEnum";
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../core/SkillBase";
// 安適如常・無價
export default class AnShiRuChang3 extends SkillBase {
constructor() {
super();
this.id = ESkillType.AnShiRuChang3;
this.name = "安適如常・無價";
this.icon = "76201";
this.effectDesc = "增加自身{0}%的加強治愈屬性";
this.effectMap = {
[EAttrTypeL1.CURE_EHAN]: { add: 30, index: 0 },
[EAttrTypeL1.MP_PERC]: { add: 20, index: 1 },
};
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.FINAL;
}
}