2025-04-24 17:03:28 +08:00

20 lines
644 B
TypeScript

import { EAttrTypeL1 } from "../../../core/EEnum";
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../core/SkillBase";
// 幻影如風・珍藏
export default class HuanYingRuFeng2 extends SkillBase {
constructor() {
super();
this.id = ESkillType.HuanYingRuFeng2;
this.name = "幻影如風・珍藏";
this.icon = "hyrf";
this.effectDesc = "普通攻擊有60%機率帶有分裂效果(最多分3個)";
this.effectMap = {
[EAttrTypeL1.PHY_DODGE]: { add: 40, index: 0 },
};
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.HIGH;
}
}