diff options
| author | Ken <kenny@madgloryint.com> | 2017-11-01 13:27:17 -0400 |
|---|---|---|
| committer | Ken <kenny@madgloryint.com> | 2017-11-01 13:27:17 -0400 |
| commit | 1385a3cefc7312a3f18e8d78a854411b53c75e67 (patch) | |
| tree | f27292fc20215f68c25ab09830947da56fb732a9 /source/match_data_summary | |
| parent | 0f19a09673be2bb79426e21a6460d5095f43287a (diff) | |
| download | vainglory-docs-1385a3cefc7312a3f18e8d78a854411b53c75e67.tar.gz vainglory-docs-1385a3cefc7312a3f18e8d78a854411b53c75e67.zip | |
Initial commit of the new logs.
Diffstat (limited to 'source/match_data_summary')
| -rw-r--r-- | source/match_data_summary/match_data_summary.rst | 163 |
1 files changed, 163 insertions, 0 deletions
diff --git a/source/match_data_summary/match_data_summary.rst b/source/match_data_summary/match_data_summary.rst new file mode 100644 index 0000000..a87682e --- /dev/null +++ b/source/match_data_summary/match_data_summary.rst @@ -0,0 +1,163 @@ +.. _match_data_summary: + +Match Data Summary +================== + +Special thanks to Kashz for helping to create this! GitHub: iAm-Kashif + +Match Object +--------------------------- + +================= ============== =========================== +Variable Type Description +================= ============== =========================== +Type str Match +ID str Match ID +createdAt str (iso8601) Time of Match Played +duration int Time of match in seconds +gameMode str Game Mode +patchVersion str Version of API +shardID str Match Shard +stats map See Match.stats +assets obj See Match.assets +rosters obj See Rosters +================= ============== =========================== + + +**Match.stats (End of game statistics)** + +================= ============== =========================== +Variable Type Description +================= ============== =========================== +endGameReason str "Victory" or "Defeat" +queue str Game Mode +================= ============== =========================== + + +**Match.assets (Telemetry Data)** + +================= ============== =========================== +Variable Type Description +================= ============== =========================== +Type string asset +createdAt str (iso8601) Time of Telemtry creation +description str " " +filename str telemetry.json +id str ID of Asset +contentType str application/json +name map telemetry +url obj Link to Telemetry.json file +================= ============== =========================== + + +Rosters Object +--------------------------- + +================= ============== =========================== +Variable Type Description +================= ============== =========================== +id str ID of Roster +type str Roster +participants obj See Participants +stats obj See Rosters.stats +team obj See Rosters.team +================= ============== =========================== + + +**Rosters.stats** + +================= ======================================= +Variable Type +================= ======================================= +acesEarned int +gold int +heroKills int +krakenCaptures int +side Either "right/red" or "left/blue" +turretKills int +turretRemaining int +================= ======================================= + + +**Rosters.team** + +================= ============== =========================== +Variable Type Description +================= ============== =========================== +id str ID of Team or None +name str Name of Team or None +type str team +================= ============== =========================== + +Participants Object +--------------------------- + +================= ============== =========================== +Variable Type Description +================= ============== =========================== +actor str Hero +id str Same as ID of Roster +player obj See Participants.player +stats map See Paticipants.stats +type str participants +================= ============== =========================== + +**Participants.player** + +================= ============== =========================== +Variable Type Description +================= ============== =========================== +id str UID of player +name str IGN of player +stats map See Participants.player.stats +type str palyer +================= ============== =========================== + +**Particpants.stats** + +====================== ================================= +Variable Type +====================== ================================= +assists int +crystalMineCaptures int +deaths int +farm int +firstAfkTime int: -1 for no AFK +goldMineCaptures int +itemGrants map of {itemsBought : int} +itemSells map of {itemsSold : int} +itemUses map of {itemsUsed : int} +items list of final build (Len: 6) +jungleKills int +karmaLevel int +kills int +krakenCaptures int +level int +minionKills int +nonJungleMinionKills int +skillTier int +skinKey str +turretCaptures int +wentAfk bool +winner bool +====================== ================================= + + +**Particpants.player.stats** + +====================== ================================= +Variable Type +====================== ================================= +level int +lifetimeGold float +lossStreak int +played int +played_ranked int +winStreak int +wins int +xp int +====================== ================================= + + +.. toctree:: + :maxdepth: 2 |
