TH1/Unity/Assets/Scripts/TH1_Logic/Skill/AllSkill/MeilingAttackUpSkill.cs
2026-03-29 11:31:43 +08:00

38 lines
756 B
C#

/*
* @Author: Generated
* @Description:
* @Date: 2026年03月29日
* @Modify:
*/
using RuntimeData;
namespace Logic.Skill
{
public partial class MeilingAttackUpSkill : SkillBase
{
public MeilingAttackUpSkill()
{
IsPermanent = false;
TurnsLimit = 1;
Score = 2;
}
public override SkillType GetSkillType()
{
return SkillType.MEILINGATTACKUP;
}
public override float GetAttackMultiplicationParam(MapData mapData, UnitData self, UnitData target = null)
{
return 1.5f;
}
public override bool ReservedOnTransform(UnitData self, UnitFullType fullType)
{
return true;
}
}
}