Britbot

returns the average of the maximum fight power in the last outOfDateNumber of turns

Returns:
returns the average of the maximum fight power

Definition at line 506 of file EnemyGroup.cs.

        {
            //check if LastMaxFightPower isnt empty
            if (this._lastMaxFightPower.Count == 0)
                return 0;
            //otherwise
            return this._lastMaxFightPower.Average();
        }