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

35 lines
683 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: 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;
}
}
}