2022-01-05 15:43:08 +03:00

28 lines
568 B
C#

using System;
using Data;
using HexFiled;
namespace Items
{
public class AttackBonus : Item
{
public AttackBonus(ItemInfo data) : base(data)
{
}
public override void Invoke(Action<Item> item)
{
throw new NotImplementedException();
}
public override void InstanceInvoke()
{
Unit.SetAttackBonus(Data.Values[0], Data.Values[1]);
}
public override void PlaceItem(HexCell cell)
{
throw new NotImplementedException();
}
}
}