ruby-lol 0.9.12 → 0.9.13
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/demo/demo.rb +132 -6
- data/lib/lol/champion.rb +1 -22
- data/lib/lol/champion_request.rb +18 -4
- data/lib/lol/client.rb +2 -0
- data/lib/lol/game.rb +5 -1
- data/lib/lol/{talent.rb → mastery.rb} +2 -6
- data/lib/lol/mastery_page.rb +5 -5
- data/lib/lol/request.rb +10 -2
- data/lib/lol/rune_slot.rb +9 -7
- data/lib/lol/stats_request.rb +1 -1
- data/lib/lol/summoner_request.rb +1 -1
- data/lib/lol/version.rb +1 -1
- data/spec/api_version_spec.rb +3 -3
- data/spec/fixtures/v1.2/get-champion-266.json +8 -0
- data/spec/fixtures/v1.2/get-champion.json +1 -0
- data/spec/fixtures/v1.3/get-ranked_stats.json +1 -0
- data/spec/fixtures/v1.3/get-stats.json +1 -0
- data/spec/fixtures/v1.3/get-summoner-masteries.json +1318 -1318
- data/spec/fixtures/v1.3/get-summoner-runes.json +4086 -4086
- data/spec/fixtures/v1.4/get-summoner-by-name.json +1 -0
- data/spec/fixtures/v1.4/get-summoner-masteries.json +898 -0
- data/spec/fixtures/v1.4/get-summoner-name.json +1 -0
- data/spec/fixtures/v1.4/get-summoner-runes.json +2547 -0
- data/spec/fixtures/v1.4/get-summoner.json +1 -0
- data/spec/lol/champion_request_spec.rb +28 -11
- data/spec/lol/champion_spec.rb +1 -1
- data/spec/lol/client_spec.rb +25 -24
- data/spec/lol/game_spec.rb +1 -1
- data/spec/lol/mastery_page_spec.rb +4 -4
- data/spec/lol/{talent_spec.rb → mastery_spec.rb} +2 -2
- data/spec/lol/model_spec.rb +1 -1
- data/spec/lol/request_spec.rb +6 -1
- data/spec/lol/rune_page_spec.rb +1 -1
- data/spec/lol/rune_slot_spec.rb +0 -10
- metadata +23 -8
- data/lib/lol/rune.rb +0 -23
- data/spec/lol/rune_spec.rb +0 -17
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 006de251c4e277db5f622c9a32b88bdf79f8d958
|
4
|
+
data.tar.gz: ec86dcb6c1b7dcd8f86f4bfbe0de26c229ca36f4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ebf690e5492bb56291144b7b46af261e0ac916dc68f4645e69fa3b7cf911d0d64567eb07aec2b95f04493d35d9cf7e1d69ddb4a8bd1a55e4b19dbd3ac0bc3d01
|
7
|
+
data.tar.gz: 8a63a55a1d9b5793576718d8f5019a1071cf74da00cc14c81a71a5e8ea4c33258bcfb00cf293eb60dde86363d77d622f058394c377e9f0509b0cc7cf9ad3395c
|
data/.gitignore
CHANGED
data/demo/demo.rb
CHANGED
@@ -4,11 +4,137 @@ require "rubygems"
|
|
4
4
|
require "ap"
|
5
5
|
require "lol"
|
6
6
|
|
7
|
-
|
7
|
+
module Lol
|
8
|
+
class Scraper
|
9
|
+
attr_accessor :req, :client, :redis, :seed_id
|
8
10
|
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
11
|
+
def get_summoner_id summoner
|
12
|
+
self.req += 1
|
13
|
+
client.summoner.by_name(summoner).first.id
|
14
|
+
end
|
15
|
+
|
16
|
+
def get_leagues summoner_id
|
17
|
+
self.req +=1
|
18
|
+
client.league.get summoner_id
|
19
|
+
end
|
20
|
+
|
21
|
+
def get_league_players summoner_id
|
22
|
+
get_leagues(summoner_id).map do |l|
|
23
|
+
l.entries.map do |entry|
|
24
|
+
if entry.player_or_team_id.to_i == 0
|
25
|
+
nil
|
26
|
+
else
|
27
|
+
entry.player_or_team_id
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end.flatten.compact
|
31
|
+
end
|
32
|
+
|
33
|
+
def scrape_solo_league_for_teams summoner_id
|
34
|
+
get_league_players(summoner_id).map do |player|
|
35
|
+
if req >= 500
|
36
|
+
puts "Dormo per un minuto..."
|
37
|
+
sleep(60)
|
38
|
+
self.req = 0
|
39
|
+
end
|
40
|
+
|
41
|
+
begin
|
42
|
+
puts "#{req}. #{player}"
|
43
|
+
if redis.sismember "losers", player
|
44
|
+
nil
|
45
|
+
else
|
46
|
+
redis.sadd "winners", player
|
47
|
+
self.req += 1
|
48
|
+
client.team.get player
|
49
|
+
end
|
50
|
+
rescue Lol::NotFound
|
51
|
+
puts "Hitting the API on 404 - No cache"
|
52
|
+
redis.sadd "losers", player
|
53
|
+
nil
|
54
|
+
rescue Lol::InvalidAPIResponse
|
55
|
+
puts "Hit Rate Limit on #{player}"
|
56
|
+
sleep(5)
|
57
|
+
nil
|
58
|
+
end
|
59
|
+
end.compact.flatten
|
60
|
+
end
|
61
|
+
|
62
|
+
def get_players_from_leagues summoner_id
|
63
|
+
begin
|
64
|
+
scrape_solo_league_for_teams(summoner_id).map do |t|
|
65
|
+
t.roster.member_list.map do |s|
|
66
|
+
s.player_id
|
67
|
+
end
|
68
|
+
end.flatten.uniq
|
69
|
+
rescue NoMethodError
|
70
|
+
[]
|
71
|
+
rescue Lol::NotFound
|
72
|
+
[]
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
def filter_captains
|
77
|
+
redis.smembers("winners").each do |winner|
|
78
|
+
ap winner
|
79
|
+
begin
|
80
|
+
team = client.team.get(winner)
|
81
|
+
rescue Lol::NotFound
|
82
|
+
next
|
83
|
+
rescue Lol::InvalidAPIResponse
|
84
|
+
puts "wait..."
|
85
|
+
sleep(5)
|
86
|
+
next
|
87
|
+
end
|
88
|
+
team.each do |t|
|
89
|
+
if t.roster.owner_id == winner.to_i
|
90
|
+
redis.sadd "captains", winner
|
91
|
+
end
|
92
|
+
end
|
93
|
+
end
|
94
|
+
end
|
95
|
+
|
96
|
+
def get_captains
|
97
|
+
puts redis.smembers("captains").sort
|
98
|
+
end
|
99
|
+
|
100
|
+
def initialize seed
|
101
|
+
@req = 0
|
102
|
+
@client = Client.new ENV["RIOT_GAMES_API_KEY"], region: "euw", redis: "redis://localhost:6379", ttl: 36000
|
103
|
+
@redis = Redis.new
|
104
|
+
|
105
|
+
@seed_id = get_summoner_id seed
|
106
|
+
end
|
107
|
+
end
|
14
108
|
end
|
109
|
+
|
110
|
+
|
111
|
+
# lotsa = scrape_league(get_summoner("intinig")).map do |player|
|
112
|
+
# player.map do |team|
|
113
|
+
# team.roster.member_list.map(&:player_id)
|
114
|
+
# end.flatten
|
115
|
+
# end.flatten.uniq
|
116
|
+
|
117
|
+
# so_many = []
|
118
|
+
|
119
|
+
# lotsa.each do |summoner|
|
120
|
+
# next if @redis.sismember("winners", summoner)
|
121
|
+
# ap get_players(summoner)
|
122
|
+
# so_many << scrape_league(summoner).map do |player|
|
123
|
+
# player.map do |team|
|
124
|
+
# team.roster.member_list.map(&:player_id)
|
125
|
+
# end.flatten
|
126
|
+
# end.flatten
|
127
|
+
# end
|
128
|
+
|
129
|
+
# ap so_many
|
130
|
+
|
131
|
+
scraper = Lol::Scraper.new "intinig"
|
132
|
+
scraper.get_captains
|
133
|
+
# scraper.get_players_from_leagues(scraper.seed_id).map do |player|
|
134
|
+
# begin
|
135
|
+
# player = scraper.client.summoner.get(player).first.id
|
136
|
+
# scraper.get_players_from_leagues(player)
|
137
|
+
# rescue Lol::InvalidAPIResponse
|
138
|
+
# sleep(2)
|
139
|
+
# end
|
140
|
+
# end
|
data/lib/lol/champion.rb
CHANGED
@@ -4,31 +4,11 @@ module Lol
|
|
4
4
|
# @return [Fixnum] id of Champion
|
5
5
|
attr_reader :id
|
6
6
|
|
7
|
-
# @!attribute [r] name
|
8
|
-
# @return [String] name of Champion
|
9
|
-
attr_reader :name
|
10
|
-
|
11
7
|
# @!attribute [r] active
|
12
8
|
# @return [true] if the Champion is active
|
13
9
|
# @return [false] if the Champion is disabled
|
14
10
|
attr_reader :active
|
15
11
|
|
16
|
-
# @!attribute [r] attack_rank
|
17
|
-
# @return [Fixnum] attack rank of Champion
|
18
|
-
attr_reader :attack_rank
|
19
|
-
|
20
|
-
# @!attribute [r] defense_rank
|
21
|
-
# @return [Fixnum] defense rank of Champion
|
22
|
-
attr_reader :defense_rank
|
23
|
-
|
24
|
-
# @!attribute [r] magic_rank
|
25
|
-
# @return [Fixnum] magic rank of Champion
|
26
|
-
attr_reader :magic_rank
|
27
|
-
|
28
|
-
# @!attribute [r] difficulty_rank
|
29
|
-
# @return [Fixnum] difficulty rank of Champion
|
30
|
-
attr_reader :difficulty_rank
|
31
|
-
|
32
12
|
# @!attribute [r] bot_enabled
|
33
13
|
# @return [true] if the Champion is enabled in custom bot games
|
34
14
|
# @return [false] if the Champion is disabled in custom bot games
|
@@ -51,8 +31,7 @@ module Lol
|
|
51
31
|
|
52
32
|
private
|
53
33
|
|
54
|
-
attr_writer :id, :
|
55
|
-
:difficulty_rank, :bot_enabled, :free_to_play, :bot_mm_enabled,
|
34
|
+
attr_writer :id, :active, :bot_enabled, :free_to_play, :bot_mm_enabled,
|
56
35
|
:ranked_play_enabled
|
57
36
|
end
|
58
37
|
end
|
data/lib/lol/champion_request.rb
CHANGED
@@ -3,13 +3,27 @@ module Lol
|
|
3
3
|
# Returns the supported API Version
|
4
4
|
# @return [String] the supported api version
|
5
5
|
def self.api_version
|
6
|
-
"v1.
|
6
|
+
"v1.2"
|
7
7
|
end
|
8
8
|
|
9
|
-
# Retrieve all champions
|
9
|
+
# Retrieve all champions
|
10
|
+
# @param [Hash] options the options to pass to the call
|
11
|
+
# @option options [Fixnum] :id the champion to get. If nil gets all champions
|
12
|
+
# @option options [Boolean] :free_to_play filters for free to play champions
|
10
13
|
# @return [Array] an array of champions
|
11
|
-
def get
|
12
|
-
|
14
|
+
def get options = {}
|
15
|
+
|
16
|
+
champion_id = options.delete :id
|
17
|
+
free_to_play = options.delete(:free_to_play) ? true : false
|
18
|
+
|
19
|
+
url = champion_id ? "champion/#{champion_id}" : "champion"
|
20
|
+
result = perform_request(api_url(url, "freeToPlay" => free_to_play))
|
21
|
+
|
22
|
+
if champion_id
|
23
|
+
Champion.new(result)
|
24
|
+
else
|
25
|
+
result["champions"].map {|c| Champion.new(c)}
|
26
|
+
end
|
13
27
|
end
|
14
28
|
|
15
29
|
end
|
data/lib/lol/client.rb
CHANGED
@@ -52,6 +52,8 @@ module Lol
|
|
52
52
|
# @param api_key [String]
|
53
53
|
# @param options [Hash]
|
54
54
|
# @option options [String] :region ("EUW") The region on which the requests will be made
|
55
|
+
# @option options [String] :redis the redis url to use for caching
|
56
|
+
# @option options [Fixnum] :ttl (900) the cache ttl
|
55
57
|
# @return [Lol::Client]
|
56
58
|
def initialize api_key, options = {}
|
57
59
|
@api_key = api_key
|
data/lib/lol/game.rb
CHANGED
@@ -31,6 +31,10 @@ module Lol
|
|
31
31
|
# @return [false] if the game is valid
|
32
32
|
attr_reader :invalid
|
33
33
|
|
34
|
+
# @!attribute [r] ip_earned
|
35
|
+
# @return [Fixnum] IP Earned
|
36
|
+
attr_reader :ip_earned
|
37
|
+
|
34
38
|
# @!attribute [r] level
|
35
39
|
# @return [Fixnum] Level
|
36
40
|
attr_reader :level
|
@@ -61,7 +65,7 @@ module Lol
|
|
61
65
|
|
62
66
|
private
|
63
67
|
|
64
|
-
attr_writer :champion_id, :game_id, :game_mode, :game_type, :invalid,
|
68
|
+
attr_writer :champion_id, :game_id, :game_mode, :game_type, :invalid, :ip_earned,
|
65
69
|
:level, :map_id, :spell1, :spell2, :sub_type, :team_id
|
66
70
|
|
67
71
|
def create_date= value
|
@@ -1,20 +1,16 @@
|
|
1
1
|
module Lol
|
2
|
-
class
|
2
|
+
class Mastery < Model
|
3
3
|
|
4
4
|
# @!attribute [r] id
|
5
5
|
# @return [Fixnum] id of talent
|
6
6
|
attr_reader :id
|
7
7
|
|
8
|
-
# @!attribute [r] name
|
9
|
-
# @return [String] name of talent
|
10
|
-
attr_reader :name
|
11
|
-
|
12
8
|
# @!attribute [r] rank
|
13
9
|
# @return [Fixnum] rank of talent
|
14
10
|
attr_reader :rank
|
15
11
|
|
16
12
|
private
|
17
13
|
|
18
|
-
attr_writer :id, :
|
14
|
+
attr_writer :id, :rank
|
19
15
|
end
|
20
16
|
end
|
data/lib/lol/mastery_page.rb
CHANGED
@@ -5,9 +5,9 @@ module Lol
|
|
5
5
|
# @return [Fixnum] mastery page id
|
6
6
|
attr_reader :id
|
7
7
|
|
8
|
-
# @!attribute [r]
|
9
|
-
# @return [Array] array of Lol::
|
10
|
-
attr_reader :
|
8
|
+
# @!attribute [r] masteries
|
9
|
+
# @return [Array] array of Lol::Mastery
|
10
|
+
attr_reader :masteries
|
11
11
|
|
12
12
|
# @!attribute [r] name
|
13
13
|
# @return [String] name of mastery page
|
@@ -21,8 +21,8 @@ module Lol
|
|
21
21
|
|
22
22
|
attr_writer :id, :name, :current
|
23
23
|
|
24
|
-
def
|
25
|
-
@
|
24
|
+
def masteries= new_masteries
|
25
|
+
@masteries = new_masteries.map {|t| Mastery.new t}
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
data/lib/lol/request.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
require "uri"
|
2
|
+
|
1
3
|
module Lol
|
2
4
|
class InvalidAPIResponse < StandardError; end
|
3
5
|
class NotFound < StandardError; end
|
@@ -35,11 +37,17 @@ module Lol
|
|
35
37
|
File.join "http://prod.api.pvp.net/api/lol/#{region}/#{self.class.api_version}/", "#{path}?#{query_string}"
|
36
38
|
end
|
37
39
|
|
40
|
+
# Returns just a path from a full api url
|
41
|
+
# @return [String]
|
42
|
+
def clean_url(url)
|
43
|
+
URI.parse(url).path
|
44
|
+
end
|
45
|
+
|
38
46
|
# Calls the API via HTTParty and handles errors
|
39
47
|
# @param url [String] the url to call
|
40
48
|
# @return [String] raw response of the call
|
41
49
|
def perform_request url
|
42
|
-
if cached? && result = store.get(url)
|
50
|
+
if cached? && result = store.get(clean_url(url))
|
43
51
|
return JSON.parse(result)
|
44
52
|
end
|
45
53
|
|
@@ -48,7 +56,7 @@ module Lol
|
|
48
56
|
raise InvalidAPIResponse.new(response["status"]["message"]) if response.is_a?(Hash) && response["status"]
|
49
57
|
|
50
58
|
if cached?
|
51
|
-
store.set url, response.to_json
|
59
|
+
store.set clean_url(url), response.to_json
|
52
60
|
store.expire url, ttl
|
53
61
|
end
|
54
62
|
|
data/lib/lol/rune_slot.rb
CHANGED
@@ -6,20 +6,22 @@ module Lol
|
|
6
6
|
@rune_slot_id
|
7
7
|
end
|
8
8
|
|
9
|
-
# @!attribute [r]
|
10
|
-
# @return [
|
11
|
-
|
9
|
+
# @!attribute [r] rune_id
|
10
|
+
# @return [Fixnum] id of Rune
|
11
|
+
def rune_id
|
12
|
+
@rune_id
|
13
|
+
end
|
12
14
|
|
13
15
|
private
|
14
16
|
|
15
|
-
def rune= rune_data
|
16
|
-
@rune = Rune.new rune_data
|
17
|
-
end
|
18
|
-
|
19
17
|
def id= new_id
|
20
18
|
@rune_slot_id = new_id
|
21
19
|
end
|
22
20
|
|
21
|
+
def rune_id= new_id
|
22
|
+
@rune_id = new_id
|
23
|
+
end
|
24
|
+
|
23
25
|
def rune_slot_id= new_id
|
24
26
|
@rune_slot_id = new_id
|
25
27
|
end
|
data/lib/lol/stats_request.rb
CHANGED
data/lib/lol/summoner_request.rb
CHANGED
data/lib/lol/version.rb
CHANGED
data/spec/api_version_spec.rb
CHANGED
@@ -13,11 +13,11 @@ def check_api_version(klass, version)
|
|
13
13
|
end
|
14
14
|
|
15
15
|
describe "API Versions" do
|
16
|
-
check_api_version(ChampionRequest, "v1.
|
16
|
+
check_api_version(ChampionRequest, "v1.2")
|
17
17
|
check_api_version(GameRequest, "v1.3")
|
18
18
|
check_api_version(LeagueRequest, "v2.3")
|
19
|
-
check_api_version(StatsRequest, "v1.
|
20
|
-
check_api_version(SummonerRequest, "v1.
|
19
|
+
check_api_version(StatsRequest, "v1.3")
|
20
|
+
check_api_version(SummonerRequest, "v1.4")
|
21
21
|
check_api_version(TeamRequest, "v2.2")
|
22
22
|
check_api_version(StaticRequest, "v1")
|
23
23
|
end
|
@@ -0,0 +1 @@
|
|
1
|
+
{"champions":[{"id":266,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":103,"active":true,"botEnabled":false,"freeToPlay":true,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":84,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":12,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":32,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":34,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":1,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":22,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":53,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":63,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":51,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":69,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":31,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":42,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":122,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":131,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":119,"active":true,"botEnabled":false,"freeToPlay":true,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":36,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":60,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":28,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":81,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":9,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":114,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":105,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":3,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":41,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":86,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":79,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":104,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":120,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":74,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":39,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":40,"active":true,"botEnabled":false,"freeToPlay":true,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":59,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":24,"active":true,"botEnabled":false,"freeToPlay":true,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":126,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":222,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":43,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":30,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":38,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":55,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":10,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":85,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":121,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":96,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":7,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":64,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":89,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":127,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":236,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":117,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":99,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":54,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":90,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":57,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":11,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":21,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":62,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":82,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":25,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":267,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":75,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":111,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":76,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":56,"active":true,"botEnabled":false,"freeToPlay":true,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":20,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":2,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":61,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":80,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":78,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":133,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":33,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":58,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":107,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":92,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":68,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":13,"active":true,"botEnabled":true,"freeToPlay":true,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":113,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":35,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":98,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":102,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":27,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":14,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":15,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":72,"active":true,"botEnabled":false,"freeToPlay":true,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":37,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":16,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":50,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":134,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":91,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":44,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":17,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":412,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":18,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":48,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":23,"active":true,"botEnabled":false,"freeToPlay":true,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":4,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":29,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":77,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":6,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":110,"active":true,"botEnabled":false,"freeToPlay":true,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":67,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":45,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":161,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":254,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":112,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":8,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":106,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":19,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":101,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":5,"active":true,"botEnabled":true,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":157,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":83,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":154,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":238,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":false,"rankedPlayEnabled":true},{"id":115,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":26,"active":true,"botEnabled":false,"freeToPlay":false,"botMmEnabled":true,"rankedPlayEnabled":true},{"id":143,"active":true,"botEnabled":false,"freeToPlay":true,"botMmEnabled":true,"rankedPlayEnabled":true}]}
|
@@ -0,0 +1 @@
|
|
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}}]}
|
@@ -0,0 +1 @@
|
|
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,2316 +1,2316 @@
|
|
1
1
|
{
|
2
|
-
"
|
3
|
-
"summonerId": 30743211,
|
2
|
+
"33249714": {
|
4
3
|
"pages": [
|
5
4
|
{
|
6
|
-
"id": 34170136,
|
7
|
-
"name": "AD (more atk)",
|
8
|
-
"current": false,
|
9
5
|
"talents": [
|
10
6
|
{
|
11
|
-
"
|
12
|
-
"name": "
|
13
|
-
"
|
7
|
+
"rank": 3,
|
8
|
+
"name": "Hardiness",
|
9
|
+
"id": 4233
|
10
|
+
},
|
11
|
+
{
|
12
|
+
"rank": 1,
|
13
|
+
"name": "Swiftness",
|
14
|
+
"id": 4242
|
14
15
|
},
|
15
16
|
{
|
16
|
-
"
|
17
|
+
"rank": 2,
|
17
18
|
"name": "Block",
|
18
|
-
"
|
19
|
+
"id": 4211
|
19
20
|
},
|
20
21
|
{
|
21
|
-
"
|
22
|
-
"name": "
|
23
|
-
"
|
22
|
+
"rank": 2,
|
23
|
+
"name": "Enchanted Armor",
|
24
|
+
"id": 4213
|
24
25
|
},
|
25
26
|
{
|
26
|
-
"
|
27
|
+
"rank": 1,
|
27
28
|
"name": "Feast",
|
28
|
-
"
|
29
|
+
"id": 4124
|
29
30
|
},
|
30
31
|
{
|
31
|
-
"
|
32
|
+
"rank": 1,
|
32
33
|
"name": "Butcher",
|
33
|
-
"
|
34
|
+
"id": 4114
|
34
35
|
},
|
35
36
|
{
|
36
|
-
"
|
37
|
-
"name": "
|
38
|
-
"
|
37
|
+
"rank": 1,
|
38
|
+
"name": "Second Wind",
|
39
|
+
"id": 4251
|
39
40
|
},
|
40
41
|
{
|
41
|
-
"
|
42
|
+
"rank": 3,
|
42
43
|
"name": "Veteran's Scars",
|
43
|
-
"
|
44
|
+
"id": 4222
|
44
45
|
},
|
45
46
|
{
|
46
|
-
"
|
47
|
+
"rank": 1,
|
47
48
|
"name": "Unyielding",
|
48
|
-
"
|
49
|
+
"id": 4221
|
49
50
|
},
|
50
51
|
{
|
51
|
-
"
|
52
|
-
"name": "
|
53
|
-
"
|
52
|
+
"rank": 1,
|
53
|
+
"name": "Runic Blessing",
|
54
|
+
"id": 4253
|
54
55
|
},
|
55
56
|
{
|
56
|
-
"
|
57
|
-
"name": "
|
58
|
-
"
|
57
|
+
"rank": 1,
|
58
|
+
"name": "Tenacious",
|
59
|
+
"id": 4262
|
60
|
+
},
|
61
|
+
{
|
62
|
+
"rank": 1,
|
63
|
+
"name": "Oppression",
|
64
|
+
"id": 4231
|
59
65
|
},
|
60
66
|
{
|
61
|
-
"
|
67
|
+
"rank": 1,
|
62
68
|
"name": "Double-Edged Sword",
|
63
|
-
"
|
69
|
+
"id": 4111
|
64
70
|
},
|
65
71
|
{
|
66
|
-
"
|
67
|
-
"name": "
|
68
|
-
"
|
72
|
+
"rank": 3,
|
73
|
+
"name": "Perseverance",
|
74
|
+
"id": 4241
|
69
75
|
},
|
70
76
|
{
|
71
|
-
"
|
72
|
-
"name": "
|
73
|
-
"
|
77
|
+
"rank": 1,
|
78
|
+
"name": "Resistance",
|
79
|
+
"id": 4234
|
74
80
|
},
|
75
81
|
{
|
76
|
-
"
|
82
|
+
"rank": 1,
|
77
83
|
"name": "Juggernaut",
|
78
|
-
"
|
84
|
+
"id": 4232
|
79
85
|
},
|
80
86
|
{
|
81
|
-
"
|
82
|
-
"name": "
|
83
|
-
"
|
87
|
+
"rank": 2,
|
88
|
+
"name": "Brute Force",
|
89
|
+
"id": 4122
|
84
90
|
},
|
85
91
|
{
|
86
|
-
"
|
92
|
+
"rank": 3,
|
87
93
|
"name": "Fury",
|
88
|
-
"
|
94
|
+
"id": 4112
|
95
|
+
},
|
96
|
+
{
|
97
|
+
"rank": 1,
|
98
|
+
"name": "Spell Weaving",
|
99
|
+
"id": 4131
|
89
100
|
}
|
90
|
-
]
|
101
|
+
],
|
102
|
+
"current": true,
|
103
|
+
"name": "tank",
|
104
|
+
"id": 36928738
|
91
105
|
},
|
92
106
|
{
|
93
|
-
"id": 34170137,
|
94
|
-
"name": "AD (more def)",
|
95
|
-
"current": false,
|
96
107
|
"talents": [
|
97
108
|
{
|
98
|
-
"
|
99
|
-
"name": "
|
100
|
-
"
|
109
|
+
"rank": 3,
|
110
|
+
"name": "Hardiness",
|
111
|
+
"id": 4233
|
101
112
|
},
|
102
113
|
{
|
103
|
-
"
|
104
|
-
"name": "
|
105
|
-
"
|
114
|
+
"rank": 2,
|
115
|
+
"name": "Block",
|
116
|
+
"id": 4211
|
106
117
|
},
|
107
118
|
{
|
108
|
-
"
|
109
|
-
"name": "
|
110
|
-
"
|
119
|
+
"rank": 1,
|
120
|
+
"name": "Reinforced Armor",
|
121
|
+
"id": 4243
|
111
122
|
},
|
112
123
|
{
|
113
|
-
"
|
114
|
-
"name": "
|
115
|
-
"
|
124
|
+
"rank": 2,
|
125
|
+
"name": "Tough Skin",
|
126
|
+
"id": 4214
|
116
127
|
},
|
117
128
|
{
|
118
|
-
"
|
119
|
-
"name": "
|
120
|
-
"
|
129
|
+
"rank": 2,
|
130
|
+
"name": "Enchanted Armor",
|
131
|
+
"id": 4213
|
121
132
|
},
|
122
133
|
{
|
123
|
-
"
|
124
|
-
"name": "
|
125
|
-
"
|
134
|
+
"rank": 1,
|
135
|
+
"name": "Feast",
|
136
|
+
"id": 4124
|
126
137
|
},
|
127
138
|
{
|
128
|
-
"
|
139
|
+
"rank": 1,
|
129
140
|
"name": "Butcher",
|
130
|
-
"
|
141
|
+
"id": 4114
|
131
142
|
},
|
132
143
|
{
|
133
|
-
"
|
144
|
+
"rank": 3,
|
134
145
|
"name": "Veteran's Scars",
|
135
|
-
"
|
146
|
+
"id": 4222
|
136
147
|
},
|
137
148
|
{
|
138
|
-
"
|
149
|
+
"rank": 4,
|
139
150
|
"name": "Sorcery",
|
140
|
-
"
|
151
|
+
"id": 4113
|
141
152
|
},
|
142
153
|
{
|
143
|
-
"
|
154
|
+
"rank": 1,
|
144
155
|
"name": "Unyielding",
|
145
|
-
"
|
156
|
+
"id": 4221
|
146
157
|
},
|
147
158
|
{
|
148
|
-
"
|
159
|
+
"rank": 4,
|
149
160
|
"name": "Legendary Guardian",
|
150
|
-
"
|
161
|
+
"id": 4252
|
151
162
|
},
|
152
163
|
{
|
153
|
-
"
|
164
|
+
"rank": 1,
|
154
165
|
"name": "Tenacious",
|
155
|
-
"
|
156
|
-
},
|
157
|
-
{
|
158
|
-
"id": 4231,
|
159
|
-
"name": "Oppression",
|
160
|
-
"rank": 1
|
166
|
+
"id": 4262
|
161
167
|
},
|
162
168
|
{
|
163
|
-
"
|
164
|
-
"name": "Perseverance",
|
165
|
-
"rank": 3
|
166
|
-
},
|
167
|
-
{
|
168
|
-
"id": 4234,
|
169
|
+
"rank": 1,
|
169
170
|
"name": "Resistance",
|
170
|
-
"
|
171
|
+
"id": 4234
|
171
172
|
},
|
172
173
|
{
|
173
|
-
"
|
174
|
-
"name": "
|
175
|
-
"
|
174
|
+
"rank": 1,
|
175
|
+
"name": "Juggernaut",
|
176
|
+
"id": 4232
|
176
177
|
},
|
177
178
|
{
|
178
|
-
"
|
179
|
-
"name": "
|
180
|
-
"
|
179
|
+
"rank": 2,
|
180
|
+
"name": "Brute Force",
|
181
|
+
"id": 4122
|
181
182
|
}
|
182
|
-
]
|
183
|
+
],
|
184
|
+
"current": false,
|
185
|
+
"name": "jungler",
|
186
|
+
"id": 36928739
|
183
187
|
},
|
184
188
|
{
|
185
|
-
"id": 34170138,
|
186
|
-
"name": "AD (more atk, cdr)",
|
187
|
-
"current": false,
|
188
189
|
"talents": [
|
189
190
|
{
|
190
|
-
"
|
191
|
-
"name": "
|
192
|
-
"
|
193
|
-
},
|
194
|
-
{
|
195
|
-
"id": 4134,
|
196
|
-
"name": "Executioner",
|
197
|
-
"rank": 3
|
191
|
+
"rank": 3,
|
192
|
+
"name": "Hardiness",
|
193
|
+
"id": 4233
|
198
194
|
},
|
199
195
|
{
|
200
|
-
"
|
201
|
-
"name": "
|
202
|
-
"
|
196
|
+
"rank": 1,
|
197
|
+
"name": "Swiftness",
|
198
|
+
"id": 4242
|
203
199
|
},
|
204
200
|
{
|
205
|
-
"
|
206
|
-
"name": "
|
207
|
-
"
|
201
|
+
"rank": 1,
|
202
|
+
"name": "Mental Force",
|
203
|
+
"id": 4123
|
208
204
|
},
|
209
205
|
{
|
210
|
-
"
|
211
|
-
"name": "
|
212
|
-
"
|
206
|
+
"rank": 2,
|
207
|
+
"name": "Block",
|
208
|
+
"id": 4211
|
213
209
|
},
|
214
210
|
{
|
215
|
-
"
|
216
|
-
"name": "
|
217
|
-
"
|
211
|
+
"rank": 2,
|
212
|
+
"name": "Enchanted Armor",
|
213
|
+
"id": 4213
|
218
214
|
},
|
219
215
|
{
|
220
|
-
"
|
221
|
-
"name": "
|
222
|
-
"
|
216
|
+
"rank": 3,
|
217
|
+
"name": "Veteran's Scars",
|
218
|
+
"id": 4222
|
223
219
|
},
|
224
220
|
{
|
225
|
-
"
|
226
|
-
"name": "
|
227
|
-
"
|
221
|
+
"rank": 4,
|
222
|
+
"name": "Fury",
|
223
|
+
"id": 4112
|
228
224
|
},
|
229
225
|
{
|
230
|
-
"
|
231
|
-
"name": "
|
232
|
-
"
|
226
|
+
"rank": 1,
|
227
|
+
"name": "Unyielding",
|
228
|
+
"id": 4221
|
233
229
|
},
|
234
230
|
{
|
235
|
-
"
|
236
|
-
"name": "
|
237
|
-
"
|
231
|
+
"rank": 4,
|
232
|
+
"name": "Legendary Guardian",
|
233
|
+
"id": 4252
|
238
234
|
},
|
239
235
|
{
|
240
|
-
"
|
241
|
-
"name": "
|
242
|
-
"
|
236
|
+
"rank": 3,
|
237
|
+
"name": "Brute Force",
|
238
|
+
"id": 4122
|
243
239
|
},
|
244
240
|
{
|
245
|
-
"
|
246
|
-
"name": "
|
247
|
-
"
|
241
|
+
"rank": 1,
|
242
|
+
"name": "Tenacious",
|
243
|
+
"id": 4262
|
248
244
|
},
|
249
245
|
{
|
250
|
-
"
|
251
|
-
"name": "
|
252
|
-
"
|
246
|
+
"rank": 3,
|
247
|
+
"name": "Perseverance",
|
248
|
+
"id": 4241
|
253
249
|
},
|
254
250
|
{
|
255
|
-
"
|
256
|
-
"name": "
|
257
|
-
"
|
251
|
+
"rank": 1,
|
252
|
+
"name": "Executioner",
|
253
|
+
"id": 4134
|
258
254
|
},
|
259
255
|
{
|
260
|
-
"
|
261
|
-
"name": "
|
262
|
-
"
|
256
|
+
"rank": 1,
|
257
|
+
"name": "Juggernaut",
|
258
|
+
"id": 4232
|
263
259
|
}
|
264
|
-
]
|
260
|
+
],
|
261
|
+
"current": false,
|
262
|
+
"name": "AD",
|
263
|
+
"id": 36928740
|
265
264
|
},
|
266
265
|
{
|
267
|
-
"id": 34170139,
|
268
|
-
"name": "AD (more def, cdr)",
|
269
|
-
"current": false,
|
270
266
|
"talents": [
|
271
267
|
{
|
272
|
-
"
|
268
|
+
"rank": 2,
|
273
269
|
"name": "Recovery",
|
274
|
-
"
|
270
|
+
"id": 4212
|
275
271
|
},
|
276
272
|
{
|
277
|
-
"
|
278
|
-
"name": "
|
279
|
-
"
|
273
|
+
"rank": 2,
|
274
|
+
"name": "Tough Skin",
|
275
|
+
"id": 4214
|
280
276
|
},
|
281
277
|
{
|
282
|
-
"
|
278
|
+
"rank": 1,
|
283
279
|
"name": "Block",
|
284
|
-
"
|
280
|
+
"id": 4211
|
285
281
|
},
|
286
282
|
{
|
287
|
-
"
|
288
|
-
"name": "
|
289
|
-
"
|
290
|
-
},
|
291
|
-
{
|
292
|
-
"id": 4213,
|
293
|
-
"name": "Enchanted Armor",
|
294
|
-
"rank": 2
|
283
|
+
"rank": 3,
|
284
|
+
"name": "Executioner",
|
285
|
+
"id": 4134
|
295
286
|
},
|
296
287
|
{
|
297
|
-
"
|
298
|
-
"name": "
|
299
|
-
"
|
288
|
+
"rank": 1,
|
289
|
+
"name": "Feast",
|
290
|
+
"id": 4124
|
300
291
|
},
|
301
292
|
{
|
302
|
-
"
|
293
|
+
"rank": 1,
|
303
294
|
"name": "Butcher",
|
304
|
-
"
|
295
|
+
"id": 4114
|
305
296
|
},
|
306
297
|
{
|
307
|
-
"
|
308
|
-
"name": "
|
309
|
-
"
|
298
|
+
"rank": 3,
|
299
|
+
"name": "Veteran's Scars",
|
300
|
+
"id": 4222
|
310
301
|
},
|
311
302
|
{
|
312
|
-
"
|
303
|
+
"rank": 4,
|
313
304
|
"name": "Sorcery",
|
314
|
-
"
|
305
|
+
"id": 4113
|
315
306
|
},
|
316
307
|
{
|
317
|
-
"
|
318
|
-
"name": "
|
319
|
-
"
|
308
|
+
"rank": 1,
|
309
|
+
"name": "Dangerous Game",
|
310
|
+
"id": 4144
|
320
311
|
},
|
321
312
|
{
|
322
|
-
"
|
323
|
-
"name": "
|
324
|
-
"
|
313
|
+
"rank": 3,
|
314
|
+
"name": "Devastating Strikes",
|
315
|
+
"id": 4152
|
325
316
|
},
|
326
317
|
{
|
327
|
-
"
|
328
|
-
"name": "
|
329
|
-
"
|
318
|
+
"rank": 3,
|
319
|
+
"name": "Mental Force",
|
320
|
+
"id": 4123
|
330
321
|
},
|
331
322
|
{
|
332
|
-
"
|
333
|
-
"name": "
|
334
|
-
"
|
323
|
+
"rank": 1,
|
324
|
+
"name": "Arcane Mastery",
|
325
|
+
"id": 4133
|
326
|
+
},
|
327
|
+
{
|
328
|
+
"rank": 3,
|
329
|
+
"name": "Archmage",
|
330
|
+
"id": 4143
|
331
|
+
},
|
332
|
+
{
|
333
|
+
"rank": 1,
|
334
|
+
"name": "Havoc",
|
335
|
+
"id": 4162
|
335
336
|
}
|
336
|
-
]
|
337
|
+
],
|
338
|
+
"current": false,
|
339
|
+
"name": "AP",
|
340
|
+
"id": 36928741
|
337
341
|
},
|
338
342
|
{
|
339
|
-
"id": 34170140,
|
340
|
-
"name": "Jungle AD (more atk)",
|
341
|
-
"current": false,
|
342
343
|
"talents": [
|
343
344
|
{
|
344
|
-
"
|
345
|
-
"name": "
|
346
|
-
"
|
345
|
+
"rank": 2,
|
346
|
+
"name": "Recovery",
|
347
|
+
"id": 4212
|
347
348
|
},
|
348
349
|
{
|
349
|
-
"
|
350
|
-
"name": "
|
351
|
-
"
|
350
|
+
"rank": 2,
|
351
|
+
"name": "Block",
|
352
|
+
"id": 4211
|
352
353
|
},
|
353
354
|
{
|
354
|
-
"
|
355
|
+
"rank": 3,
|
355
356
|
"name": "Executioner",
|
356
|
-
"
|
357
|
-
},
|
358
|
-
{
|
359
|
-
"id": 4212,
|
360
|
-
"name": "Recovery",
|
361
|
-
"rank": 1
|
357
|
+
"id": 4134
|
362
358
|
},
|
363
359
|
{
|
364
|
-
"
|
360
|
+
"rank": 1,
|
365
361
|
"name": "Feast",
|
366
|
-
"
|
362
|
+
"id": 4124
|
367
363
|
},
|
368
364
|
{
|
369
|
-
"
|
365
|
+
"rank": 1,
|
370
366
|
"name": "Butcher",
|
371
|
-
"
|
367
|
+
"id": 4114
|
368
|
+
},
|
369
|
+
{
|
370
|
+
"rank": 1,
|
371
|
+
"name": "Frenzy",
|
372
|
+
"id": 4151
|
372
373
|
},
|
373
374
|
{
|
374
|
-
"
|
375
|
+
"rank": 3,
|
375
376
|
"name": "Veteran's Scars",
|
376
|
-
"
|
377
|
+
"id": 4222
|
377
378
|
},
|
378
379
|
{
|
379
|
-
"
|
380
|
+
"rank": 1,
|
380
381
|
"name": "Unyielding",
|
381
|
-
"
|
382
|
+
"id": 4221
|
382
383
|
},
|
383
384
|
{
|
384
|
-
"
|
385
|
-
"name": "
|
386
|
-
"
|
385
|
+
"rank": 1,
|
386
|
+
"name": "Dangerous Game",
|
387
|
+
"id": 4144
|
387
388
|
},
|
388
389
|
{
|
389
|
-
"
|
390
|
+
"rank": 3,
|
390
391
|
"name": "Brute Force",
|
391
|
-
"
|
392
|
+
"id": 4122
|
392
393
|
},
|
393
394
|
{
|
394
|
-
"
|
395
|
-
"name": "
|
396
|
-
"
|
395
|
+
"rank": 3,
|
396
|
+
"name": "Devastating Strikes",
|
397
|
+
"id": 4152
|
398
|
+
},
|
399
|
+
{
|
400
|
+
"rank": 1,
|
401
|
+
"name": "Oppression",
|
402
|
+
"id": 4231
|
397
403
|
},
|
398
404
|
{
|
399
|
-
"
|
405
|
+
"rank": 1,
|
400
406
|
"name": "Martial Mastery",
|
401
|
-
"
|
407
|
+
"id": 4132
|
402
408
|
},
|
403
409
|
{
|
404
|
-
"
|
410
|
+
"rank": 3,
|
405
411
|
"name": "Warlord",
|
406
|
-
"
|
412
|
+
"id": 4142
|
407
413
|
},
|
408
414
|
{
|
409
|
-
"
|
415
|
+
"rank": 1,
|
410
416
|
"name": "Havoc",
|
411
|
-
"
|
417
|
+
"id": 4162
|
412
418
|
},
|
413
419
|
{
|
414
|
-
"
|
420
|
+
"rank": 3,
|
415
421
|
"name": "Fury",
|
416
|
-
"
|
417
|
-
},
|
418
|
-
{
|
419
|
-
"id": 4131,
|
420
|
-
"name": "Spell Weaving",
|
421
|
-
"rank": 1
|
422
|
+
"id": 4112
|
422
423
|
}
|
423
|
-
]
|
424
|
+
],
|
425
|
+
"current": false,
|
426
|
+
"name": "ADC",
|
427
|
+
"id": 36928742
|
424
428
|
},
|
425
429
|
{
|
426
|
-
"id": 34170141,
|
427
|
-
"name": "Jungle AD (more def)",
|
428
|
-
"current": false,
|
429
430
|
"talents": [
|
430
431
|
{
|
431
|
-
"
|
432
|
-
"name": "
|
433
|
-
"
|
432
|
+
"rank": 2,
|
433
|
+
"name": "Recovery",
|
434
|
+
"id": 4212
|
434
435
|
},
|
435
436
|
{
|
436
|
-
"
|
437
|
+
"rank": 2,
|
437
438
|
"name": "Block",
|
438
|
-
"
|
439
|
-
},
|
440
|
-
{
|
441
|
-
"id": 4214,
|
442
|
-
"name": "Tough Skin",
|
443
|
-
"rank": 2
|
439
|
+
"id": 4211
|
444
440
|
},
|
445
441
|
{
|
446
|
-
"
|
447
|
-
"name": "
|
448
|
-
"
|
442
|
+
"rank": 3,
|
443
|
+
"name": "Executioner",
|
444
|
+
"id": 4134
|
449
445
|
},
|
450
446
|
{
|
451
|
-
"
|
452
|
-
"name": "
|
453
|
-
"
|
447
|
+
"rank": 1,
|
448
|
+
"name": "Frenzy",
|
449
|
+
"id": 4151
|
454
450
|
},
|
455
451
|
{
|
456
|
-
"
|
457
|
-
"name": "
|
458
|
-
"
|
452
|
+
"rank": 3,
|
453
|
+
"name": "Veteran's Scars",
|
454
|
+
"id": 4222
|
459
455
|
},
|
460
456
|
{
|
461
|
-
"
|
462
|
-
"name": "
|
463
|
-
"
|
457
|
+
"rank": 4,
|
458
|
+
"name": "Fury",
|
459
|
+
"id": 4112
|
464
460
|
},
|
465
461
|
{
|
466
|
-
"
|
467
|
-
"name": "
|
468
|
-
"
|
462
|
+
"rank": 1,
|
463
|
+
"name": "Dangerous Game",
|
464
|
+
"id": 4144
|
469
465
|
},
|
470
466
|
{
|
471
|
-
"
|
467
|
+
"rank": 1,
|
472
468
|
"name": "Unyielding",
|
473
|
-
"
|
469
|
+
"id": 4221
|
474
470
|
},
|
475
471
|
{
|
476
|
-
"
|
472
|
+
"rank": 3,
|
477
473
|
"name": "Brute Force",
|
478
|
-
"
|
479
|
-
},
|
480
|
-
{
|
481
|
-
"id": 4262,
|
482
|
-
"name": "Tenacious",
|
483
|
-
"rank": 1
|
474
|
+
"id": 4122
|
484
475
|
},
|
485
476
|
{
|
486
|
-
"
|
487
|
-
"name": "
|
488
|
-
"
|
477
|
+
"rank": 3,
|
478
|
+
"name": "Devastating Strikes",
|
479
|
+
"id": 4152
|
489
480
|
},
|
490
481
|
{
|
491
|
-
"
|
492
|
-
"name": "
|
493
|
-
"
|
482
|
+
"rank": 1,
|
483
|
+
"name": "Double-Edged Sword",
|
484
|
+
"id": 4111
|
494
485
|
},
|
495
486
|
{
|
496
|
-
"
|
487
|
+
"rank": 1,
|
497
488
|
"name": "Martial Mastery",
|
498
|
-
"
|
489
|
+
"id": 4132
|
499
490
|
},
|
500
491
|
{
|
501
|
-
"
|
502
|
-
"name": "
|
503
|
-
"
|
492
|
+
"rank": 3,
|
493
|
+
"name": "Warlord",
|
494
|
+
"id": 4142
|
504
495
|
},
|
505
496
|
{
|
506
|
-
"
|
497
|
+
"rank": 1,
|
507
498
|
"name": "Juggernaut",
|
508
|
-
"
|
499
|
+
"id": 4232
|
509
500
|
},
|
510
501
|
{
|
511
|
-
"
|
512
|
-
"name": "
|
513
|
-
"
|
502
|
+
"rank": 1,
|
503
|
+
"name": "Havoc",
|
504
|
+
"id": 4162
|
514
505
|
}
|
515
|
-
]
|
506
|
+
],
|
507
|
+
"current": false,
|
508
|
+
"name": "Sivir",
|
509
|
+
"id": 36928743
|
516
510
|
},
|
517
511
|
{
|
518
|
-
"id": 34170142,
|
519
|
-
"name": "Jungle AD (more atk, cdr)",
|
520
|
-
"current": false,
|
521
512
|
"talents": [
|
522
513
|
{
|
523
|
-
"
|
524
|
-
"name": "Recovery",
|
525
|
-
"rank": 2
|
526
|
-
},
|
527
|
-
{
|
528
|
-
"id": 4211,
|
514
|
+
"rank": 2,
|
529
515
|
"name": "Block",
|
530
|
-
"
|
516
|
+
"id": 4211
|
531
517
|
},
|
532
518
|
{
|
533
|
-
"
|
519
|
+
"rank": 2,
|
534
520
|
"name": "Tough Skin",
|
535
|
-
"
|
521
|
+
"id": 4214
|
536
522
|
},
|
537
523
|
{
|
538
|
-
"
|
524
|
+
"rank": 3,
|
539
525
|
"name": "Executioner",
|
540
|
-
"
|
526
|
+
"id": 4134
|
541
527
|
},
|
542
528
|
{
|
543
|
-
"
|
529
|
+
"rank": 1,
|
530
|
+
"name": "Arcane Blade",
|
531
|
+
"id": 4154
|
532
|
+
},
|
533
|
+
{
|
534
|
+
"rank": 1,
|
544
535
|
"name": "Feast",
|
545
|
-
"
|
536
|
+
"id": 4124
|
546
537
|
},
|
547
538
|
{
|
548
|
-
"
|
539
|
+
"rank": 1,
|
549
540
|
"name": "Butcher",
|
550
|
-
"
|
541
|
+
"id": 4114
|
551
542
|
},
|
552
543
|
{
|
553
|
-
"
|
544
|
+
"rank": 3,
|
554
545
|
"name": "Veteran's Scars",
|
555
|
-
"
|
546
|
+
"id": 4222
|
556
547
|
},
|
557
548
|
{
|
558
|
-
"
|
549
|
+
"rank": 4,
|
559
550
|
"name": "Sorcery",
|
560
|
-
"
|
551
|
+
"id": 4113
|
561
552
|
},
|
562
553
|
{
|
563
|
-
"
|
564
|
-
"name": "
|
565
|
-
"
|
554
|
+
"rank": 1,
|
555
|
+
"name": "Unyielding",
|
556
|
+
"id": 4221
|
566
557
|
},
|
567
558
|
{
|
568
|
-
"
|
569
|
-
"name": "
|
570
|
-
"
|
559
|
+
"rank": 3,
|
560
|
+
"name": "Devastating Strikes",
|
561
|
+
"id": 4152
|
571
562
|
},
|
572
563
|
{
|
573
|
-
"
|
574
|
-
"name": "
|
575
|
-
"
|
564
|
+
"rank": 3,
|
565
|
+
"name": "Mental Force",
|
566
|
+
"id": 4123
|
576
567
|
},
|
577
568
|
{
|
578
|
-
"
|
579
|
-
"name": "
|
580
|
-
"
|
569
|
+
"rank": 1,
|
570
|
+
"name": "Arcane Mastery",
|
571
|
+
"id": 4133
|
581
572
|
},
|
582
573
|
{
|
583
|
-
"
|
584
|
-
"name": "
|
585
|
-
"
|
574
|
+
"rank": 3,
|
575
|
+
"name": "Archmage",
|
576
|
+
"id": 4143
|
577
|
+
},
|
578
|
+
{
|
579
|
+
"rank": 1,
|
580
|
+
"name": "Juggernaut",
|
581
|
+
"id": 4232
|
586
582
|
},
|
587
583
|
{
|
588
|
-
"
|
584
|
+
"rank": 1,
|
589
585
|
"name": "Havoc",
|
590
|
-
"
|
586
|
+
"id": 4162
|
591
587
|
}
|
592
|
-
]
|
588
|
+
],
|
589
|
+
"current": false,
|
590
|
+
"name": "Eve",
|
591
|
+
"id": 36928744
|
593
592
|
},
|
594
593
|
{
|
595
|
-
"id": 34170143,
|
596
|
-
"name": "Jungle AD (more def, cdr)",
|
597
594
|
"current": false,
|
595
|
+
"name": "@@!PaG3!@@36928745",
|
596
|
+
"id": 36928745
|
597
|
+
}
|
598
|
+
],
|
599
|
+
"summonerId": 33249714
|
600
|
+
},
|
601
|
+
"30743211": {
|
602
|
+
"pages": [
|
603
|
+
{
|
598
604
|
"talents": [
|
599
605
|
{
|
600
|
-
"
|
606
|
+
"rank": 2,
|
601
607
|
"name": "Recovery",
|
602
|
-
"
|
603
|
-
},
|
604
|
-
{
|
605
|
-
"id": 4242,
|
606
|
-
"name": "Swiftness",
|
607
|
-
"rank": 1
|
608
|
+
"id": 4212
|
608
609
|
},
|
609
610
|
{
|
610
|
-
"
|
611
|
+
"rank": 2,
|
611
612
|
"name": "Block",
|
612
|
-
"
|
613
|
+
"id": 4211
|
613
614
|
},
|
614
615
|
{
|
615
|
-
"
|
616
|
-
"name": "
|
617
|
-
"
|
616
|
+
"rank": 3,
|
617
|
+
"name": "Executioner",
|
618
|
+
"id": 4134
|
618
619
|
},
|
619
620
|
{
|
620
|
-
"
|
621
|
+
"rank": 1,
|
621
622
|
"name": "Feast",
|
622
|
-
"
|
623
|
-
},
|
624
|
-
{
|
625
|
-
"id": 4251,
|
626
|
-
"name": "Second Wind",
|
627
|
-
"rank": 1
|
623
|
+
"id": 4124
|
628
624
|
},
|
629
625
|
{
|
630
|
-
"
|
626
|
+
"rank": 1,
|
631
627
|
"name": "Butcher",
|
632
|
-
"
|
628
|
+
"id": 4114
|
633
629
|
},
|
634
630
|
{
|
635
|
-
"
|
636
|
-
"name": "
|
637
|
-
"
|
631
|
+
"rank": 1,
|
632
|
+
"name": "Frenzy",
|
633
|
+
"id": 4151
|
638
634
|
},
|
639
635
|
{
|
640
|
-
"
|
636
|
+
"rank": 3,
|
641
637
|
"name": "Veteran's Scars",
|
642
|
-
"
|
638
|
+
"id": 4222
|
643
639
|
},
|
644
640
|
{
|
645
|
-
"
|
641
|
+
"rank": 1,
|
646
642
|
"name": "Unyielding",
|
647
|
-
"
|
643
|
+
"id": 4221
|
648
644
|
},
|
649
645
|
{
|
650
|
-
"
|
651
|
-
"name": "
|
652
|
-
"
|
646
|
+
"rank": 3,
|
647
|
+
"name": "Devastating Strikes",
|
648
|
+
"id": 4152
|
653
649
|
},
|
654
650
|
{
|
655
|
-
"
|
656
|
-
"name": "
|
657
|
-
"
|
651
|
+
"rank": 3,
|
652
|
+
"name": "Brute Force",
|
653
|
+
"id": 4122
|
658
654
|
},
|
659
655
|
{
|
660
|
-
"
|
661
|
-
"name": "
|
662
|
-
"
|
656
|
+
"rank": 1,
|
657
|
+
"name": "Double-Edged Sword",
|
658
|
+
"id": 4111
|
663
659
|
},
|
664
660
|
{
|
665
|
-
"
|
666
|
-
"name": "
|
667
|
-
"
|
661
|
+
"rank": 1,
|
662
|
+
"name": "Martial Mastery",
|
663
|
+
"id": 4132
|
664
|
+
},
|
665
|
+
{
|
666
|
+
"rank": 3,
|
667
|
+
"name": "Warlord",
|
668
|
+
"id": 4142
|
668
669
|
},
|
669
670
|
{
|
670
|
-
"
|
671
|
+
"rank": 1,
|
671
672
|
"name": "Juggernaut",
|
672
|
-
"
|
673
|
+
"id": 4232
|
673
674
|
},
|
674
675
|
{
|
675
|
-
"
|
676
|
-
"name": "
|
677
|
-
"
|
676
|
+
"rank": 1,
|
677
|
+
"name": "Havoc",
|
678
|
+
"id": 4162
|
679
|
+
},
|
680
|
+
{
|
681
|
+
"rank": 3,
|
682
|
+
"name": "Fury",
|
683
|
+
"id": 4112
|
678
684
|
}
|
679
|
-
]
|
685
|
+
],
|
686
|
+
"current": false,
|
687
|
+
"name": "AD (more atk)",
|
688
|
+
"id": 34170136
|
680
689
|
},
|
681
690
|
{
|
682
|
-
"id": 34170144,
|
683
|
-
"name": "Support",
|
684
|
-
"current": false,
|
685
691
|
"talents": [
|
686
692
|
{
|
687
|
-
"
|
693
|
+
"rank": 2,
|
688
694
|
"name": "Recovery",
|
689
|
-
"
|
690
|
-
},
|
691
|
-
{
|
692
|
-
"id": 4211,
|
693
|
-
"name": "Block",
|
694
|
-
"rank": 2
|
695
|
+
"id": 4212
|
695
696
|
},
|
696
697
|
{
|
697
|
-
"
|
698
|
-
"name": "
|
699
|
-
"
|
698
|
+
"rank": 1,
|
699
|
+
"name": "Swiftness",
|
700
|
+
"id": 4242
|
700
701
|
},
|
701
702
|
{
|
702
|
-
"
|
703
|
-
"name": "
|
704
|
-
"
|
703
|
+
"rank": 2,
|
704
|
+
"name": "Block",
|
705
|
+
"id": 4211
|
705
706
|
},
|
706
707
|
{
|
707
|
-
"
|
708
|
-
"name": "
|
709
|
-
"
|
708
|
+
"rank": 2,
|
709
|
+
"name": "Enchanted Armor",
|
710
|
+
"id": 4213
|
710
711
|
},
|
711
712
|
{
|
712
|
-
"
|
713
|
-
"name": "
|
714
|
-
"
|
713
|
+
"rank": 1,
|
714
|
+
"name": "Feast",
|
715
|
+
"id": 4124
|
715
716
|
},
|
716
717
|
{
|
717
|
-
"
|
718
|
-
"name": "
|
719
|
-
"
|
718
|
+
"rank": 1,
|
719
|
+
"name": "Second Wind",
|
720
|
+
"id": 4251
|
720
721
|
},
|
721
722
|
{
|
722
|
-
"
|
723
|
-
"name": "
|
724
|
-
"
|
723
|
+
"rank": 1,
|
724
|
+
"name": "Butcher",
|
725
|
+
"id": 4114
|
725
726
|
},
|
726
727
|
{
|
727
|
-
"
|
728
|
+
"rank": 3,
|
728
729
|
"name": "Veteran's Scars",
|
729
|
-
"
|
730
|
+
"id": 4222
|
730
731
|
},
|
731
732
|
{
|
732
|
-
"
|
733
|
-
"name": "
|
734
|
-
"
|
733
|
+
"rank": 4,
|
734
|
+
"name": "Sorcery",
|
735
|
+
"id": 4113
|
735
736
|
},
|
736
737
|
{
|
737
|
-
"
|
738
|
+
"rank": 1,
|
738
739
|
"name": "Unyielding",
|
739
|
-
"
|
740
|
+
"id": 4221
|
740
741
|
},
|
741
742
|
{
|
742
|
-
"
|
743
|
-
"name": "
|
744
|
-
"
|
743
|
+
"rank": 4,
|
744
|
+
"name": "Legendary Guardian",
|
745
|
+
"id": 4252
|
745
746
|
},
|
746
747
|
{
|
747
|
-
"
|
748
|
-
"name": "
|
749
|
-
"
|
748
|
+
"rank": 1,
|
749
|
+
"name": "Tenacious",
|
750
|
+
"id": 4262
|
750
751
|
},
|
751
752
|
{
|
752
|
-
"
|
753
|
-
"name": "
|
754
|
-
"
|
753
|
+
"rank": 1,
|
754
|
+
"name": "Oppression",
|
755
|
+
"id": 4231
|
755
756
|
},
|
756
757
|
{
|
757
|
-
"
|
758
|
-
"name": "
|
759
|
-
"
|
758
|
+
"rank": 3,
|
759
|
+
"name": "Perseverance",
|
760
|
+
"id": 4241
|
760
761
|
},
|
761
762
|
{
|
762
|
-
"
|
763
|
-
"name": "
|
764
|
-
"
|
763
|
+
"rank": 1,
|
764
|
+
"name": "Resistance",
|
765
|
+
"id": 4234
|
765
766
|
},
|
766
767
|
{
|
767
|
-
"
|
768
|
-
"name": "
|
769
|
-
"
|
768
|
+
"rank": 1,
|
769
|
+
"name": "Hardiness",
|
770
|
+
"id": 4233
|
771
|
+
},
|
772
|
+
{
|
773
|
+
"rank": 1,
|
774
|
+
"name": "Juggernaut",
|
775
|
+
"id": 4232
|
770
776
|
}
|
771
|
-
]
|
777
|
+
],
|
778
|
+
"current": false,
|
779
|
+
"name": "AD (more def)",
|
780
|
+
"id": 34170137
|
772
781
|
},
|
773
782
|
{
|
774
|
-
"id": 34170145,
|
775
|
-
"name": "Tank Sup",
|
776
|
-
"current": false,
|
777
783
|
"talents": [
|
778
784
|
{
|
779
|
-
"
|
780
|
-
"name": "Hardiness",
|
781
|
-
"rank": 3
|
782
|
-
},
|
783
|
-
{
|
784
|
-
"id": 4211,
|
785
|
+
"rank": 2,
|
785
786
|
"name": "Block",
|
786
|
-
"
|
787
|
+
"id": 4211
|
787
788
|
},
|
788
789
|
{
|
789
|
-
"
|
790
|
-
"name": "
|
791
|
-
"
|
790
|
+
"rank": 3,
|
791
|
+
"name": "Executioner",
|
792
|
+
"id": 4134
|
792
793
|
},
|
793
794
|
{
|
794
|
-
"
|
795
|
+
"rank": 2,
|
795
796
|
"name": "Enchanted Armor",
|
796
|
-
"
|
797
|
+
"id": 4213
|
797
798
|
},
|
798
799
|
{
|
799
|
-
"
|
800
|
-
"name": "
|
801
|
-
"
|
802
|
-
},
|
803
|
-
{
|
804
|
-
"id": 4323,
|
805
|
-
"name": "Strength of Spirit",
|
806
|
-
"rank": 1
|
800
|
+
"rank": 3,
|
801
|
+
"name": "Veteran's Scars",
|
802
|
+
"id": 4222
|
807
803
|
},
|
808
804
|
{
|
809
|
-
"
|
810
|
-
"name": "
|
811
|
-
"
|
805
|
+
"rank": 4,
|
806
|
+
"name": "Sorcery",
|
807
|
+
"id": 4113
|
812
808
|
},
|
813
809
|
{
|
814
|
-
"
|
810
|
+
"rank": 1,
|
815
811
|
"name": "Unyielding",
|
816
|
-
"
|
812
|
+
"id": 4221
|
817
813
|
},
|
818
814
|
{
|
819
|
-
"
|
820
|
-
"name": "
|
821
|
-
"
|
815
|
+
"rank": 3,
|
816
|
+
"name": "Brute Force",
|
817
|
+
"id": 4122
|
822
818
|
},
|
823
819
|
{
|
824
|
-
"
|
825
|
-
"name": "
|
826
|
-
"
|
820
|
+
"rank": 3,
|
821
|
+
"name": "Devastating Strikes",
|
822
|
+
"id": 4152
|
827
823
|
},
|
828
824
|
{
|
829
|
-
"
|
830
|
-
"name": "
|
831
|
-
"
|
825
|
+
"rank": 1,
|
826
|
+
"name": "Blade Weaving",
|
827
|
+
"id": 4141
|
832
828
|
},
|
833
829
|
{
|
834
|
-
"
|
835
|
-
"name": "
|
836
|
-
"
|
830
|
+
"rank": 1,
|
831
|
+
"name": "Double-Edged Sword",
|
832
|
+
"id": 4111
|
837
833
|
},
|
838
834
|
{
|
839
|
-
"
|
840
|
-
"name": "
|
841
|
-
"
|
835
|
+
"rank": 1,
|
836
|
+
"name": "Martial Mastery",
|
837
|
+
"id": 4132
|
842
838
|
},
|
843
839
|
{
|
844
|
-
"
|
845
|
-
"name": "
|
846
|
-
"
|
840
|
+
"rank": 3,
|
841
|
+
"name": "Warlord",
|
842
|
+
"id": 4142
|
847
843
|
},
|
848
844
|
{
|
849
|
-
"
|
845
|
+
"rank": 1,
|
850
846
|
"name": "Juggernaut",
|
851
|
-
"
|
847
|
+
"id": 4232
|
848
|
+
},
|
849
|
+
{
|
850
|
+
"rank": 1,
|
851
|
+
"name": "Havoc",
|
852
|
+
"id": 4162
|
853
|
+
},
|
854
|
+
{
|
855
|
+
"rank": 1,
|
856
|
+
"name": "Spell Weaving",
|
857
|
+
"id": 4131
|
852
858
|
}
|
853
|
-
]
|
859
|
+
],
|
860
|
+
"current": false,
|
861
|
+
"name": "AD (more atk, cdr)",
|
862
|
+
"id": 34170138
|
854
863
|
},
|
855
864
|
{
|
856
|
-
"id": 34170146,
|
857
|
-
"name": "Cho Gath",
|
858
|
-
"current": false,
|
859
865
|
"talents": [
|
860
866
|
{
|
861
|
-
"
|
867
|
+
"rank": 2,
|
862
868
|
"name": "Recovery",
|
863
|
-
"
|
864
|
-
},
|
865
|
-
{
|
866
|
-
"id": 4233,
|
867
|
-
"name": "Hardiness",
|
868
|
-
"rank": 3
|
869
|
+
"id": 4212
|
869
870
|
},
|
870
871
|
{
|
871
|
-
"
|
872
|
+
"rank": 1,
|
872
873
|
"name": "Swiftness",
|
873
|
-
"
|
874
|
+
"id": 4242
|
874
875
|
},
|
875
876
|
{
|
876
|
-
"
|
877
|
-
"name": "
|
878
|
-
"
|
877
|
+
"rank": 2,
|
878
|
+
"name": "Block",
|
879
|
+
"id": 4211
|
879
880
|
},
|
880
881
|
{
|
881
|
-
"
|
882
|
+
"rank": 2,
|
882
883
|
"name": "Tough Skin",
|
883
|
-
"
|
884
|
+
"id": 4214
|
884
885
|
},
|
885
886
|
{
|
886
|
-
"
|
887
|
-
"name": "
|
888
|
-
"
|
887
|
+
"rank": 2,
|
888
|
+
"name": "Enchanted Armor",
|
889
|
+
"id": 4213
|
889
890
|
},
|
890
891
|
{
|
891
|
-
"
|
892
|
-
"name": "
|
893
|
-
"
|
892
|
+
"rank": 3,
|
893
|
+
"name": "Resistance",
|
894
|
+
"id": 4234
|
894
895
|
},
|
895
896
|
{
|
896
|
-
"
|
897
|
+
"rank": 1,
|
897
898
|
"name": "Butcher",
|
898
|
-
"
|
899
|
+
"id": 4114
|
899
900
|
},
|
900
901
|
{
|
901
|
-
"
|
902
|
-
"name": "
|
903
|
-
"
|
904
|
-
},
|
905
|
-
{
|
906
|
-
"id": 4222,
|
907
|
-
"name": "Veteran's Scars",
|
908
|
-
"rank": 3
|
902
|
+
"rank": 4,
|
903
|
+
"name": "Fury",
|
904
|
+
"id": 4112
|
909
905
|
},
|
910
906
|
{
|
911
|
-
"
|
912
|
-
"name": "
|
913
|
-
"
|
907
|
+
"rank": 4,
|
908
|
+
"name": "Sorcery",
|
909
|
+
"id": 4113
|
914
910
|
},
|
915
911
|
{
|
916
|
-
"
|
917
|
-
"name": "
|
918
|
-
"
|
912
|
+
"rank": 1,
|
913
|
+
"name": "Unyielding",
|
914
|
+
"id": 4221
|
919
915
|
},
|
920
916
|
{
|
921
|
-
"
|
922
|
-
"name": "
|
923
|
-
"
|
917
|
+
"rank": 4,
|
918
|
+
"name": "Legendary Guardian",
|
919
|
+
"id": 4252
|
924
920
|
},
|
925
921
|
{
|
926
|
-
"
|
927
|
-
"name": "
|
928
|
-
"
|
922
|
+
"rank": 1,
|
923
|
+
"name": "Tenacious",
|
924
|
+
"id": 4262
|
929
925
|
},
|
930
926
|
{
|
931
|
-
"
|
927
|
+
"rank": 3,
|
932
928
|
"name": "Perseverance",
|
933
|
-
"
|
934
|
-
},
|
935
|
-
{
|
936
|
-
"id": 4232,
|
937
|
-
"name": "Juggernaut",
|
938
|
-
"rank": 1
|
939
|
-
},
|
940
|
-
{
|
941
|
-
"id": 4112,
|
942
|
-
"name": "Fury",
|
943
|
-
"rank": 3
|
929
|
+
"id": 4241
|
944
930
|
}
|
945
|
-
]
|
931
|
+
],
|
932
|
+
"current": false,
|
933
|
+
"name": "AD (more def, cdr)",
|
934
|
+
"id": 34170139
|
946
935
|
},
|
947
936
|
{
|
948
|
-
"id": 34170147,
|
949
|
-
"name": "Jungle AP Gragas",
|
950
|
-
"current": true,
|
951
937
|
"talents": [
|
952
938
|
{
|
953
|
-
"
|
954
|
-
"name": "Recovery",
|
955
|
-
"rank": 2
|
956
|
-
},
|
957
|
-
{
|
958
|
-
"id": 4211,
|
939
|
+
"rank": 2,
|
959
940
|
"name": "Block",
|
960
|
-
"
|
941
|
+
"id": 4211
|
961
942
|
},
|
962
943
|
{
|
963
|
-
"
|
944
|
+
"rank": 2,
|
964
945
|
"name": "Tough Skin",
|
965
|
-
"
|
946
|
+
"id": 4214
|
966
947
|
},
|
967
948
|
{
|
968
|
-
"
|
969
|
-
"name": "
|
970
|
-
"
|
971
|
-
},
|
972
|
-
{
|
973
|
-
"id": 4213,
|
974
|
-
"name": "Enchanted Armor",
|
975
|
-
"rank": 2
|
949
|
+
"rank": 3,
|
950
|
+
"name": "Executioner",
|
951
|
+
"id": 4134
|
976
952
|
},
|
977
953
|
{
|
978
|
-
"
|
979
|
-
"name": "
|
980
|
-
"
|
954
|
+
"rank": 1,
|
955
|
+
"name": "Recovery",
|
956
|
+
"id": 4212
|
981
957
|
},
|
982
958
|
{
|
983
|
-
"
|
959
|
+
"rank": 1,
|
984
960
|
"name": "Feast",
|
985
|
-
"
|
961
|
+
"id": 4124
|
986
962
|
},
|
987
963
|
{
|
988
|
-
"
|
964
|
+
"rank": 1,
|
989
965
|
"name": "Butcher",
|
990
|
-
"
|
966
|
+
"id": 4114
|
991
967
|
},
|
992
968
|
{
|
993
|
-
"
|
994
|
-
"name": "
|
995
|
-
"
|
969
|
+
"rank": 3,
|
970
|
+
"name": "Veteran's Scars",
|
971
|
+
"id": 4222
|
996
972
|
},
|
997
973
|
{
|
998
|
-
"
|
999
|
-
"name": "
|
1000
|
-
"
|
974
|
+
"rank": 1,
|
975
|
+
"name": "Unyielding",
|
976
|
+
"id": 4221
|
1001
977
|
},
|
1002
978
|
{
|
1003
|
-
"
|
979
|
+
"rank": 3,
|
1004
980
|
"name": "Devastating Strikes",
|
1005
|
-
"
|
981
|
+
"id": 4152
|
1006
982
|
},
|
1007
983
|
{
|
1008
|
-
"
|
1009
|
-
"name": "
|
1010
|
-
"
|
984
|
+
"rank": 3,
|
985
|
+
"name": "Brute Force",
|
986
|
+
"id": 4122
|
1011
987
|
},
|
1012
988
|
{
|
1013
|
-
"
|
1014
|
-
"name": "
|
1015
|
-
"
|
989
|
+
"rank": 1,
|
990
|
+
"name": "Double-Edged Sword",
|
991
|
+
"id": 4111
|
1016
992
|
},
|
1017
993
|
{
|
1018
|
-
"
|
1019
|
-
"name": "
|
1020
|
-
"
|
994
|
+
"rank": 1,
|
995
|
+
"name": "Martial Mastery",
|
996
|
+
"id": 4132
|
997
|
+
},
|
998
|
+
{
|
999
|
+
"rank": 3,
|
1000
|
+
"name": "Warlord",
|
1001
|
+
"id": 4142
|
1021
1002
|
},
|
1022
1003
|
{
|
1023
|
-
"
|
1004
|
+
"rank": 1,
|
1024
1005
|
"name": "Havoc",
|
1025
|
-
"
|
1006
|
+
"id": 4162
|
1026
1007
|
},
|
1027
1008
|
{
|
1028
|
-
"
|
1029
|
-
"name": "
|
1030
|
-
"
|
1009
|
+
"rank": 3,
|
1010
|
+
"name": "Fury",
|
1011
|
+
"id": 4112
|
1012
|
+
},
|
1013
|
+
{
|
1014
|
+
"rank": 1,
|
1015
|
+
"name": "Spell Weaving",
|
1016
|
+
"id": 4131
|
1031
1017
|
}
|
1032
|
-
]
|
1018
|
+
],
|
1019
|
+
"current": false,
|
1020
|
+
"name": "Jungle AD (more atk)",
|
1021
|
+
"id": 34170140
|
1033
1022
|
},
|
1034
1023
|
{
|
1035
|
-
"id": 34170148,
|
1036
|
-
"name": "AP Jungle 21/6/3",
|
1037
|
-
"current": false,
|
1038
1024
|
"talents": [
|
1039
1025
|
{
|
1040
|
-
"
|
1026
|
+
"rank": 1,
|
1027
|
+
"name": "Swiftness",
|
1028
|
+
"id": 4242
|
1029
|
+
},
|
1030
|
+
{
|
1031
|
+
"rank": 2,
|
1041
1032
|
"name": "Block",
|
1042
|
-
"
|
1033
|
+
"id": 4211
|
1043
1034
|
},
|
1044
1035
|
{
|
1045
|
-
"
|
1036
|
+
"rank": 2,
|
1046
1037
|
"name": "Tough Skin",
|
1047
|
-
"
|
1038
|
+
"id": 4214
|
1048
1039
|
},
|
1049
1040
|
{
|
1050
|
-
"
|
1051
|
-
"name": "
|
1052
|
-
"
|
1041
|
+
"rank": 2,
|
1042
|
+
"name": "Enchanted Armor",
|
1043
|
+
"id": 4213
|
1053
1044
|
},
|
1054
1045
|
{
|
1055
|
-
"
|
1046
|
+
"rank": 1,
|
1056
1047
|
"name": "Feast",
|
1057
|
-
"
|
1048
|
+
"id": 4124
|
1058
1049
|
},
|
1059
1050
|
{
|
1060
|
-
"
|
1061
|
-
"name": "
|
1062
|
-
"
|
1051
|
+
"rank": 1,
|
1052
|
+
"name": "Butcher",
|
1053
|
+
"id": 4114
|
1063
1054
|
},
|
1064
1055
|
{
|
1065
|
-
"
|
1066
|
-
"name": "
|
1067
|
-
"
|
1056
|
+
"rank": 1,
|
1057
|
+
"name": "Second Wind",
|
1058
|
+
"id": 4251
|
1068
1059
|
},
|
1069
1060
|
{
|
1070
|
-
"
|
1071
|
-
"name": "
|
1072
|
-
"
|
1061
|
+
"rank": 3,
|
1062
|
+
"name": "Veteran's Scars",
|
1063
|
+
"id": 4222
|
1073
1064
|
},
|
1074
1065
|
{
|
1075
|
-
"
|
1076
|
-
"name": "
|
1077
|
-
"
|
1066
|
+
"rank": 1,
|
1067
|
+
"name": "Unyielding",
|
1068
|
+
"id": 4221
|
1078
1069
|
},
|
1079
1070
|
{
|
1080
|
-
"
|
1081
|
-
"name": "
|
1082
|
-
"
|
1071
|
+
"rank": 3,
|
1072
|
+
"name": "Brute Force",
|
1073
|
+
"id": 4122
|
1083
1074
|
},
|
1084
1075
|
{
|
1085
|
-
"
|
1086
|
-
"name": "
|
1087
|
-
"
|
1076
|
+
"rank": 1,
|
1077
|
+
"name": "Tenacious",
|
1078
|
+
"id": 4262
|
1088
1079
|
},
|
1089
1080
|
{
|
1090
|
-
"
|
1091
|
-
"name": "
|
1092
|
-
"
|
1081
|
+
"rank": 1,
|
1082
|
+
"name": "Oppression",
|
1083
|
+
"id": 4231
|
1093
1084
|
},
|
1094
1085
|
{
|
1095
|
-
"
|
1096
|
-
"name": "
|
1097
|
-
"
|
1086
|
+
"rank": 3,
|
1087
|
+
"name": "Legendary Guardian",
|
1088
|
+
"id": 4252
|
1098
1089
|
},
|
1099
1090
|
{
|
1100
|
-
"
|
1101
|
-
"name": "
|
1102
|
-
"
|
1091
|
+
"rank": 1,
|
1092
|
+
"name": "Martial Mastery",
|
1093
|
+
"id": 4132
|
1103
1094
|
},
|
1104
1095
|
{
|
1105
|
-
"
|
1106
|
-
"name": "
|
1107
|
-
"
|
1096
|
+
"rank": 3,
|
1097
|
+
"name": "Perseverance",
|
1098
|
+
"id": 4241
|
1108
1099
|
},
|
1109
1100
|
{
|
1110
|
-
"
|
1111
|
-
"name": "
|
1112
|
-
"
|
1101
|
+
"rank": 1,
|
1102
|
+
"name": "Juggernaut",
|
1103
|
+
"id": 4232
|
1113
1104
|
},
|
1114
1105
|
{
|
1115
|
-
"
|
1116
|
-
"name": "
|
1117
|
-
"
|
1106
|
+
"rank": 3,
|
1107
|
+
"name": "Fury",
|
1108
|
+
"id": 4112
|
1118
1109
|
}
|
1119
|
-
]
|
1110
|
+
],
|
1111
|
+
"current": false,
|
1112
|
+
"name": "Jungle AD (more def)",
|
1113
|
+
"id": 34170141
|
1120
1114
|
},
|
1121
1115
|
{
|
1122
|
-
"id": 34170149,
|
1123
|
-
"name": "ADC",
|
1124
|
-
"current": false,
|
1125
1116
|
"talents": [
|
1126
1117
|
{
|
1127
|
-
"
|
1118
|
+
"rank": 2,
|
1128
1119
|
"name": "Recovery",
|
1129
|
-
"
|
1120
|
+
"id": 4212
|
1130
1121
|
},
|
1131
1122
|
{
|
1132
|
-
"
|
1123
|
+
"rank": 2,
|
1133
1124
|
"name": "Block",
|
1134
|
-
"
|
1125
|
+
"id": 4211
|
1126
|
+
},
|
1127
|
+
{
|
1128
|
+
"rank": 2,
|
1129
|
+
"name": "Tough Skin",
|
1130
|
+
"id": 4214
|
1135
1131
|
},
|
1136
1132
|
{
|
1137
|
-
"
|
1133
|
+
"rank": 3,
|
1138
1134
|
"name": "Executioner",
|
1139
|
-
"
|
1135
|
+
"id": 4134
|
1140
1136
|
},
|
1141
1137
|
{
|
1142
|
-
"
|
1138
|
+
"rank": 1,
|
1143
1139
|
"name": "Feast",
|
1144
|
-
"
|
1140
|
+
"id": 4124
|
1145
1141
|
},
|
1146
1142
|
{
|
1147
|
-
"
|
1143
|
+
"rank": 1,
|
1148
1144
|
"name": "Butcher",
|
1149
|
-
"
|
1145
|
+
"id": 4114
|
1150
1146
|
},
|
1151
1147
|
{
|
1152
|
-
"
|
1148
|
+
"rank": 3,
|
1153
1149
|
"name": "Veteran's Scars",
|
1154
|
-
"
|
1150
|
+
"id": 4222
|
1155
1151
|
},
|
1156
1152
|
{
|
1157
|
-
"
|
1158
|
-
"name": "
|
1159
|
-
"
|
1160
|
-
},
|
1161
|
-
{
|
1162
|
-
"id": 4122,
|
1163
|
-
"name": "Brute Force",
|
1164
|
-
"rank": 3
|
1165
|
-
},
|
1166
|
-
{
|
1167
|
-
"id": 4152,
|
1168
|
-
"name": "Devastating Strikes",
|
1169
|
-
"rank": 3
|
1153
|
+
"rank": 4,
|
1154
|
+
"name": "Sorcery",
|
1155
|
+
"id": 4113
|
1170
1156
|
},
|
1171
1157
|
{
|
1172
|
-
"
|
1173
|
-
"name": "
|
1174
|
-
"
|
1158
|
+
"rank": 1,
|
1159
|
+
"name": "Dangerous Game",
|
1160
|
+
"id": 4144
|
1175
1161
|
},
|
1176
1162
|
{
|
1177
|
-
"
|
1178
|
-
"name": "
|
1179
|
-
"
|
1163
|
+
"rank": 3,
|
1164
|
+
"name": "Brute Force",
|
1165
|
+
"id": 4122
|
1180
1166
|
},
|
1181
1167
|
{
|
1182
|
-
"
|
1183
|
-
"name": "
|
1184
|
-
"
|
1168
|
+
"rank": 3,
|
1169
|
+
"name": "Devastating Strikes",
|
1170
|
+
"id": 4152
|
1185
1171
|
},
|
1186
1172
|
{
|
1187
|
-
"
|
1173
|
+
"rank": 1,
|
1188
1174
|
"name": "Martial Mastery",
|
1189
|
-
"
|
1175
|
+
"id": 4132
|
1190
1176
|
},
|
1191
1177
|
{
|
1192
|
-
"
|
1178
|
+
"rank": 3,
|
1193
1179
|
"name": "Warlord",
|
1194
|
-
"
|
1180
|
+
"id": 4142
|
1195
1181
|
},
|
1196
1182
|
{
|
1197
|
-
"
|
1198
|
-
"name": "Juggernaut",
|
1199
|
-
"rank": 1
|
1200
|
-
},
|
1201
|
-
{
|
1202
|
-
"id": 4162,
|
1183
|
+
"rank": 1,
|
1203
1184
|
"name": "Havoc",
|
1204
|
-
"
|
1205
|
-
},
|
1206
|
-
{
|
1207
|
-
"id": 4131,
|
1208
|
-
"name": "Spell Weaving",
|
1209
|
-
"rank": 1
|
1185
|
+
"id": 4162
|
1210
1186
|
}
|
1211
|
-
]
|
1187
|
+
],
|
1188
|
+
"current": false,
|
1189
|
+
"name": "Jungle AD (more atk, cdr)",
|
1190
|
+
"id": 34170142
|
1212
1191
|
},
|
1213
1192
|
{
|
1214
|
-
"id": 34170150,
|
1215
|
-
"name": "Random",
|
1216
|
-
"current": false,
|
1217
1193
|
"talents": [
|
1218
1194
|
{
|
1219
|
-
"
|
1220
|
-
"name": "
|
1221
|
-
"
|
1195
|
+
"rank": 2,
|
1196
|
+
"name": "Recovery",
|
1197
|
+
"id": 4212
|
1222
1198
|
},
|
1223
1199
|
{
|
1224
|
-
"
|
1225
|
-
"name": "
|
1226
|
-
"
|
1200
|
+
"rank": 1,
|
1201
|
+
"name": "Swiftness",
|
1202
|
+
"id": 4242
|
1227
1203
|
},
|
1228
1204
|
{
|
1229
|
-
"
|
1205
|
+
"rank": 2,
|
1230
1206
|
"name": "Block",
|
1231
|
-
"
|
1207
|
+
"id": 4211
|
1232
1208
|
},
|
1233
1209
|
{
|
1234
|
-
"
|
1210
|
+
"rank": 2,
|
1235
1211
|
"name": "Tough Skin",
|
1236
|
-
"
|
1212
|
+
"id": 4214
|
1237
1213
|
},
|
1238
1214
|
{
|
1239
|
-
"
|
1240
|
-
"name": "
|
1241
|
-
"
|
1215
|
+
"rank": 1,
|
1216
|
+
"name": "Feast",
|
1217
|
+
"id": 4124
|
1242
1218
|
},
|
1243
1219
|
{
|
1244
|
-
"
|
1245
|
-
"name": "
|
1246
|
-
"
|
1220
|
+
"rank": 1,
|
1221
|
+
"name": "Second Wind",
|
1222
|
+
"id": 4251
|
1247
1223
|
},
|
1248
1224
|
{
|
1249
|
-
"
|
1250
|
-
"name": "
|
1251
|
-
"
|
1225
|
+
"rank": 1,
|
1226
|
+
"name": "Butcher",
|
1227
|
+
"id": 4114
|
1252
1228
|
},
|
1253
1229
|
{
|
1254
|
-
"
|
1255
|
-
"name": "
|
1256
|
-
"
|
1230
|
+
"rank": 4,
|
1231
|
+
"name": "Fury",
|
1232
|
+
"id": 4112
|
1257
1233
|
},
|
1258
1234
|
{
|
1259
|
-
"
|
1260
|
-
"name": "
|
1261
|
-
"
|
1235
|
+
"rank": 3,
|
1236
|
+
"name": "Veteran's Scars",
|
1237
|
+
"id": 4222
|
1262
1238
|
},
|
1263
1239
|
{
|
1264
|
-
"
|
1265
|
-
"name": "
|
1266
|
-
"
|
1240
|
+
"rank": 1,
|
1241
|
+
"name": "Unyielding",
|
1242
|
+
"id": 4221
|
1267
1243
|
},
|
1268
1244
|
{
|
1269
|
-
"
|
1245
|
+
"rank": 1,
|
1270
1246
|
"name": "Tenacious",
|
1271
|
-
"
|
1247
|
+
"id": 4262
|
1272
1248
|
},
|
1273
1249
|
{
|
1274
|
-
"
|
1275
|
-
"name": "
|
1276
|
-
"
|
1250
|
+
"rank": 3,
|
1251
|
+
"name": "Legendary Guardian",
|
1252
|
+
"id": 4252
|
1277
1253
|
},
|
1278
1254
|
{
|
1279
|
-
"
|
1255
|
+
"rank": 1,
|
1280
1256
|
"name": "Oppression",
|
1281
|
-
"
|
1257
|
+
"id": 4231
|
1282
1258
|
},
|
1283
1259
|
{
|
1284
|
-
"
|
1285
|
-
"name": "Meditation",
|
1286
|
-
"rank": 3
|
1287
|
-
},
|
1288
|
-
{
|
1289
|
-
"id": 4241,
|
1260
|
+
"rank": 3,
|
1290
1261
|
"name": "Perseverance",
|
1291
|
-
"
|
1262
|
+
"id": 4241
|
1292
1263
|
},
|
1293
1264
|
{
|
1294
|
-
"
|
1265
|
+
"rank": 1,
|
1295
1266
|
"name": "Juggernaut",
|
1296
|
-
"
|
1267
|
+
"id": 4232
|
1268
|
+
},
|
1269
|
+
{
|
1270
|
+
"rank": 3,
|
1271
|
+
"name": "Sorcery",
|
1272
|
+
"id": 4113
|
1297
1273
|
}
|
1298
|
-
]
|
1274
|
+
],
|
1275
|
+
"current": false,
|
1276
|
+
"name": "Jungle AD (more def, cdr)",
|
1277
|
+
"id": 34170143
|
1299
1278
|
},
|
1300
1279
|
{
|
1301
|
-
"id": 34170151,
|
1302
|
-
"name": "Vlad",
|
1303
|
-
"current": false,
|
1304
1280
|
"talents": [
|
1305
1281
|
{
|
1306
|
-
"
|
1282
|
+
"rank": 2,
|
1307
1283
|
"name": "Recovery",
|
1308
|
-
"
|
1284
|
+
"id": 4212
|
1309
1285
|
},
|
1310
1286
|
{
|
1311
|
-
"
|
1287
|
+
"rank": 2,
|
1312
1288
|
"name": "Block",
|
1313
|
-
"
|
1289
|
+
"id": 4211
|
1314
1290
|
},
|
1315
1291
|
{
|
1316
|
-
"
|
1317
|
-
"name": "
|
1318
|
-
"
|
1292
|
+
"rank": 1,
|
1293
|
+
"name": "Phasewalker",
|
1294
|
+
"id": 4311
|
1319
1295
|
},
|
1320
1296
|
{
|
1321
|
-
"
|
1322
|
-
"name": "
|
1323
|
-
"
|
1297
|
+
"rank": 3,
|
1298
|
+
"name": "Intelligence",
|
1299
|
+
"id": 4353
|
1324
1300
|
},
|
1325
1301
|
{
|
1326
|
-
"
|
1327
|
-
"name": "
|
1328
|
-
"
|
1302
|
+
"rank": 1,
|
1303
|
+
"name": "Wanderer",
|
1304
|
+
"id": 4362
|
1329
1305
|
},
|
1330
1306
|
{
|
1331
|
-
"
|
1332
|
-
"name": "
|
1333
|
-
"
|
1307
|
+
"rank": 2,
|
1308
|
+
"name": "Inspiration",
|
1309
|
+
"id": 4344
|
1310
|
+
},
|
1311
|
+
{
|
1312
|
+
"rank": 1,
|
1313
|
+
"name": "Bandit",
|
1314
|
+
"id": 4352
|
1334
1315
|
},
|
1335
1316
|
{
|
1336
|
-
"
|
1317
|
+
"rank": 1,
|
1318
|
+
"name": "Strength of Spirit",
|
1319
|
+
"id": 4323
|
1320
|
+
},
|
1321
|
+
{
|
1322
|
+
"rank": 3,
|
1337
1323
|
"name": "Veteran's Scars",
|
1338
|
-
"
|
1324
|
+
"id": 4222
|
1339
1325
|
},
|
1340
1326
|
{
|
1341
|
-
"
|
1342
|
-
"name": "
|
1343
|
-
"
|
1327
|
+
"rank": 1,
|
1328
|
+
"name": "Scout",
|
1329
|
+
"id": 4314
|
1344
1330
|
},
|
1345
1331
|
{
|
1346
|
-
"
|
1332
|
+
"rank": 1,
|
1347
1333
|
"name": "Unyielding",
|
1348
|
-
"
|
1334
|
+
"id": 4221
|
1349
1335
|
},
|
1350
1336
|
{
|
1351
|
-
"
|
1352
|
-
"name": "
|
1353
|
-
"
|
1337
|
+
"rank": 3,
|
1338
|
+
"name": "Greed",
|
1339
|
+
"id": 4331
|
1354
1340
|
},
|
1355
1341
|
{
|
1356
|
-
"
|
1357
|
-
"name": "
|
1358
|
-
"
|
1342
|
+
"rank": 3,
|
1343
|
+
"name": "Fleet of Foot",
|
1344
|
+
"id": 4312
|
1359
1345
|
},
|
1360
1346
|
{
|
1361
|
-
"
|
1362
|
-
"name": "
|
1363
|
-
"
|
1347
|
+
"rank": 3,
|
1348
|
+
"name": "Meditation",
|
1349
|
+
"id": 4313
|
1364
1350
|
},
|
1365
1351
|
{
|
1366
|
-
"
|
1352
|
+
"rank": 1,
|
1367
1353
|
"name": "Juggernaut",
|
1368
|
-
"
|
1354
|
+
"id": 4232
|
1369
1355
|
},
|
1370
1356
|
{
|
1371
|
-
"
|
1372
|
-
"name": "
|
1373
|
-
"
|
1357
|
+
"rank": 1,
|
1358
|
+
"name": "Wealth",
|
1359
|
+
"id": 4342
|
1374
1360
|
},
|
1375
1361
|
{
|
1376
|
-
"
|
1377
|
-
"name": "
|
1378
|
-
"
|
1362
|
+
"rank": 1,
|
1363
|
+
"name": "Scavenger",
|
1364
|
+
"id": 4341
|
1379
1365
|
}
|
1380
|
-
]
|
1366
|
+
],
|
1367
|
+
"current": false,
|
1368
|
+
"name": "Support",
|
1369
|
+
"id": 34170144
|
1381
1370
|
},
|
1382
1371
|
{
|
1383
|
-
"id": 34170152,
|
1384
|
-
"name": "Eve Jungle",
|
1385
|
-
"current": false,
|
1386
1372
|
"talents": [
|
1387
1373
|
{
|
1388
|
-
"
|
1389
|
-
"name": "
|
1390
|
-
"
|
1374
|
+
"rank": 3,
|
1375
|
+
"name": "Hardiness",
|
1376
|
+
"id": 4233
|
1391
1377
|
},
|
1392
1378
|
{
|
1393
|
-
"
|
1394
|
-
"name": "
|
1395
|
-
"
|
1379
|
+
"rank": 2,
|
1380
|
+
"name": "Block",
|
1381
|
+
"id": 4211
|
1396
1382
|
},
|
1397
1383
|
{
|
1398
|
-
"
|
1399
|
-
"name": "
|
1400
|
-
"
|
1384
|
+
"rank": 1,
|
1385
|
+
"name": "Reinforced Armor",
|
1386
|
+
"id": 4243
|
1401
1387
|
},
|
1402
1388
|
{
|
1403
|
-
"
|
1404
|
-
"name": "
|
1405
|
-
"
|
1389
|
+
"rank": 2,
|
1390
|
+
"name": "Enchanted Armor",
|
1391
|
+
"id": 4213
|
1406
1392
|
},
|
1407
1393
|
{
|
1408
|
-
"
|
1409
|
-
"name": "
|
1410
|
-
"
|
1394
|
+
"rank": 1,
|
1395
|
+
"name": "Culinary Master",
|
1396
|
+
"id": 4334
|
1411
1397
|
},
|
1412
1398
|
{
|
1413
|
-
"
|
1414
|
-
"name": "
|
1415
|
-
"
|
1399
|
+
"rank": 1,
|
1400
|
+
"name": "Strength of Spirit",
|
1401
|
+
"id": 4323
|
1416
1402
|
},
|
1417
1403
|
{
|
1418
|
-
"
|
1419
|
-
"name": "
|
1420
|
-
"
|
1404
|
+
"rank": 3,
|
1405
|
+
"name": "Veteran's Scars",
|
1406
|
+
"id": 4222
|
1421
1407
|
},
|
1422
1408
|
{
|
1423
|
-
"
|
1424
|
-
"name": "
|
1425
|
-
"
|
1409
|
+
"rank": 1,
|
1410
|
+
"name": "Unyielding",
|
1411
|
+
"id": 4221
|
1426
1412
|
},
|
1427
1413
|
{
|
1428
|
-
"
|
1429
|
-
"name": "
|
1430
|
-
"
|
1414
|
+
"rank": 1,
|
1415
|
+
"name": "Alchemist",
|
1416
|
+
"id": 4324
|
1431
1417
|
},
|
1432
1418
|
{
|
1433
|
-
"
|
1434
|
-
"name": "
|
1435
|
-
"
|
1419
|
+
"rank": 4,
|
1420
|
+
"name": "Legendary Guardian",
|
1421
|
+
"id": 4252
|
1436
1422
|
},
|
1437
1423
|
{
|
1438
|
-
"
|
1439
|
-
"name": "
|
1440
|
-
"
|
1424
|
+
"rank": 1,
|
1425
|
+
"name": "Tenacious",
|
1426
|
+
"id": 4262
|
1441
1427
|
},
|
1442
1428
|
{
|
1443
|
-
"
|
1444
|
-
"name": "
|
1445
|
-
"
|
1429
|
+
"rank": 3,
|
1430
|
+
"name": "Fleet of Foot",
|
1431
|
+
"id": 4312
|
1446
1432
|
},
|
1447
1433
|
{
|
1448
|
-
"
|
1449
|
-
"name": "
|
1450
|
-
"
|
1434
|
+
"rank": 3,
|
1435
|
+
"name": "Meditation",
|
1436
|
+
"id": 4313
|
1451
1437
|
},
|
1452
1438
|
{
|
1453
|
-
"
|
1454
|
-
"name": "
|
1455
|
-
"
|
1439
|
+
"rank": 3,
|
1440
|
+
"name": "Perseverance",
|
1441
|
+
"id": 4241
|
1456
1442
|
},
|
1457
1443
|
{
|
1458
|
-
"
|
1459
|
-
"name": "
|
1460
|
-
"
|
1444
|
+
"rank": 1,
|
1445
|
+
"name": "Juggernaut",
|
1446
|
+
"id": 4232
|
1461
1447
|
}
|
1462
|
-
]
|
1448
|
+
],
|
1449
|
+
"current": false,
|
1450
|
+
"name": "Tank Sup",
|
1451
|
+
"id": 34170145
|
1463
1452
|
},
|
1464
1453
|
{
|
1465
|
-
"id": 34170153,
|
1466
|
-
"name": "Mundo Giungla",
|
1467
|
-
"current": false,
|
1468
1454
|
"talents": [
|
1469
1455
|
{
|
1470
|
-
"
|
1456
|
+
"rank": 2,
|
1471
1457
|
"name": "Recovery",
|
1472
|
-
"
|
1458
|
+
"id": 4212
|
1473
1459
|
},
|
1474
1460
|
{
|
1475
|
-
"
|
1476
|
-
"name": "Swiftness",
|
1477
|
-
"rank": 1
|
1478
|
-
},
|
1479
|
-
{
|
1480
|
-
"id": 4233,
|
1461
|
+
"rank": 3,
|
1481
1462
|
"name": "Hardiness",
|
1482
|
-
"
|
1463
|
+
"id": 4233
|
1483
1464
|
},
|
1484
1465
|
{
|
1485
|
-
"
|
1486
|
-
"name": "
|
1487
|
-
"
|
1466
|
+
"rank": 1,
|
1467
|
+
"name": "Swiftness",
|
1468
|
+
"id": 4242
|
1488
1469
|
},
|
1489
1470
|
{
|
1490
|
-
"
|
1491
|
-
"name": "
|
1492
|
-
"
|
1471
|
+
"rank": 1,
|
1472
|
+
"name": "Reinforced Armor",
|
1473
|
+
"id": 4243
|
1493
1474
|
},
|
1494
1475
|
{
|
1495
|
-
"
|
1476
|
+
"rank": 2,
|
1496
1477
|
"name": "Tough Skin",
|
1497
|
-
"
|
1478
|
+
"id": 4214
|
1498
1479
|
},
|
1499
1480
|
{
|
1500
|
-
"
|
1501
|
-
"name": "
|
1502
|
-
"
|
1481
|
+
"rank": 1,
|
1482
|
+
"name": "Feast",
|
1483
|
+
"id": 4124
|
1503
1484
|
},
|
1504
1485
|
{
|
1505
|
-
"
|
1486
|
+
"rank": 1,
|
1506
1487
|
"name": "Second Wind",
|
1507
|
-
"
|
1488
|
+
"id": 4251
|
1508
1489
|
},
|
1509
1490
|
{
|
1510
|
-
"
|
1511
|
-
"name": "
|
1512
|
-
"
|
1491
|
+
"rank": 1,
|
1492
|
+
"name": "Butcher",
|
1493
|
+
"id": 4114
|
1513
1494
|
},
|
1514
1495
|
{
|
1515
|
-
"
|
1516
|
-
"name": "
|
1517
|
-
"
|
1496
|
+
"rank": 2,
|
1497
|
+
"name": "Legendary Guardian",
|
1498
|
+
"id": 4252
|
1518
1499
|
},
|
1519
1500
|
{
|
1520
|
-
"
|
1521
|
-
"name": "
|
1522
|
-
"
|
1501
|
+
"rank": 3,
|
1502
|
+
"name": "Veteran's Scars",
|
1503
|
+
"id": 4222
|
1523
1504
|
},
|
1524
1505
|
{
|
1525
|
-
"
|
1526
|
-
"name": "
|
1527
|
-
"
|
1506
|
+
"rank": 3,
|
1507
|
+
"name": "Mental Force",
|
1508
|
+
"id": 4123
|
1528
1509
|
},
|
1529
1510
|
{
|
1530
|
-
"
|
1511
|
+
"rank": 1,
|
1531
1512
|
"name": "Tenacious",
|
1532
|
-
"
|
1513
|
+
"id": 4262
|
1533
1514
|
},
|
1534
1515
|
{
|
1535
|
-
"
|
1536
|
-
"name": "
|
1537
|
-
"
|
1516
|
+
"rank": 1,
|
1517
|
+
"name": "Bladed Armor",
|
1518
|
+
"id": 4224
|
1519
|
+
},
|
1520
|
+
{
|
1521
|
+
"rank": 1,
|
1522
|
+
"name": "Arcane Mastery",
|
1523
|
+
"id": 4133
|
1538
1524
|
},
|
1539
1525
|
{
|
1540
|
-
"
|
1526
|
+
"rank": 3,
|
1541
1527
|
"name": "Perseverance",
|
1542
|
-
"
|
1528
|
+
"id": 4241
|
1543
1529
|
},
|
1544
1530
|
{
|
1545
|
-
"
|
1531
|
+
"rank": 1,
|
1546
1532
|
"name": "Juggernaut",
|
1547
|
-
"
|
1533
|
+
"id": 4232
|
1534
|
+
},
|
1535
|
+
{
|
1536
|
+
"rank": 3,
|
1537
|
+
"name": "Fury",
|
1538
|
+
"id": 4112
|
1548
1539
|
}
|
1549
|
-
]
|
1540
|
+
],
|
1541
|
+
"current": false,
|
1542
|
+
"name": "Cho Gath",
|
1543
|
+
"id": 34170146
|
1550
1544
|
},
|
1551
1545
|
{
|
1552
|
-
"id": 34170154,
|
1553
|
-
"name": "9/21 AP Jungle",
|
1554
|
-
"current": false,
|
1555
1546
|
"talents": [
|
1556
1547
|
{
|
1557
|
-
"
|
1548
|
+
"rank": 2,
|
1558
1549
|
"name": "Recovery",
|
1559
|
-
"
|
1550
|
+
"id": 4212
|
1560
1551
|
},
|
1561
1552
|
{
|
1562
|
-
"
|
1563
|
-
"name": "Swiftness",
|
1564
|
-
"rank": 1
|
1565
|
-
},
|
1566
|
-
{
|
1567
|
-
"id": 4211,
|
1553
|
+
"rank": 2,
|
1568
1554
|
"name": "Block",
|
1569
|
-
"
|
1555
|
+
"id": 4211
|
1570
1556
|
},
|
1571
1557
|
{
|
1572
|
-
"
|
1558
|
+
"rank": 2,
|
1573
1559
|
"name": "Tough Skin",
|
1574
|
-
"
|
1560
|
+
"id": 4214
|
1575
1561
|
},
|
1576
1562
|
{
|
1577
|
-
"
|
1578
|
-
"name": "
|
1579
|
-
"
|
1563
|
+
"rank": 1,
|
1564
|
+
"name": "Expose Weakness",
|
1565
|
+
"id": 4121
|
1580
1566
|
},
|
1581
1567
|
{
|
1582
|
-
"
|
1583
|
-
"name": "
|
1584
|
-
"
|
1568
|
+
"rank": 2,
|
1569
|
+
"name": "Enchanted Armor",
|
1570
|
+
"id": 4213
|
1585
1571
|
},
|
1586
1572
|
{
|
1587
|
-
"
|
1588
|
-
"name": "
|
1589
|
-
"
|
1573
|
+
"rank": 3,
|
1574
|
+
"name": "Executioner",
|
1575
|
+
"id": 4134
|
1590
1576
|
},
|
1591
1577
|
{
|
1592
|
-
"
|
1593
|
-
"name": "
|
1594
|
-
"
|
1578
|
+
"rank": 1,
|
1579
|
+
"name": "Feast",
|
1580
|
+
"id": 4124
|
1595
1581
|
},
|
1596
1582
|
{
|
1597
|
-
"
|
1583
|
+
"rank": 1,
|
1584
|
+
"name": "Butcher",
|
1585
|
+
"id": 4114
|
1586
|
+
},
|
1587
|
+
{
|
1588
|
+
"rank": 1,
|
1598
1589
|
"name": "Unyielding",
|
1599
|
-
"
|
1590
|
+
"id": 4221
|
1600
1591
|
},
|
1601
1592
|
{
|
1602
|
-
"
|
1603
|
-
"name": "
|
1604
|
-
"
|
1593
|
+
"rank": 1,
|
1594
|
+
"name": "Dangerous Game",
|
1595
|
+
"id": 4144
|
1605
1596
|
},
|
1606
1597
|
{
|
1607
|
-
"
|
1598
|
+
"rank": 3,
|
1599
|
+
"name": "Devastating Strikes",
|
1600
|
+
"id": 4152
|
1601
|
+
},
|
1602
|
+
{
|
1603
|
+
"rank": 3,
|
1608
1604
|
"name": "Mental Force",
|
1609
|
-
"
|
1605
|
+
"id": 4123
|
1610
1606
|
},
|
1611
1607
|
{
|
1612
|
-
"
|
1613
|
-
"name": "
|
1614
|
-
"
|
1608
|
+
"rank": 1,
|
1609
|
+
"name": "Arcane Mastery",
|
1610
|
+
"id": 4133
|
1615
1611
|
},
|
1616
1612
|
{
|
1617
|
-
"
|
1618
|
-
"name": "
|
1619
|
-
"
|
1613
|
+
"rank": 3,
|
1614
|
+
"name": "Archmage",
|
1615
|
+
"id": 4143
|
1620
1616
|
},
|
1621
1617
|
{
|
1622
|
-
"
|
1623
|
-
"name": "
|
1624
|
-
"
|
1618
|
+
"rank": 1,
|
1619
|
+
"name": "Havoc",
|
1620
|
+
"id": 4162
|
1625
1621
|
},
|
1626
1622
|
{
|
1627
|
-
"
|
1628
|
-
"name": "
|
1629
|
-
"
|
1623
|
+
"rank": 3,
|
1624
|
+
"name": "Sorcery",
|
1625
|
+
"id": 4113
|
1630
1626
|
}
|
1631
|
-
]
|
1627
|
+
],
|
1628
|
+
"current": true,
|
1629
|
+
"name": "Jungle AP Gragas",
|
1630
|
+
"id": 34170147
|
1632
1631
|
},
|
1633
1632
|
{
|
1634
|
-
"id": 34170155,
|
1635
|
-
"name": "AP Support",
|
1636
|
-
"current": false,
|
1637
1633
|
"talents": [
|
1638
1634
|
{
|
1639
|
-
"
|
1640
|
-
"name": "Recovery",
|
1641
|
-
"rank": 2
|
1642
|
-
},
|
1643
|
-
{
|
1644
|
-
"id": 4211,
|
1635
|
+
"rank": 2,
|
1645
1636
|
"name": "Block",
|
1646
|
-
"
|
1637
|
+
"id": 4211
|
1647
1638
|
},
|
1648
1639
|
{
|
1649
|
-
"
|
1650
|
-
"name": "
|
1651
|
-
"
|
1640
|
+
"rank": 2,
|
1641
|
+
"name": "Tough Skin",
|
1642
|
+
"id": 4214
|
1652
1643
|
},
|
1653
1644
|
{
|
1654
|
-
"
|
1655
|
-
"name": "
|
1656
|
-
"
|
1645
|
+
"rank": 3,
|
1646
|
+
"name": "Executioner",
|
1647
|
+
"id": 4134
|
1657
1648
|
},
|
1658
1649
|
{
|
1659
|
-
"
|
1660
|
-
"name": "
|
1661
|
-
"
|
1650
|
+
"rank": 1,
|
1651
|
+
"name": "Feast",
|
1652
|
+
"id": 4124
|
1662
1653
|
},
|
1663
1654
|
{
|
1664
|
-
"
|
1665
|
-
"name": "
|
1666
|
-
"
|
1655
|
+
"rank": 1,
|
1656
|
+
"name": "Arcane Blade",
|
1657
|
+
"id": 4154
|
1667
1658
|
},
|
1668
1659
|
{
|
1669
|
-
"
|
1670
|
-
"name": "
|
1671
|
-
"
|
1660
|
+
"rank": 1,
|
1661
|
+
"name": "Butcher",
|
1662
|
+
"id": 4114
|
1672
1663
|
},
|
1673
1664
|
{
|
1674
|
-
"
|
1665
|
+
"rank": 1,
|
1675
1666
|
"name": "Unyielding",
|
1676
|
-
"
|
1667
|
+
"id": 4221
|
1677
1668
|
},
|
1678
1669
|
{
|
1679
|
-
"
|
1670
|
+
"rank": 3,
|
1680
1671
|
"name": "Devastating Strikes",
|
1681
|
-
"
|
1672
|
+
"id": 4152
|
1682
1673
|
},
|
1683
1674
|
{
|
1684
|
-
"
|
1675
|
+
"rank": 3,
|
1685
1676
|
"name": "Mental Force",
|
1686
|
-
"
|
1677
|
+
"id": 4123
|
1687
1678
|
},
|
1688
1679
|
{
|
1689
|
-
"
|
1690
|
-
"name": "
|
1691
|
-
"
|
1680
|
+
"rank": 1,
|
1681
|
+
"name": "Bladed Armor",
|
1682
|
+
"id": 4224
|
1683
|
+
},
|
1684
|
+
{
|
1685
|
+
"rank": 3,
|
1686
|
+
"name": "Fleet of Foot",
|
1687
|
+
"id": 4312
|
1692
1688
|
},
|
1693
1689
|
{
|
1694
|
-
"
|
1690
|
+
"rank": 1,
|
1695
1691
|
"name": "Double-Edged Sword",
|
1696
|
-
"
|
1692
|
+
"id": 4111
|
1697
1693
|
},
|
1698
1694
|
{
|
1699
|
-
"
|
1695
|
+
"rank": 1,
|
1700
1696
|
"name": "Arcane Mastery",
|
1701
|
-
"
|
1697
|
+
"id": 4133
|
1702
1698
|
},
|
1703
1699
|
{
|
1704
|
-
"
|
1700
|
+
"rank": 3,
|
1705
1701
|
"name": "Archmage",
|
1706
|
-
"
|
1702
|
+
"id": 4143
|
1707
1703
|
},
|
1708
1704
|
{
|
1709
|
-
"
|
1705
|
+
"rank": 1,
|
1710
1706
|
"name": "Havoc",
|
1711
|
-
"
|
1707
|
+
"id": 4162
|
1708
|
+
},
|
1709
|
+
{
|
1710
|
+
"rank": 3,
|
1711
|
+
"name": "Sorcery",
|
1712
|
+
"id": 4113
|
1712
1713
|
}
|
1713
|
-
]
|
1714
|
-
|
1715
|
-
|
1716
|
-
|
1717
|
-
|
1718
|
-
"summonerId": 33249714,
|
1719
|
-
"pages": [
|
1714
|
+
],
|
1715
|
+
"current": false,
|
1716
|
+
"name": "AP Jungle 21\/6\/3",
|
1717
|
+
"id": 34170148
|
1718
|
+
},
|
1720
1719
|
{
|
1721
|
-
"id": 36928738,
|
1722
|
-
"name": "tank",
|
1723
|
-
"current": true,
|
1724
1720
|
"talents": [
|
1725
1721
|
{
|
1726
|
-
"
|
1727
|
-
"name": "
|
1728
|
-
"
|
1729
|
-
},
|
1730
|
-
{
|
1731
|
-
"id": 4242,
|
1732
|
-
"name": "Swiftness",
|
1733
|
-
"rank": 1
|
1722
|
+
"rank": 2,
|
1723
|
+
"name": "Recovery",
|
1724
|
+
"id": 4212
|
1734
1725
|
},
|
1735
1726
|
{
|
1736
|
-
"
|
1727
|
+
"rank": 2,
|
1737
1728
|
"name": "Block",
|
1738
|
-
"
|
1729
|
+
"id": 4211
|
1739
1730
|
},
|
1740
1731
|
{
|
1741
|
-
"
|
1742
|
-
"name": "
|
1743
|
-
"
|
1732
|
+
"rank": 3,
|
1733
|
+
"name": "Executioner",
|
1734
|
+
"id": 4134
|
1744
1735
|
},
|
1745
1736
|
{
|
1746
|
-
"
|
1737
|
+
"rank": 1,
|
1747
1738
|
"name": "Feast",
|
1748
|
-
"
|
1739
|
+
"id": 4124
|
1749
1740
|
},
|
1750
1741
|
{
|
1751
|
-
"
|
1742
|
+
"rank": 1,
|
1752
1743
|
"name": "Butcher",
|
1753
|
-
"
|
1754
|
-
},
|
1755
|
-
{
|
1756
|
-
"id": 4251,
|
1757
|
-
"name": "Second Wind",
|
1758
|
-
"rank": 1
|
1744
|
+
"id": 4114
|
1759
1745
|
},
|
1760
1746
|
{
|
1761
|
-
"
|
1747
|
+
"rank": 3,
|
1762
1748
|
"name": "Veteran's Scars",
|
1763
|
-
"
|
1749
|
+
"id": 4222
|
1764
1750
|
},
|
1765
1751
|
{
|
1766
|
-
"
|
1752
|
+
"rank": 1,
|
1767
1753
|
"name": "Unyielding",
|
1768
|
-
"
|
1754
|
+
"id": 4221
|
1769
1755
|
},
|
1770
1756
|
{
|
1771
|
-
"
|
1772
|
-
"name": "
|
1773
|
-
"
|
1757
|
+
"rank": 3,
|
1758
|
+
"name": "Brute Force",
|
1759
|
+
"id": 4122
|
1774
1760
|
},
|
1775
1761
|
{
|
1776
|
-
"
|
1777
|
-
"name": "
|
1778
|
-
"
|
1762
|
+
"rank": 3,
|
1763
|
+
"name": "Devastating Strikes",
|
1764
|
+
"id": 4152
|
1779
1765
|
},
|
1780
1766
|
{
|
1781
|
-
"
|
1782
|
-
"name": "
|
1783
|
-
"
|
1767
|
+
"rank": 2,
|
1768
|
+
"name": "Fury",
|
1769
|
+
"id": 4112
|
1784
1770
|
},
|
1785
1771
|
{
|
1786
|
-
"
|
1787
|
-
"name": "
|
1788
|
-
"
|
1772
|
+
"rank": 1,
|
1773
|
+
"name": "Blade Weaving",
|
1774
|
+
"id": 4141
|
1789
1775
|
},
|
1790
1776
|
{
|
1791
|
-
"
|
1792
|
-
"name": "
|
1793
|
-
"
|
1777
|
+
"rank": 1,
|
1778
|
+
"name": "Double-Edged Sword",
|
1779
|
+
"id": 4111
|
1794
1780
|
},
|
1795
1781
|
{
|
1796
|
-
"
|
1797
|
-
"name": "
|
1798
|
-
"
|
1782
|
+
"rank": 1,
|
1783
|
+
"name": "Martial Mastery",
|
1784
|
+
"id": 4132
|
1799
1785
|
},
|
1800
1786
|
{
|
1801
|
-
"
|
1802
|
-
"name": "
|
1803
|
-
"
|
1787
|
+
"rank": 3,
|
1788
|
+
"name": "Warlord",
|
1789
|
+
"id": 4142
|
1804
1790
|
},
|
1805
1791
|
{
|
1806
|
-
"
|
1807
|
-
"name": "
|
1808
|
-
"
|
1792
|
+
"rank": 1,
|
1793
|
+
"name": "Juggernaut",
|
1794
|
+
"id": 4232
|
1809
1795
|
},
|
1810
1796
|
{
|
1811
|
-
"
|
1812
|
-
"name": "
|
1813
|
-
"
|
1797
|
+
"rank": 1,
|
1798
|
+
"name": "Havoc",
|
1799
|
+
"id": 4162
|
1814
1800
|
},
|
1815
1801
|
{
|
1816
|
-
"
|
1802
|
+
"rank": 1,
|
1817
1803
|
"name": "Spell Weaving",
|
1818
|
-
"
|
1804
|
+
"id": 4131
|
1819
1805
|
}
|
1820
|
-
]
|
1806
|
+
],
|
1807
|
+
"current": false,
|
1808
|
+
"name": "ADC",
|
1809
|
+
"id": 34170149
|
1821
1810
|
},
|
1822
1811
|
{
|
1823
|
-
"id": 36928739,
|
1824
|
-
"name": "jungler",
|
1825
|
-
"current": false,
|
1826
1812
|
"talents": [
|
1827
1813
|
{
|
1828
|
-
"
|
1829
|
-
"name": "
|
1830
|
-
"
|
1814
|
+
"rank": 1,
|
1815
|
+
"name": "Swiftness",
|
1816
|
+
"id": 4242
|
1831
1817
|
},
|
1832
1818
|
{
|
1833
|
-
"
|
1834
|
-
"name": "
|
1835
|
-
"
|
1819
|
+
"rank": 2,
|
1820
|
+
"name": "Recovery",
|
1821
|
+
"id": 4212
|
1836
1822
|
},
|
1837
1823
|
{
|
1838
|
-
"
|
1839
|
-
"name": "
|
1840
|
-
"
|
1824
|
+
"rank": 2,
|
1825
|
+
"name": "Block",
|
1826
|
+
"id": 4211
|
1841
1827
|
},
|
1842
1828
|
{
|
1843
|
-
"
|
1829
|
+
"rank": 2,
|
1844
1830
|
"name": "Tough Skin",
|
1845
|
-
"
|
1846
|
-
},
|
1847
|
-
{
|
1848
|
-
"id": 4213,
|
1849
|
-
"name": "Enchanted Armor",
|
1850
|
-
"rank": 2
|
1831
|
+
"id": 4214
|
1851
1832
|
},
|
1852
1833
|
{
|
1853
|
-
"
|
1854
|
-
"name": "
|
1855
|
-
"
|
1834
|
+
"rank": 1,
|
1835
|
+
"name": "Runic Affinity",
|
1836
|
+
"id": 4332
|
1856
1837
|
},
|
1857
1838
|
{
|
1858
|
-
"
|
1859
|
-
"name": "
|
1860
|
-
"
|
1839
|
+
"rank": 1,
|
1840
|
+
"name": "Strength of Spirit",
|
1841
|
+
"id": 4323
|
1861
1842
|
},
|
1862
1843
|
{
|
1863
|
-
"
|
1844
|
+
"rank": 3,
|
1864
1845
|
"name": "Veteran's Scars",
|
1865
|
-
"
|
1846
|
+
"id": 4222
|
1866
1847
|
},
|
1867
1848
|
{
|
1868
|
-
"
|
1869
|
-
"name": "Sorcery",
|
1870
|
-
"rank": 4
|
1871
|
-
},
|
1872
|
-
{
|
1873
|
-
"id": 4221,
|
1849
|
+
"rank": 1,
|
1874
1850
|
"name": "Unyielding",
|
1875
|
-
"
|
1851
|
+
"id": 4221
|
1876
1852
|
},
|
1877
1853
|
{
|
1878
|
-
"
|
1854
|
+
"rank": 4,
|
1879
1855
|
"name": "Legendary Guardian",
|
1880
|
-
"
|
1856
|
+
"id": 4252
|
1857
|
+
},
|
1858
|
+
{
|
1859
|
+
"rank": 1,
|
1860
|
+
"name": "Alchemist",
|
1861
|
+
"id": 4324
|
1881
1862
|
},
|
1882
1863
|
{
|
1883
|
-
"
|
1864
|
+
"rank": 1,
|
1884
1865
|
"name": "Tenacious",
|
1885
|
-
"
|
1866
|
+
"id": 4262
|
1886
1867
|
},
|
1887
1868
|
{
|
1888
|
-
"
|
1889
|
-
"name": "
|
1890
|
-
"
|
1869
|
+
"rank": 3,
|
1870
|
+
"name": "Fleet of Foot",
|
1871
|
+
"id": 4312
|
1891
1872
|
},
|
1892
1873
|
{
|
1893
|
-
"
|
1894
|
-
"name": "
|
1895
|
-
"
|
1874
|
+
"rank": 1,
|
1875
|
+
"name": "Oppression",
|
1876
|
+
"id": 4231
|
1896
1877
|
},
|
1897
1878
|
{
|
1898
|
-
"
|
1899
|
-
"name": "
|
1900
|
-
"
|
1879
|
+
"rank": 3,
|
1880
|
+
"name": "Meditation",
|
1881
|
+
"id": 4313
|
1882
|
+
},
|
1883
|
+
{
|
1884
|
+
"rank": 3,
|
1885
|
+
"name": "Perseverance",
|
1886
|
+
"id": 4241
|
1887
|
+
},
|
1888
|
+
{
|
1889
|
+
"rank": 1,
|
1890
|
+
"name": "Juggernaut",
|
1891
|
+
"id": 4232
|
1901
1892
|
}
|
1902
|
-
]
|
1893
|
+
],
|
1894
|
+
"current": false,
|
1895
|
+
"name": "Random",
|
1896
|
+
"id": 34170150
|
1903
1897
|
},
|
1904
1898
|
{
|
1905
|
-
"id": 36928740,
|
1906
|
-
"name": "AD",
|
1907
|
-
"current": false,
|
1908
1899
|
"talents": [
|
1909
1900
|
{
|
1910
|
-
"
|
1911
|
-
"name": "
|
1912
|
-
"
|
1901
|
+
"rank": 2,
|
1902
|
+
"name": "Recovery",
|
1903
|
+
"id": 4212
|
1913
1904
|
},
|
1914
1905
|
{
|
1915
|
-
"
|
1916
|
-
"name": "
|
1917
|
-
"
|
1906
|
+
"rank": 2,
|
1907
|
+
"name": "Block",
|
1908
|
+
"id": 4211
|
1918
1909
|
},
|
1919
1910
|
{
|
1920
|
-
"
|
1921
|
-
"name": "
|
1922
|
-
"
|
1911
|
+
"rank": 3,
|
1912
|
+
"name": "Executioner",
|
1913
|
+
"id": 4134
|
1923
1914
|
},
|
1924
1915
|
{
|
1925
|
-
"
|
1926
|
-
"name": "
|
1927
|
-
"
|
1916
|
+
"rank": 1,
|
1917
|
+
"name": "Arcane Blade",
|
1918
|
+
"id": 4154
|
1928
1919
|
},
|
1929
1920
|
{
|
1930
|
-
"
|
1931
|
-
"name": "
|
1932
|
-
"
|
1921
|
+
"rank": 1,
|
1922
|
+
"name": "Feast",
|
1923
|
+
"id": 4124
|
1933
1924
|
},
|
1934
1925
|
{
|
1935
|
-
"
|
1926
|
+
"rank": 1,
|
1927
|
+
"name": "Butcher",
|
1928
|
+
"id": 4114
|
1929
|
+
},
|
1930
|
+
{
|
1931
|
+
"rank": 3,
|
1936
1932
|
"name": "Veteran's Scars",
|
1937
|
-
"
|
1933
|
+
"id": 4222
|
1938
1934
|
},
|
1939
1935
|
{
|
1940
|
-
"
|
1941
|
-
"name": "
|
1942
|
-
"
|
1936
|
+
"rank": 4,
|
1937
|
+
"name": "Sorcery",
|
1938
|
+
"id": 4113
|
1943
1939
|
},
|
1944
1940
|
{
|
1945
|
-
"
|
1941
|
+
"rank": 1,
|
1946
1942
|
"name": "Unyielding",
|
1947
|
-
"
|
1943
|
+
"id": 4221
|
1948
1944
|
},
|
1949
1945
|
{
|
1950
|
-
"
|
1951
|
-
"name": "
|
1952
|
-
"
|
1946
|
+
"rank": 3,
|
1947
|
+
"name": "Devastating Strikes",
|
1948
|
+
"id": 4152
|
1953
1949
|
},
|
1954
1950
|
{
|
1955
|
-
"
|
1956
|
-
"name": "
|
1957
|
-
"
|
1951
|
+
"rank": 3,
|
1952
|
+
"name": "Mental Force",
|
1953
|
+
"id": 4123
|
1958
1954
|
},
|
1959
1955
|
{
|
1960
|
-
"
|
1961
|
-
"name": "
|
1962
|
-
"
|
1956
|
+
"rank": 1,
|
1957
|
+
"name": "Arcane Mastery",
|
1958
|
+
"id": 4133
|
1963
1959
|
},
|
1964
1960
|
{
|
1965
|
-
"
|
1966
|
-
"name": "
|
1967
|
-
"
|
1961
|
+
"rank": 1,
|
1962
|
+
"name": "Juggernaut",
|
1963
|
+
"id": 4232
|
1968
1964
|
},
|
1969
1965
|
{
|
1970
|
-
"
|
1971
|
-
"name": "
|
1972
|
-
"
|
1966
|
+
"rank": 3,
|
1967
|
+
"name": "Archmage",
|
1968
|
+
"id": 4143
|
1973
1969
|
},
|
1974
1970
|
{
|
1975
|
-
"
|
1976
|
-
"name": "
|
1977
|
-
"
|
1971
|
+
"rank": 1,
|
1972
|
+
"name": "Havoc",
|
1973
|
+
"id": 4162
|
1978
1974
|
}
|
1979
|
-
]
|
1975
|
+
],
|
1976
|
+
"current": false,
|
1977
|
+
"name": "Vlad",
|
1978
|
+
"id": 34170151
|
1980
1979
|
},
|
1981
1980
|
{
|
1982
|
-
"id": 36928741,
|
1983
|
-
"name": "AP",
|
1984
|
-
"current": false,
|
1985
1981
|
"talents": [
|
1986
1982
|
{
|
1987
|
-
"
|
1988
|
-
"name": "Recovery",
|
1989
|
-
"rank": 2
|
1990
|
-
},
|
1991
|
-
{
|
1992
|
-
"id": 4214,
|
1983
|
+
"rank": 2,
|
1993
1984
|
"name": "Tough Skin",
|
1994
|
-
"
|
1985
|
+
"id": 4214
|
1995
1986
|
},
|
1996
1987
|
{
|
1997
|
-
"
|
1998
|
-
"name": "
|
1999
|
-
"
|
1988
|
+
"rank": 2,
|
1989
|
+
"name": "Fleet of Foot",
|
1990
|
+
"id": 4312
|
2000
1991
|
},
|
2001
1992
|
{
|
2002
|
-
"
|
1993
|
+
"rank": 3,
|
2003
1994
|
"name": "Executioner",
|
2004
|
-
"
|
2005
|
-
},
|
2006
|
-
{
|
2007
|
-
"id": 4124,
|
2008
|
-
"name": "Feast",
|
2009
|
-
"rank": 1
|
2010
|
-
},
|
2011
|
-
{
|
2012
|
-
"id": 4114,
|
2013
|
-
"name": "Butcher",
|
2014
|
-
"rank": 1
|
1995
|
+
"id": 4134
|
2015
1996
|
},
|
2016
1997
|
{
|
2017
|
-
"
|
2018
|
-
"name": "
|
2019
|
-
"
|
1998
|
+
"rank": 1,
|
1999
|
+
"name": "Arcane Blade",
|
2000
|
+
"id": 4154
|
2020
2001
|
},
|
2021
2002
|
{
|
2022
|
-
"
|
2003
|
+
"rank": 4,
|
2023
2004
|
"name": "Sorcery",
|
2024
|
-
"
|
2005
|
+
"id": 4113
|
2025
2006
|
},
|
2026
2007
|
{
|
2027
|
-
"
|
2008
|
+
"rank": 1,
|
2028
2009
|
"name": "Dangerous Game",
|
2029
|
-
"
|
2010
|
+
"id": 4144
|
2011
|
+
},
|
2012
|
+
{
|
2013
|
+
"rank": 3,
|
2014
|
+
"name": "Brute Force",
|
2015
|
+
"id": 4122
|
2030
2016
|
},
|
2031
2017
|
{
|
2032
|
-
"
|
2018
|
+
"rank": 3,
|
2033
2019
|
"name": "Devastating Strikes",
|
2034
|
-
"
|
2020
|
+
"id": 4152
|
2035
2021
|
},
|
2036
2022
|
{
|
2037
|
-
"
|
2023
|
+
"rank": 3,
|
2038
2024
|
"name": "Mental Force",
|
2039
|
-
"
|
2025
|
+
"id": 4123
|
2026
|
+
},
|
2027
|
+
{
|
2028
|
+
"rank": 1,
|
2029
|
+
"name": "Double-Edged Sword",
|
2030
|
+
"id": 4111
|
2040
2031
|
},
|
2041
2032
|
{
|
2042
|
-
"
|
2033
|
+
"rank": 1,
|
2034
|
+
"name": "Martial Mastery",
|
2035
|
+
"id": 4132
|
2036
|
+
},
|
2037
|
+
{
|
2038
|
+
"rank": 1,
|
2043
2039
|
"name": "Arcane Mastery",
|
2044
|
-
"
|
2040
|
+
"id": 4133
|
2045
2041
|
},
|
2046
2042
|
{
|
2047
|
-
"
|
2043
|
+
"rank": 3,
|
2048
2044
|
"name": "Archmage",
|
2049
|
-
"
|
2045
|
+
"id": 4143
|
2050
2046
|
},
|
2051
2047
|
{
|
2052
|
-
"
|
2048
|
+
"rank": 1,
|
2053
2049
|
"name": "Havoc",
|
2054
|
-
"
|
2050
|
+
"id": 4162
|
2051
|
+
},
|
2052
|
+
{
|
2053
|
+
"rank": 1,
|
2054
|
+
"name": "Spell Weaving",
|
2055
|
+
"id": 4131
|
2055
2056
|
}
|
2056
|
-
]
|
2057
|
+
],
|
2058
|
+
"current": false,
|
2059
|
+
"name": "Eve Jungle",
|
2060
|
+
"id": 34170152
|
2057
2061
|
},
|
2058
2062
|
{
|
2059
|
-
"id": 36928742,
|
2060
|
-
"name": "ADC",
|
2061
|
-
"current": false,
|
2062
2063
|
"talents": [
|
2063
2064
|
{
|
2064
|
-
"
|
2065
|
+
"rank": 2,
|
2065
2066
|
"name": "Recovery",
|
2066
|
-
"
|
2067
|
+
"id": 4212
|
2067
2068
|
},
|
2068
2069
|
{
|
2069
|
-
"
|
2070
|
-
"name": "
|
2071
|
-
"
|
2070
|
+
"rank": 1,
|
2071
|
+
"name": "Swiftness",
|
2072
|
+
"id": 4242
|
2072
2073
|
},
|
2073
2074
|
{
|
2074
|
-
"
|
2075
|
-
"name": "
|
2076
|
-
"
|
2075
|
+
"rank": 3,
|
2076
|
+
"name": "Hardiness",
|
2077
|
+
"id": 4233
|
2077
2078
|
},
|
2078
2079
|
{
|
2079
|
-
"
|
2080
|
-
"name": "
|
2081
|
-
"
|
2080
|
+
"rank": 1,
|
2081
|
+
"name": "Reinforced Armor",
|
2082
|
+
"id": 4243
|
2082
2083
|
},
|
2083
2084
|
{
|
2084
|
-
"
|
2085
|
-
"name": "
|
2086
|
-
"
|
2085
|
+
"rank": 2,
|
2086
|
+
"name": "Block",
|
2087
|
+
"id": 4211
|
2087
2088
|
},
|
2088
2089
|
{
|
2089
|
-
"
|
2090
|
-
"name": "
|
2091
|
-
"
|
2090
|
+
"rank": 2,
|
2091
|
+
"name": "Tough Skin",
|
2092
|
+
"id": 4214
|
2092
2093
|
},
|
2093
2094
|
{
|
2094
|
-
"
|
2095
|
-
"name": "
|
2096
|
-
"
|
2095
|
+
"rank": 1,
|
2096
|
+
"name": "Butcher",
|
2097
|
+
"id": 4114
|
2097
2098
|
},
|
2098
2099
|
{
|
2099
|
-
"
|
2100
|
-
"name": "
|
2101
|
-
"
|
2100
|
+
"rank": 1,
|
2101
|
+
"name": "Second Wind",
|
2102
|
+
"id": 4251
|
2102
2103
|
},
|
2103
2104
|
{
|
2104
|
-
"
|
2105
|
-
"name": "
|
2106
|
-
"
|
2105
|
+
"rank": 3,
|
2106
|
+
"name": "Veteran's Scars",
|
2107
|
+
"id": 4222
|
2107
2108
|
},
|
2108
2109
|
{
|
2109
|
-
"
|
2110
|
-
"name": "
|
2111
|
-
"
|
2110
|
+
"rank": 1,
|
2111
|
+
"name": "Unyielding",
|
2112
|
+
"id": 4221
|
2112
2113
|
},
|
2113
2114
|
{
|
2114
|
-
"
|
2115
|
-
"name": "
|
2116
|
-
"
|
2115
|
+
"rank": 4,
|
2116
|
+
"name": "Legendary Guardian",
|
2117
|
+
"id": 4252
|
2117
2118
|
},
|
2118
2119
|
{
|
2119
|
-
"
|
2120
|
-
"name": "
|
2121
|
-
"
|
2120
|
+
"rank": 1,
|
2121
|
+
"name": "Bladed Armor",
|
2122
|
+
"id": 4224
|
2122
2123
|
},
|
2123
2124
|
{
|
2124
|
-
"
|
2125
|
-
"name": "
|
2126
|
-
"
|
2125
|
+
"rank": 1,
|
2126
|
+
"name": "Tenacious",
|
2127
|
+
"id": 4262
|
2127
2128
|
},
|
2128
2129
|
{
|
2129
|
-
"
|
2130
|
-
"name": "
|
2131
|
-
"
|
2130
|
+
"rank": 3,
|
2131
|
+
"name": "Fleet of Foot",
|
2132
|
+
"id": 4312
|
2132
2133
|
},
|
2133
2134
|
{
|
2134
|
-
"
|
2135
|
-
"name": "
|
2136
|
-
"
|
2135
|
+
"rank": 3,
|
2136
|
+
"name": "Perseverance",
|
2137
|
+
"id": 4241
|
2137
2138
|
},
|
2138
2139
|
{
|
2139
|
-
"
|
2140
|
-
"name": "
|
2141
|
-
"
|
2140
|
+
"rank": 1,
|
2141
|
+
"name": "Juggernaut",
|
2142
|
+
"id": 4232
|
2142
2143
|
}
|
2143
|
-
]
|
2144
|
+
],
|
2145
|
+
"current": false,
|
2146
|
+
"name": "Mundo Giungla",
|
2147
|
+
"id": 34170153
|
2144
2148
|
},
|
2145
2149
|
{
|
2146
|
-
"id": 36928743,
|
2147
|
-
"name": "Sivir",
|
2148
|
-
"current": false,
|
2149
2150
|
"talents": [
|
2150
2151
|
{
|
2151
|
-
"
|
2152
|
+
"rank": 2,
|
2152
2153
|
"name": "Recovery",
|
2153
|
-
"
|
2154
|
+
"id": 4212
|
2154
2155
|
},
|
2155
2156
|
{
|
2156
|
-
"
|
2157
|
+
"rank": 1,
|
2158
|
+
"name": "Swiftness",
|
2159
|
+
"id": 4242
|
2160
|
+
},
|
2161
|
+
{
|
2162
|
+
"rank": 2,
|
2157
2163
|
"name": "Block",
|
2158
|
-
"
|
2164
|
+
"id": 4211
|
2159
2165
|
},
|
2160
2166
|
{
|
2161
|
-
"
|
2162
|
-
"name": "
|
2163
|
-
"
|
2167
|
+
"rank": 2,
|
2168
|
+
"name": "Tough Skin",
|
2169
|
+
"id": 4214
|
2164
2170
|
},
|
2165
2171
|
{
|
2166
|
-
"
|
2167
|
-
"name": "
|
2168
|
-
"
|
2172
|
+
"rank": 1,
|
2173
|
+
"name": "Feast",
|
2174
|
+
"id": 4124
|
2169
2175
|
},
|
2170
2176
|
{
|
2171
|
-
"
|
2172
|
-
"name": "
|
2173
|
-
"
|
2177
|
+
"rank": 1,
|
2178
|
+
"name": "Butcher",
|
2179
|
+
"id": 4114
|
2174
2180
|
},
|
2175
2181
|
{
|
2176
|
-
"
|
2177
|
-
"name": "
|
2178
|
-
"
|
2182
|
+
"rank": 3,
|
2183
|
+
"name": "Veteran's Scars",
|
2184
|
+
"id": 4222
|
2179
2185
|
},
|
2180
2186
|
{
|
2181
|
-
"
|
2182
|
-
"name": "
|
2183
|
-
"
|
2187
|
+
"rank": 4,
|
2188
|
+
"name": "Sorcery",
|
2189
|
+
"id": 4113
|
2184
2190
|
},
|
2185
2191
|
{
|
2186
|
-
"
|
2192
|
+
"rank": 1,
|
2187
2193
|
"name": "Unyielding",
|
2188
|
-
"
|
2194
|
+
"id": 4221
|
2189
2195
|
},
|
2190
2196
|
{
|
2191
|
-
"
|
2192
|
-
"name": "
|
2193
|
-
"
|
2197
|
+
"rank": 4,
|
2198
|
+
"name": "Legendary Guardian",
|
2199
|
+
"id": 4252
|
2194
2200
|
},
|
2195
2201
|
{
|
2196
|
-
"
|
2197
|
-
"name": "
|
2198
|
-
"
|
2202
|
+
"rank": 3,
|
2203
|
+
"name": "Mental Force",
|
2204
|
+
"id": 4123
|
2199
2205
|
},
|
2200
2206
|
{
|
2201
|
-
"
|
2202
|
-
"name": "
|
2203
|
-
"
|
2207
|
+
"rank": 1,
|
2208
|
+
"name": "Tenacious",
|
2209
|
+
"id": 4262
|
2204
2210
|
},
|
2205
2211
|
{
|
2206
|
-
"
|
2207
|
-
"name": "
|
2208
|
-
"
|
2212
|
+
"rank": 1,
|
2213
|
+
"name": "Oppression",
|
2214
|
+
"id": 4231
|
2209
2215
|
},
|
2210
2216
|
{
|
2211
|
-
"
|
2212
|
-
"name": "
|
2213
|
-
"
|
2217
|
+
"rank": 3,
|
2218
|
+
"name": "Perseverance",
|
2219
|
+
"id": 4241
|
2214
2220
|
},
|
2215
2221
|
{
|
2216
|
-
"
|
2222
|
+
"rank": 1,
|
2217
2223
|
"name": "Juggernaut",
|
2218
|
-
"
|
2219
|
-
},
|
2220
|
-
{
|
2221
|
-
"id": 4162,
|
2222
|
-
"name": "Havoc",
|
2223
|
-
"rank": 1
|
2224
|
+
"id": 4232
|
2224
2225
|
}
|
2225
|
-
]
|
2226
|
+
],
|
2227
|
+
"current": false,
|
2228
|
+
"name": "9\/21 AP Jungle",
|
2229
|
+
"id": 34170154
|
2226
2230
|
},
|
2227
2231
|
{
|
2228
|
-
"id": 36928744,
|
2229
|
-
"name": "Eve",
|
2230
|
-
"current": false,
|
2231
2232
|
"talents": [
|
2232
2233
|
{
|
2233
|
-
"
|
2234
|
-
"name": "
|
2235
|
-
"
|
2234
|
+
"rank": 2,
|
2235
|
+
"name": "Recovery",
|
2236
|
+
"id": 4212
|
2236
2237
|
},
|
2237
2238
|
{
|
2238
|
-
"
|
2239
|
-
"name": "
|
2240
|
-
"
|
2239
|
+
"rank": 2,
|
2240
|
+
"name": "Block",
|
2241
|
+
"id": 4211
|
2241
2242
|
},
|
2242
2243
|
{
|
2243
|
-
"
|
2244
|
+
"rank": 3,
|
2244
2245
|
"name": "Executioner",
|
2245
|
-
"
|
2246
|
+
"id": 4134
|
2246
2247
|
},
|
2247
2248
|
{
|
2248
|
-
"
|
2249
|
+
"rank": 1,
|
2249
2250
|
"name": "Arcane Blade",
|
2250
|
-
"
|
2251
|
-
},
|
2252
|
-
{
|
2253
|
-
"id": 4124,
|
2254
|
-
"name": "Feast",
|
2255
|
-
"rank": 1
|
2251
|
+
"id": 4154
|
2256
2252
|
},
|
2257
2253
|
{
|
2258
|
-
"
|
2259
|
-
"name": "Butcher",
|
2260
|
-
"rank": 1
|
2261
|
-
},
|
2262
|
-
{
|
2263
|
-
"id": 4222,
|
2254
|
+
"rank": 3,
|
2264
2255
|
"name": "Veteran's Scars",
|
2265
|
-
"
|
2256
|
+
"id": 4222
|
2266
2257
|
},
|
2267
2258
|
{
|
2268
|
-
"
|
2259
|
+
"rank": 4,
|
2269
2260
|
"name": "Sorcery",
|
2270
|
-
"
|
2261
|
+
"id": 4113
|
2262
|
+
},
|
2263
|
+
{
|
2264
|
+
"rank": 1,
|
2265
|
+
"name": "Dangerous Game",
|
2266
|
+
"id": 4144
|
2271
2267
|
},
|
2272
2268
|
{
|
2273
|
-
"
|
2269
|
+
"rank": 1,
|
2274
2270
|
"name": "Unyielding",
|
2275
|
-
"
|
2271
|
+
"id": 4221
|
2276
2272
|
},
|
2277
2273
|
{
|
2278
|
-
"
|
2274
|
+
"rank": 3,
|
2279
2275
|
"name": "Devastating Strikes",
|
2280
|
-
"
|
2276
|
+
"id": 4152
|
2281
2277
|
},
|
2282
2278
|
{
|
2283
|
-
"
|
2279
|
+
"rank": 3,
|
2284
2280
|
"name": "Mental Force",
|
2285
|
-
"
|
2281
|
+
"id": 4123
|
2286
2282
|
},
|
2287
2283
|
{
|
2288
|
-
"
|
2289
|
-
"name": "
|
2290
|
-
"
|
2284
|
+
"rank": 1,
|
2285
|
+
"name": "Oppression",
|
2286
|
+
"id": 4231
|
2291
2287
|
},
|
2292
2288
|
{
|
2293
|
-
"
|
2294
|
-
"name": "
|
2295
|
-
"
|
2289
|
+
"rank": 1,
|
2290
|
+
"name": "Double-Edged Sword",
|
2291
|
+
"id": 4111
|
2296
2292
|
},
|
2297
2293
|
{
|
2298
|
-
"
|
2299
|
-
"name": "
|
2300
|
-
"
|
2294
|
+
"rank": 1,
|
2295
|
+
"name": "Arcane Mastery",
|
2296
|
+
"id": 4133
|
2301
2297
|
},
|
2302
2298
|
{
|
2303
|
-
"
|
2299
|
+
"rank": 3,
|
2300
|
+
"name": "Archmage",
|
2301
|
+
"id": 4143
|
2302
|
+
},
|
2303
|
+
{
|
2304
|
+
"rank": 1,
|
2304
2305
|
"name": "Havoc",
|
2305
|
-
"
|
2306
|
+
"id": 4162
|
2306
2307
|
}
|
2307
|
-
]
|
2308
|
-
|
2309
|
-
|
2310
|
-
"id":
|
2311
|
-
"name": "@@!PaG3!@@36928745",
|
2312
|
-
"current": false
|
2308
|
+
],
|
2309
|
+
"current": false,
|
2310
|
+
"name": "AP Support",
|
2311
|
+
"id": 34170155
|
2313
2312
|
}
|
2314
|
-
]
|
2313
|
+
],
|
2314
|
+
"summonerId": 30743211
|
2315
2315
|
}
|
2316
2316
|
}
|