37 lines
622 B
C#

/*
* @Author: 白哉
* @Description:
* @Date: 2025年11月15日 星期五
* @Modify:
*/
using System;
using MemoryPack;
using RuntimeData;
namespace Logic.Skill
{
public partial class SuwakoMoveSkill : SkillBase
{
public SuwakoMoveSkill()
{
IsPermanent = true;
TurnsLimit = 0;
Score = 2;
}
public override SkillType GetSkillType()
{
return SkillType.SUWAKOMOVE;
}
public override bool IsLimitMoveToSelfTerrain(UnitData self, MapData mapData)
{
return true;
}
}
}