28 lines
975 B
TypeScript
28 lines
975 B
TypeScript
|
import { EAttrTypeL1 } from "../../../core/EEnum";
|
|||
|
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../core/SkillBase";
|
|||
|
import FactionTalent from "../../../FactionTalent";
|
|||
|
|
|||
|
// 擊水三千・無價
|
|||
|
export default class JiShuiSanQian3 extends SkillBase {
|
|||
|
constructor() {
|
|||
|
super();
|
|||
|
this.id = ESkillType.JiShuiSanQian3;
|
|||
|
this.name = "擊水三千";
|
|||
|
this.icon = "jssq";
|
|||
|
this.effectDesc = "每次釋放仙法、龍法、鬼火、毒攻擊時對目標造成當前生命值百分比的傷害(僅PVP)";
|
|||
|
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 `每次釋放仙法、龍法、鬼火、毒攻擊時對目標造成當前生命值百分比的傷害(僅PVP)`;
|
|||
|
}
|
|||
|
}
|