29 lines
508 B
C#
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;
|
|
}
|
|
}
|
|
}
|