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

28 lines
469 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>
/// 脏污卡住,支持Struggle技能结束后结束
/// </summary>
public class DirtyStuckSpSkillData : FishSpSkillData<DirtyStuck>
{
#region UI
public override BarTarget GetBarTarget()
{
BarTarget barTarget = new BarTarget();
barTarget.CorruptBarDecPercent = spSkill.StuckBarDecParam;
return barTarget;
}
#endregion
#region Jump
#endregion
#region Struggle
#endregion
}