35 lines
569 B
C#
35 lines
569 B
C#
/*
|
|
* @Author: 白哉
|
|
* @Description:
|
|
* @Date: 2025年04月23日 星期三 21:04:18
|
|
* @Modify:
|
|
*/
|
|
|
|
|
|
using System;
|
|
using MemoryPack;
|
|
using MongoDB.Bson;
|
|
|
|
|
|
namespace Logic.Skill
|
|
{
|
|
public partial class SneakSkill : SkillBase
|
|
{
|
|
public SneakSkill()
|
|
{
|
|
IsPermanent = true;
|
|
TurnsLimit = 0;
|
|
Score = 2;
|
|
}
|
|
|
|
public override SkillType GetSkillType()
|
|
{
|
|
return SkillType.SNEAK;
|
|
}
|
|
|
|
public override bool IsIgnoreZOC()
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
} |