The error is simple, it cannot find the cinstructor you are using:
"cannot find symbol constructor Plane (int,int,int,int,int,int,java.awt.Image, java.applet.AudioClip, Player)"
Meaning that the constructor you are using doesn't exist. I haven't looked at your code, but the arguments you enter at the constructor must much the ones that are declared at the class definition.
It is like having a constructor like this:
public ConA(String a, int b) {
}
And try to call it like this:
ConA cA = new ConA(1, 2, 3, "aaaa");
That constructor doesn't exist because the constructor takes as argumnents a String and an int.
So what arguments does the Plane constructor takes and use those.