Beispiel #1
0
 def get_general_stats() ->List[BaseStat]:
     """These are stats that end up being assigned to the game as a whole"""
     return [PositionalTendencies(),
             SpeedTendencies(),
             ItemGoals(),
             DropshotGoals(),
             DropshotBallPhaseTimes(),
             DropshotStats()
             ]
Beispiel #2
0
 def get_player_stats() -> List[BaseStat]:
     """These are stats that end up being assigned to a specific player"""
     return [
         BoostStat(),
         PositionalTendencies(),
         Averages(),
         BallDistanceStat(),
         ControlsStat(),
         SpeedTendencies(),
         PerPossessionStat(),
         SpeedTendencies(),
         RumbleItemStat()
     ]