module Base
{
	template vehicle F350StorageLeftCompartment
	{
		part F350TallStorage
		{
			category = bodywork,
			area = StorageLeft,
			itemType = Base.90fordF350Trunk,
			mechanicRequireKey = true,
			repairMechanic = true,
			container
			{
				capacity = 45,
				conditionAffectsCapacity = false,
				test = F350.ContainerAccess.TrunkLeft,
			}
			lua
			{
				create = Vehicles.Create.Default,
			}
		}

		part F350LowStorage
		{
			category = bodywork,
			area = StorageLeft,
			itemType = Base.90fordF350Trunk,
			mechanicRequireKey = true,
			repairMechanic = true,
			container
			{
				capacity = 50,
				conditionAffectsCapacity = false,
				test = F350.ContainerAccess.TrunkLeft,
			}
			lua
			{
				create = Vehicles.Create.Default,
			}
		}

	}

	template vehicle F350StorageCornerCompartment
	{
		part F350RearStorage
		{
			category = bodywork,
			area = StorageCorner,
			itemType = Base.90fordF350Trunk,
			mechanicRequireKey = true,
			repairMechanic = true,
			container
			{
				capacity = 25,
				conditionAffectsCapacity = false,
				test = F350.ContainerAccess.TrunkCorner,
			}
			lua
			{
				create = Vehicles.Create.Default,
			}
		}

		part F350LowCornerStorage
		{
			category = bodywork,
			area = StorageCorner,
			itemType = Base.90fordF350Trunk,
			mechanicRequireKey = true,
			repairMechanic = true,
			container
			{
				capacity = 55,
				conditionAffectsCapacity = false,
				test = F350.ContainerAccess.TrunkCorner,
			}
			lua
			{
				create = Vehicles.Create.Default,
			}
		}

	}

	template vehicle F350StorageRightCompartment
	{
		part F350RightStorage
		{
			category = bodywork,
			area = StorageRight,
			itemType = Base.90fordF350Trunk,
			mechanicRequireKey = true,
			repairMechanic = true,
			container
			{
				capacity = 30,
				conditionAffectsCapacity = false,
				test = F350.ContainerAccess.TrunkRight,
			}
			lua
			{
				create = Vehicles.Create.Default,
			}
		}

	}

	template vehicle F350StorageInside
	{
		part F350InsideLeftStorage
		{
			category = nodisplay,
			area = TruckBed,
			itemType = Base.90fordF350Trunk,
			mechanicRequireKey = true,
			repairMechanic = true,
			container
			{
				capacity = 25,
				conditionAffectsCapacity = false,
				test = F350.ContainerAccess.InsideLeft,
			}
			lua
			{
				create = Vehicles.Create.Default,
			}
		}

		part F350InsideRightTopStorage
		{
			category = nodisplay,
			area = TruckBed,
			itemType = Base.90fordF350Trunk,
			mechanicRequireKey = true,
			repairMechanic = true,
			container
			{
				capacity = 30,
				conditionAffectsCapacity = false,
				test = F350.ContainerAccess.InsideLeft,
			}
			lua
			{
				create = Vehicles.Create.Default,
			}
		}

		part F350InsideRightBottomStorage
		{
			category = nodisplay,
			area = TruckBed,
			itemType = Base.90fordF350Trunk,
			mechanicRequireKey = true,
			repairMechanic = true,
			container
			{
				capacity = 30,
				conditionAffectsCapacity = false,
				test = F350.ContainerAccess.InsideLeft,
			}
			lua
			{
				create = Vehicles.Create.Default,
			}
		}

		part F350InsideFrontStorage
		{
			category = nodisplay,
			area = SeatRearRight,
			itemType = Base.90fordF350Trunk,
			mechanicRequireKey = true,
			repairMechanic = true,
			container
			{
				capacity = 50,
				conditionAffectsCapacity = false,
				test = F350.ContainerAccess.InsideFront,
			}
			lua
			{
				create = Vehicles.Create.Default,
			}
		}

	}

}

