module Base
{
	template vehicle MR2Trunk
	{
		part MR2Trunk
		{
			category = bodywork,
			area = TruckBed,
			itemType = Base.87toyotaMR2RearTrunk,
			mechanicRequireKey = true,
			repairMechanic = true,
			container
			{
				conditionAffectsCapacity = false,
				test = Vehicles.ContainerAccess.TruckBed,
			}
			lua
			{
				create = Vehicles.Create.Default,
			}
		}

		part TruckBed
		{
			category = nodisplay,
			area = TruckBed,
			itemType = nil,
			mechanicRequireKey = true,
			repairMechanic = true,
			container
			{
				conditionAffectsCapacity = false,
				test = Vehicles.ContainerAccess.TruckBed,
			}
			lua
			{
			}
		}

	}


	template vehicle MR2FrontTrunk
	{
		part MR2FrontTrunk
		{
			category = bodywork,
			area = Front,
			itemType = Base.87toyotaMR2FrontTrunk,
			mechanicRequireKey = true,
			repairMechanic = true,
			container
			{
				conditionAffectsCapacity = false,
				test = MR2.ContainerAccess.FrontTrunk,
			}
			lua
			{
				create = Vehicles.Create.Default,
			}
		}
	}

	template vehicle MR2CenterConsole
	{
		part MR2CenterConsole
		{
			category = bodywork,
			area = SeatFrontLeft,
			itemType = Base.GloveBox,
			mechanicRequireKey = true,
			repairMechanic = true,
			container
			{
				conditionAffectsCapacity = false,
				test = MR2.ContainerAccess.CenterConsole,
			}
			lua
			{
				create = Vehicles.Create.Default,
			}
		}
	}

}

