20 lines
674 B
TypeScript
20 lines
674 B
TypeScript
|
import { ESkillType, EAttrTypeL1, EActionType, ESkillQuality } from "../../role/EEnum";
|
||
|
import SkillBase from "../core/SkillBase";
|
||
|
|
||
|
// 安适如常・无价
|
||
|
export default class AnShiRuChang3 extends SkillBase {
|
||
|
|
||
|
constructor() {
|
||
|
super();
|
||
|
this.skill_id = ESkillType.AnShiRuChang3;
|
||
|
this.skill_name = "安适如常・无价";
|
||
|
this.effectDesc = "增加自身{0}%的加强治愈属性";
|
||
|
this.effectMap = {
|
||
|
[EAttrTypeL1.CURE_EHAN]: { add: 30, index: 0 },
|
||
|
[EAttrTypeL1.MP_PERC]: { add: 20, index: 0 },
|
||
|
};
|
||
|
this.action_type = EActionType.PASSIVE;
|
||
|
this.quality = ESkillQuality.FINAL;
|
||
|
}
|
||
|
}
|