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