18 lines
557 B
TypeScript
18 lines
557 B
TypeScript
import { ESkillType, EAttrTypeL1, EActionType, ESkillQuality } from "../../../role/EEnum";
|
|
import SkillBase from "../../core/SkillBase";
|
|
|
|
// 移宫换羽
|
|
export default class YiGongHuanYv extends SkillBase {
|
|
constructor() {
|
|
super();
|
|
this.skill_id = ESkillType.YiGongHuanYv;
|
|
this.skill_name = "移宫换羽";
|
|
this.effectDesc = "收到伤害时有2.23%的概率将伤害值降为1点";
|
|
this.effectMap = {
|
|
|
|
};
|
|
this.action_type = EActionType.PASSIVE;
|
|
this.quality = ESkillQuality.LOW;
|
|
}
|
|
}
|