TH1/Unity/Assets/Scripts/TH1_Logic/Skill/AllSkill/ScarletMistRealTimeVampireDebuffSkill.cs

31 lines
579 B
C#

/*
* @Author: 白哉
* @Description:
* @Date: 2025年04月23日 星期三 21:04:18
* @Modify:
*/
using RuntimeData;
using System;
using UnityEngine;
using MemoryPack;
using TH1Renderer;
namespace Logic.Skill
{
public partial class ScarletMistRealTimeVampireDebuffSkill : SkillBase
{
public ScarletMistRealTimeVampireDebuffSkill()
{
IsPermanent = false;
TurnsLimit = 0;
}
public override SkillType GetSkillType()
{
return SkillType.ScarletMistRealTimeVampireDebuff;
}
}
}