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

25 lines
797 B
TypeScript

import {EAttrTypeL1, EHorsePASV} from "../../../../core/EEnum";
import SkillBase, {ActionType, ESkillQuality, ESkillType} from "../../core/SkillBase";
// 高級乘奔御風
export default class HighChengBenYvFeng extends SkillBase {
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.HighChengBenYvFeng;
this.name = "高級乘奔御風";
this.icon = "cbyf";
this.desc = "增加速度。額外增加坐騎移動速度";
this.effectDesc = "[S]增加速度{0}%;";
this.effectMap = {
[EAttrTypeL1.SPD_PERC]: {add: 3, index: 0, rsa:"HighChengBenYvFeng",pasv: EHorsePASV.Percenta},
};
this.attrDesc = "速 攻";
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.HIGH;
}
}