21 lines
679 B
TypeScript
21 lines
679 B
TypeScript
|
import { EAttrTypeL1 } from "../../../core/EEnum";
|
||
|
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../core/SkillBase";
|
||
|
|
||
|
// 醉生夢死・無價
|
||
|
export default class ZuiShengMengSi3 extends SkillBase {
|
||
|
|
||
|
constructor() {
|
||
|
super();
|
||
|
this.id = ESkillType.ZuiShengMengSi3;
|
||
|
this.name = "醉生夢死・無價";
|
||
|
this.icon = "zsms";
|
||
|
this.effectDesc = "增加自身{0}%的加強睡屬性";
|
||
|
this.effectMap = {
|
||
|
[EAttrTypeL1.K_SLEEP]: { add: 15, index: 0 },
|
||
|
[EAttrTypeL1.HK_SLEEP]: { add: 15, index: 0 },
|
||
|
};
|
||
|
this.action_type = ActionType.PASSIVE;
|
||
|
this.quality = ESkillQuality.FINAL;
|
||
|
}
|
||
|
}
|