Skip to main content
5 of 11
added 108 characters in body

C, 235 211 208 bytes

i;c(){puts("0");for(;i<37;i++){char b[58]="";if(i<21){memset(b,!((i-1)%3)?35:32,56);i<10?memcpy(b," * * * * * * "+(i%2?0:2),23):0;b[56]=124;}(!i||i==20)?memset(b,45,57):0;printf("|%.*s\n",57,b);}} 

edit: added some of Cool Guy's suggestions and made use of ?: to replace some if statements.

edit: removed overflow \0 prevention and used string length limiter in printf instead.