As you mentioned, you often need to introduce other concepts (mutual exclusion, threads of execution) to accurately describe race conditions, even in a metaphor.  So try defining these terms (or at least getting the idea across) first, using metaphor.

As a simple example, try a simple 4-way intersection (set in a country where you drive on the right).  Divide the intersection into 4 quadrants (going simple for this example).  Now call each quadrant a resource, and call each car a thread of execution.  

You can easily show that simultaneous use of one of these quadrants by more than one car is bad, and results in a car crash.  One obvious solution is to install a traffic system.  The system ensures that no more than one car is passing through a quadrant at the same time.  It can do this intricately, without tying up all the resources.  For example, letting cars coming from the South make a left turn to head West (using south-east and north-west quadrants), while letting cars coming from the West make a right turn to head South (using the south-west quadrant).  The traffic system is providing mutual exclusion, or preventing simultaneous use (by multiple cars) of a common resource (the quadrant of road in the intersection).

This at least provides the ideas behind these definitions, the idea that simultaneously accessing shared resources *can* be bad, and that mutual exclusion can solve this problem.  After this is established, you'll need to map these to a more appropriate metaphor to show what a race condition is and how it's one of those bad things that results from lack of mutual exclusion for a common resource.  

It takes a bit longer, but it grants some familiarity with terms and the big picture before drilling down into a more complex metaphor.