16 lines
488 B
TypeScript
16 lines
488 B
TypeScript
import { ESkillType, EAttrTypeL1, EActionType, ESkillQuality } from "../../role/EEnum";
|
|
import SkillBase from "../core/SkillBase";
|
|
|
|
// 护主・无价
|
|
export default class HuZhu3 extends SkillBase {
|
|
|
|
constructor() {
|
|
super();
|
|
this.skill_id = ESkillType.HuZhu3;
|
|
this.skill_name = "护主・无价";
|
|
this.effectDesc = "召唤兽离场恢复主人气血";
|
|
this.action_type = EActionType.PASSIVE;
|
|
this.quality = ESkillQuality.FINAL;
|
|
}
|
|
}
|