public class Zorgon
extends Player
{
int eyeNumber;
public Zorgon(String name)
{
this.sq = 1;
this.name = name;
this.eyeNumber = 3;
}
public void printWelcome()
{
System.out.println("______________________________________________________________________");
System.out.println("Great choice! Zorgons are
more powerful than Morgons!");
System.out.println("So every time you land on a Morgon
Dwelling you will go forward!");
System.out.println("The bad news is that The Borons
are more powerful than you!");
System.out.println("And every time you are palced
on a Boron Lair you will move backwards");
}
}