
module Base
{
	template vehicle Earthing
    {
		part EarthingOn
		{
			lua
			{
				init = Trailers.Init.EarthingOn,
				create = Trailers.Create.EarthingOn,
				update = Trailers.Update.EarthingOn,
			}
		}
		
		part EarthingOff
		{
			lua
			{
				create = Trailers.Create.EarthingOff,
			}
		}
		
		part Earthing*
		{
			area = Engine,
			/**/
			category = nodisplay,
			specificItem = false,
			mechanicRequireKey = false,
			itemType = Autotsar.TsarEarthing,
		}
	}
}

