33 lines
581 B
C#
33 lines
581 B
C#
/*
|
|
* @Author: 白哉
|
|
* @Description: 空延迟行动技能
|
|
* @Date: 2026年03月06日
|
|
* @Modify:
|
|
*/
|
|
|
|
using RuntimeData;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using MemoryPack;
|
|
using UnityEngine;
|
|
|
|
namespace Logic.Skill
|
|
{
|
|
public partial class UtsuhoDelayActSkill : SkillBase
|
|
{
|
|
public UtsuhoDelayActSkill()
|
|
{
|
|
IsPermanent = true;
|
|
TurnsLimit = 0;
|
|
Score = 4;
|
|
}
|
|
|
|
public override SkillType GetSkillType()
|
|
{
|
|
return SkillType.UtsuhoDelayAct;
|
|
}
|
|
}
|
|
}
|
|
|