You are given a list of (x, y) coordinate tuples representing player positions on a field. Write a function swap_coords(points) that returns a new list where each coordinate is swapped to (y, x). Use tuple unpacking to perform the swap and do not modify the original list.
Example:
swap_coords([(1, 2), (3, 4)]) # returns [(2, 1), (4, 3)]