import java.awt.Color;

public class LightTank extends ComputerTank{
//Overview: LightTank is ComputerTank that has fast speed
	//(int speed,int hp,Direction or,int pts, int xps, int iq)
	public LightTank(){
		super(100,2,Direction.SOUTH,15,10,8);
	}
	public Color getColor(){
		return Color.yellow;
	}
}