SamsaraGame/assets/Script/ts/game/skill/horse/high/HighBaiBuChuanYang.ts
2025-04-24 17:03:28 +08:00

25 lines
719 B
TypeScript

import { EAttrTypeL1 } from "../../../../core/EEnum";
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../../core/SkillBase";
// 高級百步穿楊
export default class HighBaiBuChuanYang extends SkillBase {
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.HighBaiBuChuanYang;
this.name = "高級百步穿楊";
this.icon = "bbcy";
this.desc = "大幅增加命中率。";
this.effectDesc = "[E]增加命中率{0}%";
this.effectMap = {
[EAttrTypeL1.PHY_HIT]: { add: 4.7, index: 0 }
};
this.attrDesc = "命中";
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.HIGH;
}
}