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