19 lines
578 B
TypeScript
19 lines
578 B
TypeScript
import { ESkillType, EAttrTypeL1, EActionType, ESkillQuality } from "../../role/EEnum";
|
|
import SkillBase from "../core/SkillBase";
|
|
|
|
// 沉着・无价
|
|
export default class ChenZhuo3 extends SkillBase {
|
|
|
|
constructor() {
|
|
super();
|
|
this.skill_id = ESkillType.ChenZhuo3;
|
|
this.skill_name = "沉着・无价";
|
|
this.effectDesc = "抗昏睡上限提高";
|
|
this.effectMap = {
|
|
[EAttrTypeL1.K_SLEEP]: { add: 15, index: 0 },
|
|
};
|
|
this.action_type = EActionType.PASSIVE;
|
|
this.quality = ESkillQuality.FINAL;
|
|
}
|
|
}
|