Files
MinFt/Client/Assets/Scripts/GampPlay/FishSkill/ElectricShockSpSkillData.cs
2026-04-27 12:07:32 +08:00

47 lines
752 B
C#
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.
using cfg;
/// <summary>
/// 电击只支持Jump跳起状态生效
/// </summary>
public class ElectricShockSpSkillData : FishSpSkillData<ElectricShock>
{
public override string AudioScreen()
{
return spSkill.AudioScreen;
}
public override string AudioRewardFish()
{
return spSkill.AudioRewardFish;
}
#region UI
public override string FxScreen()
{
return spSkill.FxScreen;
}
public override string FxBar()
{
return spSkill.FxBar;
}
public override string FxFishIcon()
{
return spSkill.FxFishIcon;
}
#endregion
#region Jump
public override string FxFishJump()
{
return spSkill.FxFish;
}
#endregion
}