19 lines
716 B
TypeScript
19 lines
716 B
TypeScript
import { EAttrTypeL1 } from "../../../core/EEnum";
|
|
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../core/SkillBase";
|
|
|
|
// 夢斷魂離・珍藏
|
|
export default class MengDuanHunLi2 extends SkillBase {
|
|
constructor() {
|
|
super();
|
|
this.id = ESkillType.MengDuanHunLi2;
|
|
this.name = "夢斷魂離・珍藏";
|
|
this.icon = "1968";
|
|
this.effectDesc = "增加自身{0}%的加強睡屬性,增加自身{1}%忽視抗昏睡屬性";
|
|
this.effectMap = {
|
|
[EAttrTypeL1.SLEEP_EHAN]: { add: 7, index: 0 },
|
|
[EAttrTypeL1.HK_SLEEP]: { add: 10, index: 1 },
|
|
};
|
|
this.action_type = ActionType.PASSIVE;
|
|
this.quality = ESkillQuality.HIGH;
|
|
}
|
|
} |