32 lines
558 B
C#
32 lines
558 B
C#
/*
|
|
* @Author: 白哉
|
|
* @Description:
|
|
* @Date: 2025年11月15日 星期五
|
|
* @Modify:
|
|
*/
|
|
|
|
|
|
using RuntimeData;
|
|
using TH1_Logic.Core;
|
|
|
|
|
|
//已废弃技能
|
|
namespace Logic.Skill
|
|
{
|
|
public partial class GridSanaeNineContinueDamageSkill : SkillBase
|
|
{
|
|
public GridSanaeNineContinueDamageSkill()
|
|
{
|
|
IsPermanent = false;
|
|
TurnsLimit = 3;
|
|
Score = 2;
|
|
}
|
|
|
|
public override SkillType GetSkillType()
|
|
{
|
|
return SkillType.GRIDSANAENINECONTINUEDAMAGE;
|
|
}
|
|
|
|
|
|
}
|
|
} |