38 lines
756 B
C#
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;
|
|
}
|
|
}
|
|
}
|