20 lines
680 B
TypeScript
20 lines
680 B
TypeScript
import { ESkillType, EAttrTypeL1, EActionType, ESkillQuality } from "../../role/EEnum";
|
|
import SkillBase from "../core/SkillBase";
|
|
|
|
// 明鉴万里・无价
|
|
export default class MingJianWanLi3 extends SkillBase {
|
|
|
|
constructor() {
|
|
super();
|
|
this.skill_id = ESkillType.MingJianWanLi3;
|
|
this.skill_name = "明鉴万里・无价";
|
|
this.effectDesc = "增加反震率,反震程度";
|
|
this.effectMap = {
|
|
[EAttrTypeL1.PHY_REBOUND]: { add: 15, index: 0 },
|
|
[EAttrTypeL1.PHY_REBOUND_PROB]: { add: 15, index: 1 },
|
|
};
|
|
this.action_type = EActionType.PASSIVE;
|
|
this.quality = ESkillQuality.FINAL;
|
|
}
|
|
}
|