Skip to main content
2 of 10
deleted 22 characters in body
Ted
  • 2.4k
  • 7
  • 33

Python 3.8 (pre-release), 208 bytes

def f(n):
 s=""
 for r in range(n*2+1):
  for c in range(n*4+1):
   s+=" ║═╔║║╗╦═╚═╠╝╩╣╬"[int("".join("1"if b else"0"for b in(r%2,c%4,r,c,r-n*2,c-n*4)),2)%21]
  s+="\n"
 print(s)

Try it online!

Ted
  • 2.4k
  • 7
  • 33