public class Boron extends Player

{

      public Boron(String name)

      {

          this.sq = 1;

          this.name = name;

      }

      public void printWelcome()

      {

        System.out.println("______________________________________________________________________"); 

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

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

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

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

      }

}