29 lines
1020 B
TypeScript
29 lines
1020 B
TypeScript
import {EAttrTypeL1, EHorsePASV} from "../../../../core/EEnum";
|
|
import SkillBase, {ActionType, ESkillQuality, ESkillType} from "../../core/SkillBase";
|
|
|
|
// 高級梅花三弄
|
|
export default class HighMeiHuaSanNong extends SkillBase {
|
|
constructor() {
|
|
super();
|
|
this.init();
|
|
}
|
|
|
|
init() {
|
|
this.id = ESkillType.HighMeiHuaSanNong;
|
|
this.name = "高級梅花三弄";
|
|
this.icon = "mhsn";
|
|
this.desc = "增加忽視風、雷、水、火、鬼火";
|
|
this.effectDesc = "[E]增加忽視風、雷、水、火、鬼火{3}%";
|
|
this.effectMap = {
|
|
[EAttrTypeL1.HK_WIND]: { add: 3.83, index: 0 },
|
|
[EAttrTypeL1.HK_THUNDER]: { add: 3.83, index: 1 },
|
|
[EAttrTypeL1.HK_WATER]: { add: 3.83, index: 2 },
|
|
[EAttrTypeL1.HK_FIRE]: { add: 3.83, index: 3 },
|
|
[EAttrTypeL1.HK_WILDFIRE]: { add: 3.83, index: 4 },
|
|
};
|
|
this.attrDesc = "忽視";
|
|
this.action_type = ActionType.PASSIVE;
|
|
this.quality = ESkillQuality.HIGH;
|
|
}
|
|
|
|
} |