SamsaraGame/assets/Script/ts/game/skill/ofuda/JiShuiSanQian3.ts
2025-04-24 17:03:28 +08:00

28 lines
975 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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`;
}
}