import java.awt.Color;

public class HeavyTank extends ComputerTank{
//	Overview: HeavyTank is ComputerTank that has slow speed

	  public HeavyTank(){
		  super(500,4,Direction.SOUTH,20,15,12);
		  gun = new Gun(2,1200,90);
	  }
	  public Color getColor(){
		  return new Color(0,200,0);
	  }
}