20 lines
805 B
TypeScript
20 lines
805 B
TypeScript
import { EAttrTypeL1 } from "../../../core/EEnum";
|
||
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../core/SkillBase";
|
||
|
||
// 忽如其來・珍藏
|
||
export default class HuRuQiLai2 extends SkillBase {
|
||
constructor() {
|
||
super();
|
||
this.id = ESkillType.HuRuQiLai2;
|
||
this.name = "忽如其來・珍藏";
|
||
this.icon = "71301";
|
||
this.effectDesc = "(仙法、鬼火)每8回合觸發一次法術傷害忽視值增加{0}%,使用後增益效果消失。";
|
||
this.effectMap = {
|
||
[EAttrTypeL1.HK_WILDFIRE]: { add: 60, index: 0 },
|
||
[EAttrTypeL1.HK_WATER]: { add: 60, index: 1 },
|
||
[EAttrTypeL1.HK_THUNDER]: { add: 60, index: 2 },
|
||
};
|
||
this.action_type = ActionType.PASSIVE;
|
||
this.quality = ESkillQuality.HIGH;
|
||
}
|
||
} |