xy-server/game/skill/horse/high/HighYiGongHuanYv.ts
2025-04-23 09:34:08 +08:00

18 lines
637 B
TypeScript

import { ESkillType, EAttrTypeL1, EActionType, ESkillQuality } from "../../../role/EEnum";
import SkillBase from "../../core/SkillBase";
// 高级移宫换羽
export default class HighYiGongHuanYv extends SkillBase {
constructor() {
super();
this.skill_id = ESkillType.HighYiGongHuanYv;
this.skill_name = "高级移宫换羽";
this.effectDesc = "收到伤害时有3.76%的概率将伤害值降为1点";
this.effectMap = {
[EAttrTypeL1.HK_WIND]: { add: 3.76, index: 0 },
};
this.action_type = EActionType.PASSIVE;
this.quality = ESkillQuality.HIGH;
}
}