34 lines
652 B
C#
34 lines
652 B
C#
/*
|
||
* @Author: 白哉
|
||
* @Description:
|
||
* @Date: 2025年04月23日 星期三 21:04:18
|
||
* @Modify:
|
||
*/
|
||
|
||
|
||
using RuntimeData;
|
||
using MemoryPack;
|
||
|
||
|
||
namespace Logic.Skill
|
||
{
|
||
public partial class BambooMoveSkill : SkillBase
|
||
{
|
||
public BambooMoveSkill()
|
||
{
|
||
IsPermanent = true;
|
||
TurnsLimit = 0;
|
||
}
|
||
|
||
public override SkillType GetSkillType()
|
||
{
|
||
return SkillType.BAMBOOMOVE;
|
||
}
|
||
|
||
// 无视森林(Trees 植被)带来的移动减损
|
||
public override bool IsIgnoreForestMoveDebuff(UnitData self, MapData mapData)
|
||
{
|
||
return true;
|
||
}
|
||
}
|
||
} |