19 lines
680 B
TypeScript
19 lines
680 B
TypeScript
|
import { EAttrTypeL1 } from "../../../core/EEnum";
|
||
|
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../core/SkillBase";
|
||
|
|
||
|
// 鏤玉裁冰・珍藏
|
||
|
export default class LouYvCaiBing2 extends SkillBase {
|
||
|
constructor() {
|
||
|
super();
|
||
|
this.id = ESkillType.LouYvCaiBing2;
|
||
|
this.name = "鏤玉裁冰・珍藏";
|
||
|
this.icon = "71351";
|
||
|
this.effectDesc = " 每300點根骨增加1%忽視抗冰屬性";
|
||
|
this.effectMap = {
|
||
|
[EAttrTypeL1.ICE_EHAN]: { add: 7, index: 0 },
|
||
|
[EAttrTypeL1.HK_SEAL]: { add: 10, index: 1 },
|
||
|
};
|
||
|
this.action_type = ActionType.PASSIVE;
|
||
|
this.quality = ESkillQuality.HIGH;
|
||
|
}
|
||
|
}
|