27 lines
826 B
TypeScript
27 lines
826 B
TypeScript
import { EAttrTypeL1 } from "../../../core/EEnum";
|
||
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../core/SkillBase";
|
||
import FactionTalent from "../../../FactionTalent";
|
||
|
||
// 固本・無價
|
||
export default class GuBen3 extends SkillBase {
|
||
constructor() {
|
||
super();
|
||
this.id = ESkillType.GuBen3;
|
||
this.name = "固本";
|
||
this.icon = "gb";
|
||
this.effectDesc = "召喚獸每存活1回合,增加冰混睡忘抗性";
|
||
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 `召喚獸每存活1回合,增加冰混睡忘抗性`;
|
||
}
|
||
}
|