25 lines
699 B
TypeScript
Raw Normal View History

2025-04-24 17:03:28 +08:00
import { EAttrTypeL1 } from "../../../../core/EEnum";
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../../core/SkillBase";
// 百步穿楊
export default class BaiBuChuanYang extends SkillBase {
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.BaiBuChuanYang;
this.name = "百步穿楊";
this.icon = "bbcy";
this.desc = "大幅增加命中率。";
this.effectDesc = "[E]增加命中率{0}%";
this.effectMap = {
[EAttrTypeL1.PHY_HIT]: { add: 3.21, index: 0 }
};
this.attrDesc = "命中";
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.LOW;
}
}