2025-04-24 17:03:28 +08:00

30 lines
1.1 KiB
TypeScript

import { EAttrTypeL1 } from "../../../../core/EEnum";
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../../core/SkillBase";
// 星火燎原
export default class XingHuoLiaoYuan extends SkillBase {
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.XingHuoLiaoYuan;
this.name = "星火燎原";
this.icon = 'xhly';
this.desc = "增加火系狂暴率、忽視風雷水火鬼火。";
this.effectDesc = "[E]增加火系狂暴率{0}%;[E]增加忽視風、雷、水、火、鬼火{1}%";
this.effectMap = {
[EAttrTypeL1.KB_FIRE]: { add: 3.25, index: 0 },
[EAttrTypeL1.HK_WIND]: { add: 0.57, index: 1 },
[EAttrTypeL1.HK_THUNDER]: { add: 0.59, index: 2 },
[EAttrTypeL1.HK_WATER]: { add: 0.59, index: 3 },
[EAttrTypeL1.HK_FIRE]: { add: 0.59, index: 4 },
[EAttrTypeL1.HK_WILDFIRE]: { add: 0.59, index: 5 }
};
this.attrDesc = "火狂暴 忽視";
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.LOW;
}
}