34 lines
545 B
C#
34 lines
545 B
C#
/*
|
|
* @Author: 白哉
|
|
* @Description:
|
|
* @Date: 2025年11月15日 星期五
|
|
* @Modify:
|
|
*/
|
|
|
|
|
|
using System;
|
|
using MemoryPack;
|
|
using RuntimeData;
|
|
using TH1_Logic.Core;
|
|
|
|
|
|
//废弃技能
|
|
namespace Logic.Skill
|
|
{
|
|
public partial class SuwakoHebiAttackSkill : SkillBase
|
|
{
|
|
public SuwakoHebiAttackSkill()
|
|
{
|
|
IsPermanent = true;
|
|
TurnsLimit = 0;
|
|
Score = 2;
|
|
}
|
|
|
|
public override SkillType GetSkillType()
|
|
{
|
|
return SkillType.SUWAKOHEBIATTACK;
|
|
}
|
|
}
|
|
}
|
|
|