import java.awt.Color;

public class MagneticTank extends ComputerTank{
//Overview: MagneticTank is a ComputerTank that shoot magnetic pulses
//	to mess up a target tank's orientation.
	public MagneticTank(){
		super(300,3,Direction.SOUTH,50,30,15);
		setGun(new MagneticGun());
	}
	public Color getColor(){
		return Color.white;
	}
}