xy-server/game/skill/ofuda/AnShenDingPo2.ts
2025-04-23 09:34:08 +08:00

16 lines
538 B
TypeScript

import { ESkillType, EAttrTypeL1, EActionType, ESkillQuality } from "../../role/EEnum";
import SkillBase from "../core/SkillBase";
// 安神定魄・珍藏
export default class AnShenDingPo2 extends SkillBase {
constructor() {
super();
this.skill_id = ESkillType.AnShenDingPo2;
this.skill_name = "安神定魄・珍藏";
this.effectDesc = "三尸、鬼火每击中1个召唤兽则恢复自身气血";
this.action_type = EActionType.PASSIVE;
this.quality = ESkillQuality.HIGH;
}
}