29 lines
909 B
TypeScript
Raw Normal View History

2025-04-24 17:03:28 +08:00
import { EAttrTypeL1 } from "../../../core/EEnum";
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../core/SkillBase";
import FactionTalent from "../../../FactionTalent";
// 克火・珍藏
export default class KeHuo2 extends SkillBase {
constructor() {
super();
this.id = ESkillType.KeHuo2;
this.name = "克火";
this.icon = "kh";
this.effectDesc = "增加強力克火";
this.effectMap = {
[EAttrTypeL1.S_FIRE]: { add: 10, index: 0 },
};
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.HIGH;
}
getDetail(info = null):string{
let factionTalentLevel = FactionTalent.Instance.factionTalentLevel;
let addition = factionTalentLevel * 0.2
if(info){
addition = (1 + (info.addition / 10)) * addition;
}
return `增加${addition}%強力克火`;
}
}