SamsaraGame/assets/Script/ts/game/skill/horse/low/QiGuanChangHong.ts
2025-04-24 17:03:28 +08:00

29 lines
1003 B
TypeScript

import {EAttrTypeL1, EHorsePASV} from "../../../../core/EEnum";
import SkillBase, {ActionType, ESkillQuality, ESkillType} from "../../core/SkillBase";
// 氣貫長虹
export default class QiGuanChangHong extends SkillBase {
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.QiGuanChangHong;
this.name = "氣貫長虹";
this.icon = "qgch";
this.desc = "增加忽視風、雷、水、火、鬼火";
this.effectDesc = "[E]增加忽視風、雷、水、火、鬼火{3}%";
this.effectMap = {
[EAttrTypeL1.HK_WIND]: { add: 1.57, index: 0 },
[EAttrTypeL1.HK_THUNDER]: { add: 1.57, index: 1 },
[EAttrTypeL1.HK_WATER]: { add: 1.57, index: 2 },
[EAttrTypeL1.HK_FIRE]: { add: 1.57, index: 3 },
[EAttrTypeL1.HK_WILDFIRE]: { add: 1.57, index: 4 },
};
this.attrDesc = "忽視";
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.LOW;
}
}