module Base {
  
sound Cry
    {
        category = Item, loop = false, is3D = true,
        clip {
		
		file = media/sound/baby_cry.ogg,
		distanceMin = 10, distanceMax = 20,
		reverbFactor = 0.1, volume = 0.2,
		
		}
    }

sound Feed
    {
        category = Item, loop = true, is3D = true,
        clip {
		
		file = media/sound/baby_eating.ogg,
		distanceMin = 2, distanceMax = 6,
		reverbFactor = 0.1, volume = 0.5,
		
		}
    }
    
sound FeedSpoon
    {
        category = Item, loop = true, is3D = true,
        clip {
		
		file = media/sound/baby_eatingSpoon.ogg,
		distanceMin = 2, distanceMax = 6,
		reverbFactor = 0.1, volume = 0.5,
		
		}
    }
}