public class Morgon extends Player

{

      int mouthNumber;

      public Morgon(String name)

      {

          this.sq = 1;

          this.name = name;

          this.mouthNumber = 2;

      }

       public void printWelcome()

   {

 

        System.out.println("______________________________________________________________________"); 

        System.out.println("Great choice! Morgons are more powerful than the Borons!");

        System.out.println("So every time you land on a Borgon Lair you will go forward!");

        System.out.println("The bad news is that The Zorgons are more powerful than you!");

        System.out.println("And every time you are palced on a Zorgon Cave you will move backwards");

    }

}