ruby-lol 0.12.2 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (167) hide show
  1. checksums.yaml +4 -4
  2. data/.editorconfig +16 -0
  3. data/.gitignore +2 -0
  4. data/.rspec +1 -0
  5. data/.rubocop.yml +1157 -0
  6. data/.travis.yml +1 -1
  7. data/lib/lol/champion_mastery_request.rb +29 -57
  8. data/lib/lol/champion_request.rb +19 -23
  9. data/lib/lol/client.rb +16 -21
  10. data/lib/lol/dynamic_model.rb +14 -5
  11. data/lib/lol/featured_game_list.rb +15 -0
  12. data/lib/lol/league_request.rb +28 -49
  13. data/lib/lol/lol_status_request.rb +9 -26
  14. data/lib/lol/masteries_request.rb +14 -0
  15. data/lib/lol/match_request.rb +51 -9
  16. data/lib/lol/request.rb +55 -21
  17. data/lib/lol/runes_request.rb +14 -0
  18. data/lib/lol/spectator_request.rb +24 -0
  19. data/lib/lol/static_request.rb +34 -23
  20. data/lib/lol/summoner_request.rb +22 -51
  21. data/lib/lol/tournament_request.rb +95 -0
  22. data/lib/lol/version.rb +1 -1
  23. data/ruby-lol.gemspec +1 -1
  24. data/spec/api_version_spec.rb +10 -9
  25. data/spec/fixtures/{v1.2 → v3}/get-champion-266.json +0 -0
  26. data/spec/fixtures/{v1.2/get-champion.json → v3/get-champion-all.json} +0 -0
  27. data/spec/fixtures/{v1.0/get-champion-mastery-champions.json → v3/get-champion-masteries.json} +0 -0
  28. data/spec/fixtures/{v1.0/get-champion-mastery-champion.json → v3/get-champion-mastery.json} +0 -0
  29. data/spec/fixtures/v3/get-current-game.json +1 -0
  30. data/spec/fixtures/v3/get-featured-games.json +1 -0
  31. data/spec/fixtures/v3/get-ids-by-tc.json +1 -0
  32. data/spec/fixtures/v3/get-league-challenger.json +1 -0
  33. data/spec/fixtures/v3/get-league-master.json +1 -0
  34. data/spec/fixtures/v3/get-league-positions.json +1 -0
  35. data/spec/fixtures/v3/get-league-summoner.json +1 -0
  36. data/spec/fixtures/v3/get-lol-status-shard.json +1 -0
  37. data/spec/fixtures/v3/get-masteries.json +1 -0
  38. data/spec/fixtures/v3/get-match-with-tc.json +1 -0
  39. data/spec/fixtures/v3/get-match.json +1 -0
  40. data/spec/fixtures/v3/get-matches-recent.json +1 -0
  41. data/spec/fixtures/v3/get-matches.json +1 -0
  42. data/spec/fixtures/v3/get-runes.json +1 -0
  43. data/spec/fixtures/v3/get-static-champions-by-id.json +1 -0
  44. data/spec/fixtures/v3/get-static-champions.json +1 -0
  45. data/spec/fixtures/v3/get-static-items-by-id.json +1 -0
  46. data/spec/fixtures/v3/get-static-items.json +1 -0
  47. data/spec/fixtures/v3/get-static-maps.json +1 -0
  48. data/spec/fixtures/v3/get-static-masteries-by-id.json +1 -0
  49. data/spec/fixtures/v3/get-static-masteries.json +1 -0
  50. data/spec/fixtures/v3/get-static-realms.json +1 -0
  51. data/spec/fixtures/v3/get-static-runes-by-id.json +1 -0
  52. data/spec/fixtures/v3/get-static-runes.json +1 -0
  53. data/spec/fixtures/v3/get-static-summoner-spells-by-id.json +1 -0
  54. data/spec/fixtures/v3/get-static-summoner-spells.json +1 -0
  55. data/spec/fixtures/v3/get-static-versions.json +1 -0
  56. data/spec/fixtures/v3/get-summoner-by-name.json +1 -0
  57. data/spec/fixtures/v3/get-summoner.json +1 -0
  58. data/spec/fixtures/v3/get-timeline.json +1 -0
  59. data/spec/fixtures/v3/get-tournament-code.json +1 -0
  60. data/spec/lol/champion_mastery_request_spec.rb +33 -133
  61. data/spec/lol/champion_request_spec.rb +17 -30
  62. data/spec/lol/client_spec.rb +12 -56
  63. data/spec/lol/league_request_spec.rb +29 -72
  64. data/spec/lol/lol_status_request_spec.rb +6 -34
  65. data/spec/lol/masteries_request_spec.rb +15 -0
  66. data/spec/lol/match_request_spec.rb +45 -10
  67. data/spec/lol/request_spec.rb +5 -5
  68. data/spec/lol/runes_request_spec.rb +15 -0
  69. data/spec/lol/spectator_request_spec.rb +23 -0
  70. data/spec/lol/static_request_spec.rb +44 -48
  71. data/spec/lol/summoner_request_spec.rb +20 -71
  72. data/spec/lol/tournament_request_spec.rb +36 -0
  73. metadata +92 -175
  74. data/lib/lol/champion.rb +0 -37
  75. data/lib/lol/champion_mastery.rb +0 -50
  76. data/lib/lol/champion_statistics_summary.rb +0 -25
  77. data/lib/lol/current_game_request.rb +0 -16
  78. data/lib/lol/featured_games_request.rb +0 -15
  79. data/lib/lol/game.rb +0 -85
  80. data/lib/lol/game_request.rb +0 -19
  81. data/lib/lol/league.rb +0 -32
  82. data/lib/lol/league_entry.rb +0 -74
  83. data/lib/lol/mastery.rb +0 -16
  84. data/lib/lol/mastery_page.rb +0 -28
  85. data/lib/lol/match_list_request.rb +0 -15
  86. data/lib/lol/match_summary.rb +0 -59
  87. data/lib/lol/mini_series.rb +0 -29
  88. data/lib/lol/model.rb +0 -28
  89. data/lib/lol/player.rb +0 -21
  90. data/lib/lol/player_statistic.rb +0 -46
  91. data/lib/lol/ranked_statistics_summary.rb +0 -35
  92. data/lib/lol/roster.rb +0 -23
  93. data/lib/lol/rune_page.rb +0 -28
  94. data/lib/lol/rune_slot.rb +0 -29
  95. data/lib/lol/stats_request.rb +0 -35
  96. data/lib/lol/summoner.rb +0 -36
  97. data/lib/lol/team.rb +0 -110
  98. data/lib/lol/team_member.rb +0 -33
  99. data/lib/lol/team_request.rb +0 -32
  100. data/lib/lol/team_statistic.rb +0 -53
  101. data/lib/lol/tournament_code.rb +0 -58
  102. data/lib/lol/tournament_provider_request.rb +0 -111
  103. data/spec/fixtures/v1.0/get-champion-mastery-top-champions-10.json +0 -121
  104. data/spec/fixtures/v1.0/get-champion-mastery-top-champions.json +0 -38
  105. data/spec/fixtures/v1.0/get-current-game.json +0 -1065
  106. data/spec/fixtures/v1.0/get-featured-games.json +0 -730
  107. data/spec/fixtures/v1.0/get-lol-status-shard-by-region.json +0 -39
  108. data/spec/fixtures/v1.0/get-lol-status-shards.json +0 -78
  109. data/spec/fixtures/v1.2/get-champion-by-id.json +0 -6
  110. data/spec/fixtures/v1.2/get-item-by-id.json +0 -6
  111. data/spec/fixtures/v1.2/get-item.json +0 -1563
  112. data/spec/fixtures/v1.2/get-mastery-by-id.json +0 -9
  113. data/spec/fixtures/v1.2/get-mastery.json +0 -389
  114. data/spec/fixtures/v1.2/get-realm.json +0 -1
  115. data/spec/fixtures/v1.2/get-rune-by-id.json +0 -26
  116. data/spec/fixtures/v1.2/get-rune.json +0 -2966
  117. data/spec/fixtures/v1.2/get-static-champion.json +0 -714
  118. data/spec/fixtures/v1.2/get-summoner-spell-by-id.json +0 -39
  119. data/spec/fixtures/v1.2/get-summoner-spell.json +0 -97
  120. data/spec/fixtures/v1.2/get-versions.json +0 -1
  121. data/spec/fixtures/v1.3/get-game.json +0 -1040
  122. data/spec/fixtures/v1.3/get-ranked_stats.json +0 -1
  123. data/spec/fixtures/v1.3/get-stats.json +0 -1
  124. data/spec/fixtures/v1.4/get-summoner-by-name.json +0 -1
  125. data/spec/fixtures/v1.4/get-summoner-masteries.json +0 -898
  126. data/spec/fixtures/v1.4/get-summoner-name.json +0 -1
  127. data/spec/fixtures/v1.4/get-summoner-runes.json +0 -2547
  128. data/spec/fixtures/v1.4/get-summoner.json +0 -1
  129. data/spec/fixtures/v2.2/get-match.json +0 -1
  130. data/spec/fixtures/v2.2/get-match_list.json +0 -1
  131. data/spec/fixtures/v2.4/get-by-summoner.json +0 -1
  132. data/spec/fixtures/v2.4/get-team.json +0 -1
  133. data/spec/fixtures/v2.5/get-league-by-team.json +0 -1
  134. data/spec/fixtures/v2.5/get-league-challenger.json +0 -1
  135. data/spec/fixtures/v2.5/get-league-entry-by-team.json +0 -1
  136. data/spec/fixtures/v2.5/get-league-entry.json +0 -1
  137. data/spec/fixtures/v2.5/get-league-master.json +0 -1
  138. data/spec/fixtures/v2.5/get-league.json +0 -1
  139. data/spec/lol/champion_mastery_spec.rb +0 -20
  140. data/spec/lol/champion_spec.rb +0 -19
  141. data/spec/lol/champion_statistics_summary_spec.rb +0 -38
  142. data/spec/lol/current_game_request_spec.rb +0 -47
  143. data/spec/lol/featured_games_request_spec.rb +0 -39
  144. data/spec/lol/game_request_spec.rb +0 -32
  145. data/spec/lol/game_spec.rb +0 -51
  146. data/spec/lol/league_entry_spec.rb +0 -51
  147. data/spec/lol/league_spec.rb +0 -31
  148. data/spec/lol/mastery_page_spec.rb +0 -29
  149. data/spec/lol/mastery_spec.rb +0 -17
  150. data/spec/lol/match_list_request_spec.rb +0 -39
  151. data/spec/lol/match_summary_spec.rb +0 -25
  152. data/spec/lol/mini_series_spec.rb +0 -25
  153. data/spec/lol/model_spec.rb +0 -13
  154. data/spec/lol/player_spec.rb +0 -19
  155. data/spec/lol/player_statistic_spec.rb +0 -44
  156. data/spec/lol/ranked_statistics_summary_spec.rb +0 -32
  157. data/spec/lol/roster_spec.rb +0 -24
  158. data/spec/lol/rune_page_spec.rb +0 -28
  159. data/spec/lol/rune_slot_spec.rb +0 -16
  160. data/spec/lol/stats_request_spec.rb +0 -93
  161. data/spec/lol/summoner_spec.rb +0 -20
  162. data/spec/lol/team_member_spec.rb +0 -27
  163. data/spec/lol/team_request_spec.rb +0 -47
  164. data/spec/lol/team_spec.rb +0 -54
  165. data/spec/lol/team_statistic_spec.rb +0 -20
  166. data/spec/lol/tournament_code_spec.rb +0 -20
  167. data/spec/lol/tournament_provider_request_spec.rb +0 -73
@@ -1 +0,0 @@
1
- {"summonerId":30743211,"modifyDate":1395674770000,"champions":[{"id":75,"stats":{"totalSessionsPlayed":2,"totalSessionsLost":0,"totalSessionsWon":2,"totalChampionKills":16,"totalDamageDealt":262054,"totalDamageTaken":87268,"mostChampionKillsPerSession":15,"totalMinionKills":247,"totalDoubleKills":1,"totalTripleKills":0,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":11,"totalGoldEarned":25119,"mostSpellsCast":0,"totalTurretsKilled":1,"totalPhysicalDamageDealt":143082,"totalMagicDamageDealt":108055,"totalFirstBlood":0,"totalAssists":17,"maxChampionsKilled":15,"maxNumDeaths":7}},{"id":8,"stats":{"totalSessionsPlayed":1,"totalSessionsLost":1,"totalSessionsWon":0,"totalChampionKills":1,"totalDamageDealt":124705,"totalDamageTaken":28743,"mostChampionKillsPerSession":1,"totalMinionKills":197,"totalDoubleKills":0,"totalTripleKills":0,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":6,"totalGoldEarned":9714,"mostSpellsCast":0,"totalTurretsKilled":1,"totalPhysicalDamageDealt":12779,"totalMagicDamageDealt":110732,"totalFirstBlood":0,"totalAssists":5,"maxChampionsKilled":1,"maxNumDeaths":6}},{"id":51,"stats":{"totalSessionsPlayed":3,"totalSessionsLost":3,"totalSessionsWon":0,"totalChampionKills":0,"totalDamageDealt":207263,"totalDamageTaken":45737,"mostChampionKillsPerSession":0,"totalMinionKills":387,"totalDoubleKills":0,"totalTripleKills":0,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":18,"totalGoldEarned":20656,"mostSpellsCast":0,"totalTurretsKilled":0,"totalPhysicalDamageDealt":202278,"totalMagicDamageDealt":4982,"totalFirstBlood":0,"totalAssists":18,"maxChampionsKilled":0,"maxNumDeaths":7}},{"id":12,"stats":{"totalSessionsPlayed":1,"totalSessionsLost":0,"totalSessionsWon":1,"totalChampionKills":3,"totalDamageDealt":36405,"totalDamageTaken":43304,"mostChampionKillsPerSession":3,"totalMinionKills":35,"totalDoubleKills":0,"totalTripleKills":0,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":8,"totalGoldEarned":12509,"mostSpellsCast":0,"totalTurretsKilled":0,"totalPhysicalDamageDealt":9808,"totalMagicDamageDealt":25954,"totalFirstBlood":0,"totalAssists":14,"maxChampionsKilled":3,"maxNumDeaths":8}},{"id":17,"stats":{"totalSessionsPlayed":1,"totalSessionsLost":0,"totalSessionsWon":1,"totalChampionKills":5,"totalDamageDealt":110053,"totalDamageTaken":31142,"mostChampionKillsPerSession":5,"totalMinionKills":83,"totalDoubleKills":0,"totalTripleKills":0,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":6,"totalGoldEarned":15741,"mostSpellsCast":0,"totalTurretsKilled":1,"totalPhysicalDamageDealt":18764,"totalMagicDamageDealt":90066,"totalFirstBlood":0,"totalAssists":18,"maxChampionsKilled":5,"maxNumDeaths":6}},{"id":44,"stats":{"totalSessionsPlayed":3,"totalSessionsLost":2,"totalSessionsWon":1,"totalChampionKills":3,"totalDamageDealt":87358,"totalDamageTaken":83478,"mostChampionKillsPerSession":3,"totalMinionKills":116,"totalDoubleKills":0,"totalTripleKills":0,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":17,"totalGoldEarned":24134,"mostSpellsCast":0,"totalTurretsKilled":1,"totalPhysicalDamageDealt":22376,"totalMagicDamageDealt":56960,"totalFirstBlood":0,"totalAssists":30,"maxChampionsKilled":3,"maxNumDeaths":8}},{"id":18,"stats":{"totalSessionsPlayed":1,"totalSessionsLost":0,"totalSessionsWon":1,"totalChampionKills":8,"totalDamageDealt":153258,"totalDamageTaken":19584,"mostChampionKillsPerSession":8,"totalMinionKills":190,"totalDoubleKills":1,"totalTripleKills":0,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":3,"totalGoldEarned":13873,"mostSpellsCast":0,"totalTurretsKilled":6,"totalPhysicalDamageDealt":119960,"totalMagicDamageDealt":32403,"totalFirstBlood":0,"totalAssists":7,"maxChampionsKilled":8,"maxNumDeaths":3}},{"id":80,"stats":{"totalSessionsPlayed":4,"totalSessionsLost":2,"totalSessionsWon":2,"totalChampionKills":20,"totalDamageDealt":571984,"totalDamageTaken":89098,"mostChampionKillsPerSession":8,"totalMinionKills":265,"totalDoubleKills":1,"totalTripleKills":0,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":19,"totalGoldEarned":41601,"mostSpellsCast":0,"totalTurretsKilled":3,"totalPhysicalDamageDealt":465440,"totalMagicDamageDealt":34004,"totalFirstBlood":0,"totalAssists":27,"maxChampionsKilled":8,"maxNumDeaths":6}},{"id":77,"stats":{"totalSessionsPlayed":5,"totalSessionsLost":1,"totalSessionsWon":4,"totalChampionKills":16,"totalDamageDealt":680797,"totalDamageTaken":115504,"mostChampionKillsPerSession":5,"totalMinionKills":208,"totalDoubleKills":1,"totalTripleKills":1,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":14,"totalGoldEarned":49853,"mostSpellsCast":0,"totalTurretsKilled":5,"totalPhysicalDamageDealt":243403,"totalMagicDamageDealt":382248,"totalFirstBlood":0,"totalAssists":32,"maxChampionsKilled":5,"maxNumDeaths":7}},{"id":16,"stats":{"totalSessionsPlayed":4,"totalSessionsLost":3,"totalSessionsWon":1,"totalChampionKills":8,"totalDamageDealt":161271,"totalDamageTaken":99190,"mostChampionKillsPerSession":4,"totalMinionKills":133,"totalDoubleKills":0,"totalTripleKills":0,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":29,"totalGoldEarned":40330,"mostSpellsCast":0,"totalTurretsKilled":2,"totalPhysicalDamageDealt":22820,"totalMagicDamageDealt":137673,"totalFirstBlood":0,"totalAssists":50,"maxChampionsKilled":4,"maxNumDeaths":11}},{"id":236,"stats":{"totalSessionsPlayed":1,"totalSessionsLost":0,"totalSessionsWon":1,"totalChampionKills":7,"totalDamageDealt":171085,"totalDamageTaken":20598,"mostChampionKillsPerSession":7,"totalMinionKills":198,"totalDoubleKills":0,"totalTripleKills":0,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":3,"totalGoldEarned":14511,"mostSpellsCast":0,"totalTurretsKilled":2,"totalPhysicalDamageDealt":152061,"totalMagicDamageDealt":17587,"totalFirstBlood":0,"totalAssists":10,"maxChampionsKilled":7,"maxNumDeaths":3}},{"id":56,"stats":{"totalSessionsPlayed":3,"totalSessionsLost":2,"totalSessionsWon":1,"totalChampionKills":12,"totalDamageDealt":472425,"totalDamageTaken":114239,"mostChampionKillsPerSession":5,"totalMinionKills":218,"totalDoubleKills":1,"totalTripleKills":0,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":21,"totalGoldEarned":35797,"mostSpellsCast":0,"totalTurretsKilled":1,"totalPhysicalDamageDealt":375303,"totalMagicDamageDealt":49732,"totalFirstBlood":0,"totalAssists":36,"maxChampionsKilled":5,"maxNumDeaths":10}},{"id":89,"stats":{"totalSessionsPlayed":5,"totalSessionsLost":3,"totalSessionsWon":2,"totalChampionKills":7,"totalDamageDealt":187286,"totalDamageTaken":160701,"mostChampionKillsPerSession":4,"totalMinionKills":254,"totalDoubleKills":1,"totalTripleKills":0,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":37,"totalGoldEarned":47666,"mostSpellsCast":0,"totalTurretsKilled":1,"totalPhysicalDamageDealt":63835,"totalMagicDamageDealt":100795,"totalFirstBlood":0,"totalAssists":48,"maxChampionsKilled":4,"maxNumDeaths":13}},{"id":58,"stats":{"totalSessionsPlayed":4,"totalSessionsLost":1,"totalSessionsWon":3,"totalChampionKills":21,"totalDamageDealt":571827,"totalDamageTaken":170383,"mostChampionKillsPerSession":6,"totalMinionKills":860,"totalDoubleKills":1,"totalTripleKills":0,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":26,"totalGoldEarned":52015,"mostSpellsCast":0,"totalTurretsKilled":1,"totalPhysicalDamageDealt":442380,"totalMagicDamageDealt":120905,"totalFirstBlood":0,"totalAssists":26,"maxChampionsKilled":6,"maxNumDeaths":11}},{"id":412,"stats":{"totalSessionsPlayed":4,"totalSessionsLost":3,"totalSessionsWon":1,"totalChampionKills":12,"totalDamageDealt":112062,"totalDamageTaken":108974,"mostChampionKillsPerSession":6,"totalMinionKills":88,"totalDoubleKills":0,"totalTripleKills":0,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":31,"totalGoldEarned":37044,"mostSpellsCast":0,"totalTurretsKilled":2,"totalPhysicalDamageDealt":29849,"totalMagicDamageDealt":79750,"totalFirstBlood":0,"totalAssists":47,"maxChampionsKilled":6,"maxNumDeaths":9}},{"id":24,"stats":{"totalSessionsPlayed":1,"totalSessionsLost":0,"totalSessionsWon":1,"totalChampionKills":10,"totalDamageDealt":95820,"totalDamageTaken":29948,"mostChampionKillsPerSession":10,"totalMinionKills":126,"totalDoubleKills":2,"totalTripleKills":0,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":4,"totalGoldEarned":12851,"mostSpellsCast":0,"totalTurretsKilled":3,"totalPhysicalDamageDealt":83566,"totalMagicDamageDealt":12254,"totalFirstBlood":0,"totalAssists":10,"maxChampionsKilled":10,"maxNumDeaths":4}},{"id":54,"stats":{"totalSessionsPlayed":3,"totalSessionsLost":2,"totalSessionsWon":1,"totalChampionKills":8,"totalDamageDealt":309294,"totalDamageTaken":80384,"mostChampionKillsPerSession":6,"totalMinionKills":360,"totalDoubleKills":0,"totalTripleKills":0,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":17,"totalGoldEarned":29313,"mostSpellsCast":0,"totalTurretsKilled":2,"totalPhysicalDamageDealt":94109,"totalMagicDamageDealt":199556,"totalFirstBlood":0,"totalAssists":16,"maxChampionsKilled":6,"maxNumDeaths":7}},{"id":28,"stats":{"totalSessionsPlayed":11,"totalSessionsLost":5,"totalSessionsWon":6,"totalChampionKills":89,"totalDamageDealt":1711729,"totalDamageTaken":320477,"mostChampionKillsPerSession":15,"totalMinionKills":692,"totalDoubleKills":6,"totalTripleKills":2,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":67,"totalGoldEarned":145570,"mostSpellsCast":0,"totalTurretsKilled":7,"totalPhysicalDamageDealt":879483,"totalMagicDamageDealt":690013,"totalFirstBlood":0,"totalAssists":104,"maxChampionsKilled":15,"maxNumDeaths":11}},{"id":121,"stats":{"totalSessionsPlayed":10,"totalSessionsLost":7,"totalSessionsWon":3,"totalChampionKills":61,"totalDamageDealt":1999756,"totalDamageTaken":362074,"mostChampionKillsPerSession":13,"totalMinionKills":682,"totalDoubleKills":3,"totalTripleKills":0,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":66,"totalGoldEarned":133391,"mostSpellsCast":0,"totalTurretsKilled":2,"totalPhysicalDamageDealt":1778958,"totalMagicDamageDealt":25817,"totalFirstBlood":0,"totalAssists":69,"maxChampionsKilled":13,"maxNumDeaths":10}},{"id":32,"stats":{"totalSessionsPlayed":6,"totalSessionsLost":3,"totalSessionsWon":3,"totalChampionKills":33,"totalDamageDealt":1036468,"totalDamageTaken":219241,"mostChampionKillsPerSession":12,"totalMinionKills":330,"totalDoubleKills":3,"totalTripleKills":0,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":35,"totalGoldEarned":79448,"mostSpellsCast":0,"totalTurretsKilled":4,"totalPhysicalDamageDealt":150932,"totalMagicDamageDealt":789852,"totalFirstBlood":0,"totalAssists":72,"maxChampionsKilled":12,"maxNumDeaths":12}},{"id":0,"stats":{"totalSessionsPlayed":73,"totalSessionsLost":38,"totalSessionsWon":35,"totalChampionKills":340,"killingSpree":166,"totalDamageDealt":9062900,"totalDamageTaken":2230067,"mostChampionKillsPerSession":15,"totalMinionKills":5669,"totalDoubleKills":21,"totalTripleKills":3,"totalQuadraKills":0,"totalPentaKills":0,"totalUnrealKills":0,"totalDeathsPerSession":438,"totalGoldEarned":841136,"mostSpellsCast":0,"totalTurretsKilled":45,"totalPhysicalDamageDealt":5311186,"totalMagicDamageDealt":3069338,"totalNeutralMinionsKilled":3611,"totalFirstBlood":0,"totalAssists":656,"totalHeal":539154,"maxLargestKillingSpree":12,"maxLargestCriticalStrike":1348,"maxChampionsKilled":15,"maxNumDeaths":13,"maxTimePlayed":3529,"maxTimeSpentLiving":1968,"normalGamesPlayed":0,"rankedSoloGamesPlayed":0,"rankedPremadeGamesPlayed":0,"botGamesPlayed":0}}]}
@@ -1 +0,0 @@
1
- {"summonerId":30743211,"playerStatSummaries":[{"playerStatSummaryType":"AramUnranked5x5","wins":30,"modifyDate":1394006312000,"aggregatedStats":{"totalChampionKills":493,"totalTurretsKilled":24,"totalAssists":1276}},{"playerStatSummaryType":"CAP5x5","wins":0,"modifyDate":1396112296000,"aggregatedStats":{"totalChampionKills":10,"totalMinionKills":591,"totalTurretsKilled":2,"totalNeutralMinionsKilled":9,"totalAssists":11}},{"playerStatSummaryType":"CoopVsAI","wins":91,"modifyDate":1389918948000,"aggregatedStats":{"totalChampionKills":857,"totalMinionKills":10338,"totalTurretsKilled":168,"totalNeutralMinionsKilled":3596,"totalAssists":1243}},{"playerStatSummaryType":"OdinUnranked","wins":3,"modifyDate":1392040383000,"aggregatedStats":{"totalChampionKills":53,"totalAssists":47,"maxChampionsKilled":13,"averageNodeCapture":4,"averageNodeNeutralize":3,"averageTeamObjective":1,"averageTotalPlayerScore":929,"averageCombatPlayerScore":359,"averageObjectivePlayerScore":572,"averageNodeCaptureAssist":1,"averageNodeNeutralizeAssist":1,"maxNodeCapture":10,"maxNodeNeutralize":6,"maxTeamObjective":2,"maxTotalPlayerScore":1299,"maxCombatPlayerScore":718,"maxObjectivePlayerScore":898,"maxNodeCaptureAssist":2,"maxNodeNeutralizeAssist":3,"totalNodeNeutralize":26,"totalNodeCapture":36,"averageChampionsKilled":7,"averageNumDeaths":8,"averageAssists":6,"maxAssists":10}},{"playerStatSummaryType":"RankedSolo5x5","wins":35,"losses":39,"modifyDate":1395674770000,"aggregatedStats":{"totalChampionKills":340,"totalMinionKills":5730,"totalTurretsKilled":45,"totalNeutralMinionsKilled":3675,"totalAssists":660}},{"playerStatSummaryType":"SummonersRift6x6","wins":2,"modifyDate":1396112296000,"aggregatedStats":{"totalChampionKills":28,"totalMinionKills":251,"totalTurretsKilled":1,"totalNeutralMinionsKilled":212,"totalAssists":66}},{"playerStatSummaryType":"Unranked","wins":745,"modifyDate":1396281595000,"aggregatedStats":{"totalChampionKills":7005,"totalMinionKills":120156,"totalTurretsKilled":1091,"totalNeutralMinionsKilled":63276,"totalAssists":12740}},{"playerStatSummaryType":"Unranked3x3","wins":5,"modifyDate":1389918948000,"aggregatedStats":{"totalChampionKills":66,"totalMinionKills":1093,"totalTurretsKilled":3,"totalNeutralMinionsKilled":186,"totalAssists":59}},{"playerStatSummaryType":"URF","wins":3,"modifyDate":1396368924000,"aggregatedStats":{"totalChampionKills":48,"totalMinionKills":527,"totalTurretsKilled":1,"totalNeutralMinionsKilled":245,"totalAssists":82}}]}
@@ -1 +0,0 @@
1
- {"intinig":{"id":30743211,"name":"intinig","profileIconId":616,"summonerLevel":30,"revisionDate":1396368924000}}
@@ -1,898 +0,0 @@
1
- {
2
- "30743211": {
3
- "pages": [
4
- {
5
- "masteries": [
6
- {
7
- "rank": 2,
8
- "id": 4211
9
- },
10
- {
11
- "rank": 1,
12
- "id": 4121
13
- },
14
- {
15
- "rank": 2,
16
- "id": 4214
17
- },
18
- {
19
- "rank": 3,
20
- "id": 4134
21
- },
22
- {
23
- "rank": 3,
24
- "id": 4222
25
- },
26
- {
27
- "rank": 1,
28
- "id": 4221
29
- },
30
- {
31
- "rank": 1,
32
- "id": 4144
33
- },
34
- {
35
- "rank": 3,
36
- "id": 4122
37
- },
38
- {
39
- "rank": 3,
40
- "id": 4152
41
- },
42
- {
43
- "rank": 3,
44
- "id": 4123
45
- },
46
- {
47
- "rank": 1,
48
- "id": 4111
49
- },
50
- {
51
- "rank": 1,
52
- "id": 4132
53
- },
54
- {
55
- "rank": 1,
56
- "id": 4133
57
- },
58
- {
59
- "rank": 1,
60
- "id": 4232
61
- },
62
- {
63
- "rank": 1,
64
- "id": 4162
65
- },
66
- {
67
- "rank": 3,
68
- "id": 4113
69
- }
70
- ],
71
- "current": false,
72
- "name": "Evelynn",
73
- "id": 34170152
74
- },
75
- {
76
- "masteries": [
77
- {
78
- "rank": 2,
79
- "id": 4212
80
- },
81
- {
82
- "rank": 2,
83
- "id": 4211
84
- },
85
- {
86
- "rank": 1,
87
- "id": 4251
88
- },
89
- {
90
- "rank": 1,
91
- "id": 4114
92
- },
93
- {
94
- "rank": 4,
95
- "id": 4112
96
- },
97
- {
98
- "rank": 3,
99
- "id": 4222
100
- },
101
- {
102
- "rank": 1,
103
- "id": 4221
104
- },
105
- {
106
- "rank": 3,
107
- "id": 4122
108
- },
109
- {
110
- "rank": 1,
111
- "id": 4262
112
- },
113
- {
114
- "rank": 3,
115
- "id": 4252
116
- },
117
- {
118
- "rank": 1,
119
- "id": 4231
120
- },
121
- {
122
- "rank": 1,
123
- "id": 4132
124
- },
125
- {
126
- "rank": 3,
127
- "id": 4241
128
- },
129
- {
130
- "rank": 1,
131
- "id": 4234
132
- },
133
- {
134
- "rank": 1,
135
- "id": 4232
136
- },
137
- {
138
- "rank": 2,
139
- "id": 4233
140
- }
141
- ],
142
- "current": false,
143
- "name": "9\/21 AD + AS",
144
- "id": 34170153
145
- },
146
- {
147
- "masteries": [
148
- {
149
- "rank": 2,
150
- "id": 4212
151
- },
152
- {
153
- "rank": 2,
154
- "id": 4211
155
- },
156
- {
157
- "rank": 3,
158
- "id": 4134
159
- },
160
- {
161
- "rank": 1,
162
- "id": 4151
163
- },
164
- {
165
- "rank": 3,
166
- "id": 4222
167
- },
168
- {
169
- "rank": 4,
170
- "id": 4112
171
- },
172
- {
173
- "rank": 1,
174
- "id": 4144
175
- },
176
- {
177
- "rank": 1,
178
- "id": 4221
179
- },
180
- {
181
- "rank": 3,
182
- "id": 4122
183
- },
184
- {
185
- "rank": 3,
186
- "id": 4152
187
- },
188
- {
189
- "rank": 1,
190
- "id": 4111
191
- },
192
- {
193
- "rank": 1,
194
- "id": 4132
195
- },
196
- {
197
- "rank": 3,
198
- "id": 4142
199
- },
200
- {
201
- "rank": 1,
202
- "id": 4232
203
- },
204
- {
205
- "rank": 1,
206
- "id": 4162
207
- }
208
- ],
209
- "current": false,
210
- "name": "21\/9 AD AS",
211
- "id": 34170154
212
- },
213
- {
214
- "masteries": [
215
- {
216
- "rank": 2,
217
- "id": 4212
218
- },
219
- {
220
- "rank": 3,
221
- "id": 4233
222
- },
223
- {
224
- "rank": 1,
225
- "id": 4242
226
- },
227
- {
228
- "rank": 2,
229
- "id": 4211
230
- },
231
- {
232
- "rank": 3,
233
- "id": 4234
234
- },
235
- {
236
- "rank": 1,
237
- "id": 4251
238
- },
239
- {
240
- "rank": 3,
241
- "id": 4222
242
- },
243
- {
244
- "rank": 4,
245
- "id": 4113
246
- },
247
- {
248
- "rank": 1,
249
- "id": 4221
250
- },
251
- {
252
- "rank": 4,
253
- "id": 4252
254
- },
255
- {
256
- "rank": 1,
257
- "id": 4262
258
- },
259
- {
260
- "rank": 1,
261
- "id": 4231
262
- },
263
- {
264
- "rank": 3,
265
- "id": 4241
266
- },
267
- {
268
- "rank": 1,
269
- "id": 4232
270
- }
271
- ],
272
- "current": false,
273
- "name": "4\/26",
274
- "id": 34170155
275
- },
276
- {
277
- "masteries": [
278
- {
279
- "rank": 2,
280
- "id": 4212
281
- },
282
- {
283
- "rank": 3,
284
- "id": 4233
285
- },
286
- {
287
- "rank": 2,
288
- "id": 4211
289
- },
290
- {
291
- "rank": 1,
292
- "id": 4121
293
- },
294
- {
295
- "rank": 1,
296
- "id": 4244
297
- },
298
- {
299
- "rank": 3,
300
- "id": 4234
301
- },
302
- {
303
- "rank": 4,
304
- "id": 4112
305
- },
306
- {
307
- "rank": 3,
308
- "id": 4222
309
- },
310
- {
311
- "rank": 1,
312
- "id": 4221
313
- },
314
- {
315
- "rank": 4,
316
- "id": 4252
317
- },
318
- {
319
- "rank": 3,
320
- "id": 4122
321
- },
322
- {
323
- "rank": 1,
324
- "id": 4262
325
- },
326
- {
327
- "rank": 1,
328
- "id": 4132
329
- },
330
- {
331
- "rank": 1,
332
- "id": 4232
333
- }
334
- ],
335
- "current": false,
336
- "name": "Thresh",
337
- "id": 34170156
338
- },
339
- {
340
- "masteries": [
341
- {
342
- "rank": 2,
343
- "id": 4211
344
- },
345
- {
346
- "rank": 2,
347
- "id": 4214
348
- },
349
- {
350
- "rank": 3,
351
- "id": 4134
352
- },
353
- {
354
- "rank": 1,
355
- "id": 4124
356
- },
357
- {
358
- "rank": 1,
359
- "id": 4114
360
- },
361
- {
362
- "rank": 4,
363
- "id": 4112
364
- },
365
- {
366
- "rank": 3,
367
- "id": 4222
368
- },
369
- {
370
- "rank": 1,
371
- "id": 4144
372
- },
373
- {
374
- "rank": 3,
375
- "id": 4152
376
- },
377
- {
378
- "rank": 3,
379
- "id": 4122
380
- },
381
- {
382
- "rank": 1,
383
- "id": 4141
384
- },
385
- {
386
- "rank": 1,
387
- "id": 4224
388
- },
389
- {
390
- "rank": 1,
391
- "id": 4111
392
- },
393
- {
394
- "rank": 1,
395
- "id": 4132
396
- },
397
- {
398
- "rank": 1,
399
- "id": 4232
400
- },
401
- {
402
- "rank": 1,
403
- "id": 4162
404
- },
405
- {
406
- "rank": 1,
407
- "id": 4131
408
- }
409
- ],
410
- "current": false,
411
- "name": "21\/9 AD Jungler",
412
- "id": 34170157
413
- },
414
- {
415
- "masteries": [
416
- {
417
- "rank": 1,
418
- "id": 4242
419
- },
420
- {
421
- "rank": 2,
422
- "id": 4211
423
- },
424
- {
425
- "rank": 2,
426
- "id": 4214
427
- },
428
- {
429
- "rank": 1,
430
- "id": 4114
431
- },
432
- {
433
- "rank": 1,
434
- "id": 4251
435
- },
436
- {
437
- "rank": 4,
438
- "id": 4112
439
- },
440
- {
441
- "rank": 3,
442
- "id": 4222
443
- },
444
- {
445
- "rank": 1,
446
- "id": 4221
447
- },
448
- {
449
- "rank": 3,
450
- "id": 4122
451
- },
452
- {
453
- "rank": 1,
454
- "id": 4262
455
- },
456
- {
457
- "rank": 3,
458
- "id": 4252
459
- },
460
- {
461
- "rank": 1,
462
- "id": 4132
463
- },
464
- {
465
- "rank": 3,
466
- "id": 4241
467
- },
468
- {
469
- "rank": 1,
470
- "id": 4234
471
- },
472
- {
473
- "rank": 1,
474
- "id": 4232
475
- },
476
- {
477
- "rank": 2,
478
- "id": 4233
479
- }
480
- ],
481
- "current": false,
482
- "name": "Udyr Tanky Jungler",
483
- "id": 34170158
484
- },
485
- {
486
- "masteries": [
487
- {
488
- "rank": 2,
489
- "id": 4212
490
- },
491
- {
492
- "rank": 1,
493
- "id": 4242
494
- },
495
- {
496
- "rank": 2,
497
- "id": 4211
498
- },
499
- {
500
- "rank": 1,
501
- "id": 4251
502
- },
503
- {
504
- "rank": 1,
505
- "id": 4114
506
- },
507
- {
508
- "rank": 3,
509
- "id": 4222
510
- },
511
- {
512
- "rank": 4,
513
- "id": 4113
514
- },
515
- {
516
- "rank": 1,
517
- "id": 4221
518
- },
519
- {
520
- "rank": 3,
521
- "id": 4123
522
- },
523
- {
524
- "rank": 1,
525
- "id": 4262
526
- },
527
- {
528
- "rank": 3,
529
- "id": 4252
530
- },
531
- {
532
- "rank": 1,
533
- "id": 4133
534
- },
535
- {
536
- "rank": 1,
537
- "id": 4234
538
- },
539
- {
540
- "rank": 3,
541
- "id": 4241
542
- },
543
- {
544
- "rank": 1,
545
- "id": 4232
546
- },
547
- {
548
- "rank": 2,
549
- "id": 4233
550
- }
551
- ],
552
- "current": false,
553
- "name": "9\/21 AP",
554
- "id": 34170159
555
- },
556
- {
557
- "masteries": [
558
- {
559
- "rank": 2,
560
- "id": 4212
561
- },
562
- {
563
- "rank": 1,
564
- "id": 4242
565
- },
566
- {
567
- "rank": 2,
568
- "id": 4211
569
- },
570
- {
571
- "rank": 2,
572
- "id": 4214
573
- },
574
- {
575
- "rank": 1,
576
- "id": 4251
577
- },
578
- {
579
- "rank": 1,
580
- "id": 4114
581
- },
582
- {
583
- "rank": 3,
584
- "id": 4222
585
- },
586
- {
587
- "rank": 4,
588
- "id": 4113
589
- },
590
- {
591
- "rank": 1,
592
- "id": 4221
593
- },
594
- {
595
- "rank": 3,
596
- "id": 4123
597
- },
598
- {
599
- "rank": 1,
600
- "id": 4262
601
- },
602
- {
603
- "rank": 3,
604
- "id": 4252
605
- },
606
- {
607
- "rank": 1,
608
- "id": 4133
609
- },
610
- {
611
- "rank": 3,
612
- "id": 4241
613
- },
614
- {
615
- "rank": 1,
616
- "id": 4233
617
- },
618
- {
619
- "rank": 1,
620
- "id": 4232
621
- }
622
- ],
623
- "current": false,
624
- "name": "9\/21 AP Jungle",
625
- "id": 34170160
626
- },
627
- {
628
- "masteries": [
629
- {
630
- "rank": 2,
631
- "id": 4211
632
- },
633
- {
634
- "rank": 2,
635
- "id": 4214
636
- },
637
- {
638
- "rank": 1,
639
- "id": 4124
640
- },
641
- {
642
- "rank": 1,
643
- "id": 4114
644
- },
645
- {
646
- "rank": 4,
647
- "id": 4112
648
- },
649
- {
650
- "rank": 3,
651
- "id": 4222
652
- },
653
- {
654
- "rank": 4,
655
- "id": 4113
656
- },
657
- {
658
- "rank": 1,
659
- "id": 4221
660
- },
661
- {
662
- "rank": 3,
663
- "id": 4152
664
- },
665
- {
666
- "rank": 3,
667
- "id": 4123
668
- },
669
- {
670
- "rank": 1,
671
- "id": 4133
672
- },
673
- {
674
- "rank": 1,
675
- "id": 4232
676
- },
677
- {
678
- "rank": 3,
679
- "id": 4143
680
- },
681
- {
682
- "rank": 1,
683
- "id": 4162
684
- }
685
- ],
686
- "current": true,
687
- "name": "21\/9 AP Jungler",
688
- "id": 34170161
689
- },
690
- {
691
- "masteries": [
692
- {
693
- "rank": 3,
694
- "id": 4233
695
- },
696
- {
697
- "rank": 2,
698
- "id": 4212
699
- },
700
- {
701
- "rank": 2,
702
- "id": 4211
703
- },
704
- {
705
- "rank": 1,
706
- "id": 4121
707
- },
708
- {
709
- "rank": 3,
710
- "id": 4134
711
- },
712
- {
713
- "rank": 1,
714
- "id": 4244
715
- },
716
- {
717
- "rank": 3,
718
- "id": 4234
719
- },
720
- {
721
- "rank": 3,
722
- "id": 4222
723
- },
724
- {
725
- "rank": 1,
726
- "id": 4221
727
- },
728
- {
729
- "rank": 3,
730
- "id": 4122
731
- },
732
- {
733
- "rank": 1,
734
- "id": 4141
735
- },
736
- {
737
- "rank": 1,
738
- "id": 4111
739
- },
740
- {
741
- "rank": 1,
742
- "id": 4132
743
- },
744
- {
745
- "rank": 1,
746
- "id": 4232
747
- },
748
- {
749
- "rank": 3,
750
- "id": 4113
751
- },
752
- {
753
- "rank": 1,
754
- "id": 4131
755
- }
756
- ],
757
- "current": false,
758
- "name": "Renekton",
759
- "id": 34170162
760
- },
761
- {
762
- "masteries": [
763
- {
764
- "rank": 2,
765
- "id": 4212
766
- },
767
- {
768
- "rank": 3,
769
- "id": 4233
770
- },
771
- {
772
- "rank": 1,
773
- "id": 4242
774
- },
775
- {
776
- "rank": 2,
777
- "id": 4211
778
- },
779
- {
780
- "rank": 1,
781
- "id": 4243
782
- },
783
- {
784
- "rank": 2,
785
- "id": 4213
786
- },
787
- {
788
- "rank": 1,
789
- "id": 4244
790
- },
791
- {
792
- "rank": 3,
793
- "id": 4234
794
- },
795
- {
796
- "rank": 1,
797
- "id": 4251
798
- },
799
- {
800
- "rank": 3,
801
- "id": 4222
802
- },
803
- {
804
- "rank": 1,
805
- "id": 4221
806
- },
807
- {
808
- "rank": 4,
809
- "id": 4252
810
- },
811
- {
812
- "rank": 1,
813
- "id": 4262
814
- },
815
- {
816
- "rank": 1,
817
- "id": 4231
818
- },
819
- {
820
- "rank": 3,
821
- "id": 4241
822
- },
823
- {
824
- "rank": 1,
825
- "id": 4232
826
- }
827
- ],
828
- "current": false,
829
- "name": "Mastery Page 12",
830
- "id": 34170163
831
- },
832
- {
833
- "masteries": [
834
- {
835
- "rank": 2,
836
- "id": 4211
837
- },
838
- {
839
- "rank": 2,
840
- "id": 4214
841
- },
842
- {
843
- "rank": 1,
844
- "id": 4124
845
- },
846
- {
847
- "rank": 1,
848
- "id": 4323
849
- },
850
- {
851
- "rank": 1,
852
- "id": 4114
853
- },
854
- {
855
- "rank": 3,
856
- "id": 4222
857
- },
858
- {
859
- "rank": 4,
860
- "id": 4112
861
- },
862
- {
863
- "rank": 4,
864
- "id": 4113
865
- },
866
- {
867
- "rank": 1,
868
- "id": 4221
869
- },
870
- {
871
- "rank": 1,
872
- "id": 4324
873
- },
874
- {
875
- "rank": 3,
876
- "id": 4333
877
- },
878
- {
879
- "rank": 3,
880
- "id": 4312
881
- },
882
- {
883
- "rank": 3,
884
- "id": 4313
885
- },
886
- {
887
- "rank": 1,
888
- "id": 4232
889
- }
890
- ],
891
- "current": false,
892
- "name": "Udyr Giovanni",
893
- "id": 34170164
894
- }
895
- ],
896
- "summonerId": 30743211
897
- }
898
- }