view API/Objects/Mock/MockPercentageAmountUnitEquipmentItem.cs @ 25:d48e73488838

Re #198: Add equipment slots * Add additional constructors to Mock UnitEquipmentItems for more flexibility * Add test for percentage limit on numeric limited equipment
author IBBoard <dev@ibboard.co.uk>
date Tue, 27 Oct 2009 20:57:49 +0000
parents 9b23e72ba3cf
children e6bf9b5e1b94
line wrap: on
line source

// This file (MockUnitEquipmentItem.cs) is a part of the IBBoard.WarFoundry.API.Tests project and is copyright 2009 IBBoard
// 
// The file and the library/program it is in are licensed and distributed, without warranty, under the GNU Affero GPL license, either version 3 of the License or (at your option) any later version. Please see COPYING for more information and the full license.

using System;
using IBBoard.Limits;
using IBBoard.WarFoundry.API.Objects;

namespace IBBoard.WarFoundry.API.Objects.Mock
{
	public class MockPercentageAmountUnitEquipmentItem : UnitEquipmentItem
	{
		public MockPercentageAmountUnitEquipmentItem () : this(new MockEquipmentItem(), new MockUnitType())
		{
		}
		
		public MockPercentageAmountUnitEquipmentItem(double percentage) : this(new MockEquipmentItem(), new MockUnitType(), percentage)
		{
		}
		
		public MockPercentageAmountUnitEquipmentItem(EquipmentItem item, UnitType type) : this(item, type, 50)
		{
		}
		
		public MockPercentageAmountUnitEquipmentItem(EquipmentItem item, UnitType type, double percentage) : base(item, type)
		{
			MaxLimit = new SimpleRoundedPercentageLimit(percentage, false);
		}
	}
}