29 lines
519 B
C#
29 lines
519 B
C#
/*
|
|
* @Author: 白哉
|
|
* @Description: 空准备移动强化技能
|
|
* @Date: 2026年03月09日
|
|
* @Modify:
|
|
*/
|
|
|
|
using RuntimeData;
|
|
using MemoryPack;
|
|
|
|
namespace Logic.Skill
|
|
{
|
|
public partial class UtsuhoReadyMoveSuperSkill : SkillBase
|
|
{
|
|
public UtsuhoReadyMoveSuperSkill()
|
|
{
|
|
IsPermanent = true;
|
|
TurnsLimit = 0;
|
|
Score = 4;
|
|
}
|
|
|
|
public override SkillType GetSkillType()
|
|
{
|
|
return SkillType.UtsuhoReadyMoveSuper;
|
|
}
|
|
}
|
|
}
|
|
|