import { ESkillType, EActionType, ESkillQuality } from "../../role/EEnum"; import SkillBase from "../core/SkillBase"; //技能效果:提升召唤兽伤害加深属性 export default class ZhanShenFaMing extends SkillBase { constructor() { super(); this.skill_id = ESkillType.ZhanShenFaMing; this.skill_name = '戕身伐命'; this.action_type = EActionType.PASSIVE; this.kind = ESkillType.ZhanShenFaMing; this.quality = ESkillQuality.FINAL; } }