teamMembers = team.getMemberNames();
isTeamLeader = team.size() == 1; // That is current team size, more might follow later. First robot is leader
teamIndex = team.getTeamIndex();
}
this.statics = new RobotStatics(robotSpecification, duplicate, isTeamLeader, battleRules, teamName, teamMembers,
robotIndex, teamIndex);
this.statistics = new RobotStatistics(this, battle.getRobotsCount());
this.robotProxy = (IHostingRobotProxy) hostManager.createRobotProxy(robotSpecification, statics, this);
}