27 lines
843 B
TypeScript
27 lines
843 B
TypeScript
import { EAttrTypeL1 } from "../../../core/EEnum";
|
||
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../core/SkillBase";
|
||
import FactionTalent from "../../../FactionTalent";
|
||
|
||
// 怒擊・無價
|
||
export default class NuJi3 extends SkillBase {
|
||
constructor() {
|
||
super();
|
||
this.id = ESkillType.NuJi3;
|
||
this.name = "怒擊";
|
||
this.icon = "nj";
|
||
this.effectDesc = "召喚獸蓄勢待發,第N回合出戰則攻擊力增加。";
|
||
this.action_type = ActionType.PASSIVE;
|
||
this.quality = ESkillQuality.FINAL;
|
||
}
|
||
getLevelData():any{
|
||
let factionTalentLevel = FactionTalent.Instance.factionTalentLevel;
|
||
return {
|
||
add: 7 + factionTalentLevel * 0.5,
|
||
}
|
||
}
|
||
|
||
getDetail():string{
|
||
return `召喚獸蓄勢待發,第N回合出戰則攻擊力增加。 `;
|
||
}
|
||
}
|