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

27 lines
932 B
TypeScript

import { EAttrTypeL1 } from "../../../../core/EEnum";
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../../core/SkillBase";
// 高級追魂奪命
export default class HighZhuiHunDuoMing extends SkillBase {
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.HighZhuiHunDuoMing;
this.name = "高級追魂奪命";
this.icon = 'zhdm';
this.desc = "增加速度(少量)、命中率、連擊率。";
this.effectDesc = "[S]增加速度{0}%;[E]增加命中率{1}%;[E]增加連擊率{2}%";
this.effectMap = {
[EAttrTypeL1.SPD_PERC]: { add: 2.5, index: 0 },
[EAttrTypeL1.PHY_HIT]: { add: 3.24, index: 1 },
[EAttrTypeL1.PHY_COMBO_PROB]: { add: 3.24, index: 2 }
};
this.attrDesc = "減速 命中 連擊率";
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.HIGH;
}
}