19 lines
756 B
TypeScript
Raw Normal View History

2025-04-24 17:03:28 +08:00
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;
}
}