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

19 lines
756 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { EAttrTypeL1 } from "../../../core/EEnum";
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../core/SkillBase";
// 鏤玉裁冰・珍藏
export default class LouYvCaiBing3 extends SkillBase {
constructor() {
super();
this.id = ESkillType.LouYvCaiBing3;
this.name = "鏤玉裁冰・珍藏";
this.icon = "71351";
this.effectDesc = "被冰單位脫冰時對周圍單位造成冰削濺射使得周圍單位2%概率進入冰封狀態持續1回合";
this.effectMap = {
[EAttrTypeL1.ICE_EHAN]: { add: 7, index: 0 },
[EAttrTypeL1.HK_SEAL]: { add: 10, index: 0 },
};
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.FINAL;
}
}