2026-05-06 14:55:18 +08:00

34 lines
652 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.

/*
* @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;
}
}
}