25 lines
1.0 KiB
TypeScript
25 lines
1.0 KiB
TypeScript
import { ESkillType, EAttrTypeL1, EActionType, ESkillQuality } from "../../../role/EEnum";
|
|
import SkillBase from "../../core/SkillBase";
|
|
|
|
// 暮霭沉沉
|
|
export default class MuAiChenChen extends SkillBase {
|
|
|
|
constructor() {
|
|
super();
|
|
this.skill_id = ESkillType.MuAiChenChen;
|
|
this.skill_name = "暮霭沉沉";
|
|
this.effectDesc = "[M]减少{0}%的速度(固定),增加法力{1}%;[E]增加忽视风、雷、水、火、鬼火{2}%";
|
|
this.effectMap = {
|
|
[EAttrTypeL1.SPD_PERC]: { add: -20, grade: 0, index: 0 },
|
|
[EAttrTypeL1.MP_PERC]: { add: 2.49, index: 1 },
|
|
[EAttrTypeL1.HK_WIND]: { add: 0.57, index: 2 },
|
|
[EAttrTypeL1.HK_THUNDER]: { add: 0.57, index: 3 },
|
|
[EAttrTypeL1.HK_WATER]: { add: 0.57, index: 4 },
|
|
[EAttrTypeL1.HK_FIRE]: { add: 0.57, index: 5 },
|
|
[EAttrTypeL1.HK_WILDFIRE]: { add: 0.57, index: 6 }
|
|
};
|
|
this.action_type = EActionType.PASSIVE;
|
|
this.quality = ESkillQuality.LOW;
|
|
}
|
|
}
|