TH1/Unity/Assets/Scripts/TH1_Logic/Skill/AllSkill/TewiFrenchBuffSkill.cs
2025-09-12 19:26:15 +08:00

29 lines
508 B
C#

/*
* @Author: 白哉
* @Description:
* @Date: 2025年09月12日 星期四 17:09:18
* @Modify:
*/
using RuntimeData;
using System;
using MemoryPack;
namespace Logic.Skill
{
public partial class TewiFrenchBuffSkill : SkillBase
{
public TewiFrenchBuffSkill()
{
IsPermanent = true;
TurnsLimit = 0;
Score = 4;
}
public override SkillType GetSkillType()
{
return SkillType.TEWIFRENCHBUFF;
}
}
}