using System; using Data; using HexFiled; namespace Items { public class AttackBonus : Item { public AttackBonus(ItemInfo data) : base(data) { } public override void Invoke(Action 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(); } } }