20 lines
676 B
TypeScript
20 lines
676 B
TypeScript
import {ESkillType, EAttrTypeL1, EActionType, ESkillQuality, EAttrTypeL2} from "../../role/EEnum";
|
|
import SkillBase from "../core/SkillBase";
|
|
|
|
// 镂玉裁冰・珍藏
|
|
export default class LouYvCaiBing2 extends SkillBase {
|
|
|
|
constructor() {
|
|
super();
|
|
this.skill_id = ESkillType.LouYvCaiBing2;
|
|
this.skill_name = "镂玉裁冰・珍藏";
|
|
this.effectDesc = "增加{0}%的忽视抗冰属性";
|
|
this.effectMap = {
|
|
[EAttrTypeL1.ICE_EHAN]: { add: 7, index: 0 },
|
|
[EAttrTypeL1.HK_SEAL]: { add: 10, index: 1 },
|
|
};
|
|
this.action_type = EActionType.PASSIVE;
|
|
this.quality = ESkillQuality.HIGH;
|
|
}
|
|
}
|