17 lines
318 B
C#
17 lines
318 B
C#
using cfg;
|
||
/// <summary>
|
||
/// 超级冲刺,支持Dash
|
||
/// </summary>
|
||
public class EasterEggSpSkillData : FishSpSkillData<EasterEgg>
|
||
{
|
||
public override string FxDash()
|
||
{
|
||
return spSkill.DashFx;
|
||
}
|
||
public override string DashPerformanceFx()
|
||
{
|
||
return spSkill.DashPerformanceFx;
|
||
}
|
||
}
|
||
|