30 lines
679 B
C#
30 lines
679 B
C#
/*
|
|
* @Author: 白哉
|
|
* @Description: 蓬莱山法国假月 - 有持续时间但不叠层的buff
|
|
* @Date: 2026年04月19日 星期日
|
|
* @Modify:
|
|
*/
|
|
|
|
using RuntimeData;
|
|
using System;
|
|
using MemoryPack;
|
|
|
|
namespace Logic.Skill
|
|
{
|
|
public partial class HouraisanFrenchFakeMoonSkill : SkillBase
|
|
{
|
|
public HouraisanFrenchFakeMoonSkill()
|
|
{
|
|
IsPermanent = false; // 有持续时间
|
|
TurnsLimit = 3; // 默认持续3回合
|
|
Score = 2;
|
|
IsLevelSkill = false; // 不叠层
|
|
}
|
|
|
|
public override SkillType GetSkillType()
|
|
{
|
|
return SkillType.HouraisanFrenchFakeMoon;
|
|
}
|
|
}
|
|
}
|