public Robot (BufferedImage[] images, double x, double y, Player player, int health, LixoGame game)
{
super(images,x,y, player);
this.health = health;
this.spriteSheet = images;
bulletTimer = new Timer(PlayerConstants.BulletTimer);
bulletTimer.setActive(false);
moveTimer = new Timer(100);
moveTimer.setActive(false);
deathTimer = new Timer(200);
deathTimer.setActive(false);
state = RobotState.Searching;
radius = 150.0;
this.game = game;