Take the CIP Battlebot Challenge!

CODE YOUR BATTLEBOT ON THE LEFT AND WATCH THE BATTLE ON THE RIGHT
You are the blue team and CIP is the red team. Can you beat Gallo Pinto?
ERROR:
some very weird error with my robot is going on now
        // Your robot must be in the variable "Robot"
var Robot = function(robot) { };

Robot.prototype.onIdle = function(ev) {
  var robot = ev.robot;
  robot.ahead(100);
  robot.rotateCannon(360);
  robot.back(100);
  robot.rotateCannon(360);
};

Robot.prototype.onScannedRobot = function(ev) {
  var robot = ev.robot;
  robot.fire();
};