19 lines
736 B
TypeScript
19 lines
736 B
TypeScript
|
import { EAttrTypeL1 } from "../../../core/EEnum";
|
||
|
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../core/SkillBase";
|
||
|
|
||
|
// 玄妙神通・珍藏
|
||
|
export default class XuanMiaoShenTong2 extends SkillBase {
|
||
|
constructor() {
|
||
|
super();
|
||
|
this.id = ESkillType.XuanMiaoShenTong2;
|
||
|
this.name = "玄妙神通・珍藏";
|
||
|
this.icon = "73301";
|
||
|
this.effectDesc = "增加自身15%的加強加防屬性;被盤上的單位帶有10%脫困術效果";
|
||
|
this.effectMap = {
|
||
|
[EAttrTypeL1.DEFEND_ADD_EHAN]: { add: 15, index: 0 },
|
||
|
[EAttrTypeL1.DEFEND_ADD]: { add: 15, index: 1 },
|
||
|
};
|
||
|
this.action_type = ActionType.PASSIVE;
|
||
|
this.quality = ESkillQuality.HIGH;
|
||
|
}
|
||
|
}
|