29 lines
477 B
C#
29 lines
477 B
C#
/*
|
|
* @Author: 白哉
|
|
* @Description: 勇仪突进技能
|
|
* @Date: 2026年03月09日
|
|
* @Modify:
|
|
*/
|
|
|
|
using RuntimeData;
|
|
using MemoryPack;
|
|
|
|
namespace Logic.Skill
|
|
{
|
|
public partial class YuugiDashSkill : SkillBase
|
|
{
|
|
public YuugiDashSkill()
|
|
{
|
|
IsPermanent = true;
|
|
TurnsLimit = 0;
|
|
Score = 4;
|
|
}
|
|
|
|
public override SkillType GetSkillType()
|
|
{
|
|
return SkillType.YuugiDash;
|
|
}
|
|
}
|
|
}
|
|
|