2.4.1

Summary: This patch add more fields and stats for LoL and Dota2.

Changes

  • Adding player statistics for Dota2,
  • Adding team statistics for Dota2,
  • Adding team statistics for League of Legends,
  • Adding fields to League of Legends game detail (/lol/games/{game_id}):
    • did the team has the first inhibitor: teams[].first_inhibitor (bool)
    • did the team has the first dragon: teams[].first_dragon (bool)
    • number of inhibitor kills per team: teams[].inhibitor_kills (int)
    • number of dragon kills per team: teams[].dragon_kills (int)
  • Adding match object in the /lives endpoint.
  • Adding expected_begin_at date field in the /lives endpoint.
  • Adding a live object in the /matches endpoint, with:
    • live.supported: if the match will be live supported by PandaScore or not.
    • live.opens_at: the date when the websocket will be open to connexions.
    • live.url: the websocket url to connect to.
  • Adding a filter on matches allowing filtering by league id.
  • Fixing event.game (the videogame of the event) string field in /lives endpoint.

Dota2 team stats (/dota2/teams/{team_id}/stats)

  • games count (games_count)
  • winrate ratio (averages.ratios.win)
  • first_blood ratio (averages.ratios.first_blood)
  • average tower kills (averages.tower_kills)
  • average gold spent (averages.gold_spent)
  • average kills (averages.kills)
  • average deaths (averages.deaths)
  • average assists (averages.assists)
  • average last hits (averages.last_hits)
  • average camps stacked (averages.camps_stacked)
  • average observer used (averages.observer_used)
  • average sentry used (averages.sentry_used)
  • average denies (averages.denies)
  • average gold per min (averages.gold_per_min)
  • average xp per min (averages.xp_per_min)
  • average damage taken (averages.damage_taken)
  • average heal (averages.heal)
  • most picked heroes (most_picked)
  • most banned heroes (most_banned)
  • last five games (last_games)

Lol team stats (/lol/teams/{team_id}/stats)

  • games count (games_count)
  • winrate ratio (averages.ratios.win)
  • first blood ratio (averages.ratios.first_blood)
  • first tower ratio (averages.ratios.first_tower)
  • first inhibitor ratio (averages.ratios.first_inhibitor)
  • first baron ratio (averages.ratios.first_baron)
  • first dragon ratio (averages.ratios.first_dragon)
  • average tower kills (averages.tower_kills)
  • average inhibitor kills (averages.inhibitor_kills)
  • average baron kills (averages.baron_kills)
  • average dragon kills (averages.dragon_kills)
  • average herald kill (averages.herald_kill)
  • average gold earned (averages.gold_earned)
  • average kills (averages.kills)
  • average deaths (averages.deaths)
  • average assists (averages.assists)
  • average total minions killed (averages.total_minions_killed)
  • average wards placed (averages.wards_placed)
  • most picked champions (most_picked)
  • most banned champions (most_banned)
  • last five games (last_games)