module Base
{
	template vehicle 500PropaneTruckTank
	{
		part 500PropaneTruckTank
		{
			area = FuelStorage,
			category = gastank,
			itemType = Base.500PropaneTank;,
			mechanicRequireKey = false,
			repairMechanic = true,
			container
			{
				test = Vehicles.ContainerAccess.GasTank,
				contentType = Propane Storage,
				conditionAffectsCapacity = true,
			}
			lua
			{
				create = Vehicles.Create.GasTank,
			}

		}
	}

item PropaneTank
	{
		Weight	=	10.0,
		Type	=	Drainable,
		UseWhileEquipped	=	FALSE,
		UseDelta	=	0.125,
		DisplayName	=	Propane Tank,
		Icon	=	PropaneTank,
		UseWorldItem = TRUE,
		ScaleWorldIcon = 2.0,
		WeightEmpty = 5.0,		
	        /*ReplaceOnUse    =   PropaneTankEmpty,*/
		keepOnDeplete =	TRUE,
	}
/*
item PropaneTankEmpty
	{
		Weight	=	5.0,
		DisplayName	=	Empty Propane Tank,
		Icon	=	PropaneTank,
		UseWorldItem = TRUE,
		ScaleWorldIcon = 2.0,
		WeightEmpty = 5.0,	
	}
*/

}


