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