30 lines
489 B
C#
30 lines
489 B
C#
/*
|
|
* @Author: 白哉
|
|
* @Description:
|
|
* @Date: 2025年10月12日 星期六 10:10:12
|
|
* @Modify:
|
|
*/
|
|
|
|
|
|
using System;
|
|
using MemoryPack;
|
|
|
|
|
|
namespace Logic.Skill
|
|
{
|
|
public partial class RemiliaHunterSkill : SkillBase
|
|
{
|
|
public RemiliaHunterSkill()
|
|
{
|
|
IsPermanent = false;
|
|
TurnsLimit = 1;
|
|
Score = 2;
|
|
}
|
|
|
|
public override SkillType GetSkillType()
|
|
{
|
|
return SkillType.REMILIAHUNTER;
|
|
}
|
|
}
|
|
}
|