28 lines
915 B
TypeScript
28 lines
915 B
TypeScript
|
import { EAttrTypeL1 } from "../../../core/EEnum";
|
||
|
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../core/SkillBase";
|
||
|
import FactionTalent from "../../../FactionTalent";
|
||
|
|
||
|
// 陌上開花・無價
|
||
|
export default class MoShangKaiHua3 extends SkillBase {
|
||
|
constructor() {
|
||
|
super();
|
||
|
this.id = ESkillType.MoShangKaiHua3;
|
||
|
this.name = "陌上開花";
|
||
|
this.icon = "mskh";
|
||
|
this.effectDesc = "每次釋放師門法術有機率對敵方進行一次普通攻擊,目標隨機";
|
||
|
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 `每次釋放師門法術有機率對敵方進行一次普通攻擊,目標隨機`;
|
||
|
}
|
||
|
}
|