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

18 lines
627 B
TypeScript

import { ESkillType, EAttrTypeL1, EActionType, ESkillQuality } from "../../../role/EEnum";
import SkillBase from "../../core/SkillBase";
// 高级恨水决
export default class HighHenShuiJue extends SkillBase {
constructor() {
super();
this.skill_id = ESkillType.HighHenShuiJue;
this.skill_name = "高级恨水决";
this.effectDesc = "若对方水五行>=50,则物理伤害额外增加{0}%";
this.effectMap = {
[EAttrTypeL1.HK_WIND]: { add: 6.05, index: 0 },
};
this.action_type = EActionType.PASSIVE;
this.quality = ESkillQuality.HIGH;
}
}