ruby-lol 0.9.18 → 0.9.19
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Rakefile +5 -0
- data/lib/lol/league.rb +2 -3
- data/lib/lol/league_entry.rb +1 -5
- data/lib/lol/league_request.rb +30 -23
- data/lib/lol/match_history_request.rb +10 -0
- data/lib/lol/match_request.rb +10 -0
- data/lib/lol/request.rb +4 -1
- data/lib/lol/team_request.rb +9 -6
- data/lib/lol/version.rb +1 -1
- data/spec/acceptance_spec.rb +53 -19
- data/spec/api_version_spec.rb +4 -2
- data/spec/fixtures/v2.4/get-team-by-id.json +1 -0
- data/spec/fixtures/v2.4/get-team.json +1 -0
- data/spec/fixtures/v2.5/get-league-by-team.json +1 -0
- data/spec/fixtures/v2.5/get-league-challenger.json +1 -0
- data/spec/fixtures/v2.5/get-league-entry-by-team.json +1 -0
- data/spec/fixtures/v2.5/get-league-entry.json +1 -0
- data/spec/fixtures/v2.5/get-league.json +1 -0
- data/spec/lol/champion_request_spec.rb +8 -11
- data/spec/lol/game_request_spec.rb +8 -9
- data/spec/lol/league_request_spec.rb +69 -6
- data/spec/lol/league_spec.rb +1 -1
- data/spec/lol/mastery_page_spec.rb +1 -1
- data/spec/lol/match_history_request_spec.rb +7 -0
- data/spec/lol/match_request_spec.rb +7 -0
- data/spec/lol/request_spec.rb +9 -9
- data/spec/lol/rune_page_spec.rb +1 -1
- data/spec/lol/static_request_spec.rb +16 -38
- data/spec/lol/stats_request_spec.rb +53 -39
- data/spec/lol/summoner_request_spec.rb +25 -37
- data/spec/lol/team_request_spec.rb +18 -28
- data/spec/spec_helper.rb +4 -38
- data/spec/support/helpers.rb +47 -0
- metadata +24 -30
- data/spec/fixtures/v1.1/get-champion.json +0 -1512
- data/spec/fixtures/v1.2/get-ranked_stats.json +0 -1448
- data/spec/fixtures/v1.2/get-stats.json +0 -115
- data/spec/fixtures/v1.3/get-summoner-by-name.json +0 -16
- data/spec/fixtures/v1.3/get-summoner-masteries.json +0 -2316
- data/spec/fixtures/v1.3/get-summoner-name.json +0 -4
- data/spec/fixtures/v1.3/get-summoner-runes.json +0 -6374
- data/spec/fixtures/v1.3/get-summoner.json +0 -16
- data/spec/fixtures/v2.2/get-team.json +0 -678
- data/spec/fixtures/v2.2/getbyid-team.json +0 -286
- data/spec/fixtures/v2.3/get-league.json +0 -1470
- data/spec/fixtures/v2.3/get-team.json +0 -1
- data/spec/fixtures/v2.3/getbyid-team.json +0 -1
- data/spec/fixtures/v2.4/get-league.json +0 -1
data/spec/spec_helper.rb
CHANGED
@@ -4,6 +4,8 @@ require "coveralls"
|
|
4
4
|
require "codeclimate-test-reporter"
|
5
5
|
require "vcr"
|
6
6
|
|
7
|
+
SPEC_ROOT = __dir__
|
8
|
+
|
7
9
|
Dir[File.expand_path(File.join(File.dirname(__FILE__),'support','**','*.rb'))].each {|f| require f}
|
8
10
|
|
9
11
|
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
|
@@ -14,50 +16,14 @@ SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
|
|
14
16
|
SimpleCov.start
|
15
17
|
|
16
18
|
VCR.configure do |c|
|
17
|
-
c.cassette_library_dir =
|
19
|
+
c.cassette_library_dir = File.join(SPEC_ROOT, '..', 'fixtures', 'vcr_cassettes')
|
18
20
|
c.hook_into :webmock
|
19
21
|
c.ignore_hosts 'codeclimate.com'
|
20
22
|
c.configure_rspec_metadata!
|
21
23
|
end
|
22
24
|
|
23
|
-
def underscore s
|
24
|
-
s.to_s.scan(/[A-Z][a-z]*/).join("_").downcase
|
25
|
-
end
|
26
|
-
|
27
|
-
def camelize s
|
28
|
-
s[0] + s.to_s.split("_").each {|s| s.capitalize! }.join("")[1..-1]
|
29
|
-
end
|
30
|
-
|
31
|
-
def load_fixture subject, version, method
|
32
|
-
JSON.parse(File.read(__dir__ + "/fixtures/#{version}/#{method}-#{subject}.json", :encoding => "utf-8"))
|
33
|
-
end
|
34
|
-
|
35
|
-
def expect_init_attribute subject, attribute
|
36
|
-
expect(subject.new(camelize(attribute) => "foo").send(attribute)).to eq("foo")
|
37
|
-
end
|
38
|
-
|
39
|
-
def expect_read_only_attribute subject, attribute
|
40
|
-
expect { subject.new.send("#{attribute}=".to_sym, "bar") }.to raise_error(NoMethodError)
|
41
|
-
end
|
42
|
-
|
43
|
-
def error_401
|
44
|
-
response = {"status" => {"message" => "Foo", "status_code" => 401}}
|
45
|
-
response.send :instance_eval do
|
46
|
-
def code; 401; end
|
47
|
-
def not_found?; false; end
|
48
|
-
end
|
49
|
-
response
|
50
|
-
end
|
51
|
-
|
52
|
-
def summoners
|
53
|
-
{
|
54
|
-
"euw" => "30743211",
|
55
|
-
"na" => "5908",
|
56
|
-
"eune" => "35778105"
|
57
|
-
}
|
58
|
-
end
|
59
|
-
|
60
25
|
RSpec.configure do |c|
|
61
26
|
# c.fail_fast = true
|
62
27
|
c.filter_run_excluding :remote => true
|
28
|
+
c.include Helpers
|
63
29
|
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
module Helpers
|
2
|
+
def underscore(s)
|
3
|
+
s.to_s.scan(/[A-Z][a-z]*/).join("_").downcase
|
4
|
+
end
|
5
|
+
|
6
|
+
def camelize(s)
|
7
|
+
s[0] + s.to_s.split("_").each {|s| s.capitalize! }.join("")[1..-1]
|
8
|
+
end
|
9
|
+
|
10
|
+
def load_fixture(subject, version, method='get')
|
11
|
+
fixture_file = File.join(SPEC_ROOT, 'fixtures', "#{version}", "#{method}-#{subject}.json")
|
12
|
+
JSON.parse(File.read(fixture_file, :encoding => "utf-8"))
|
13
|
+
end
|
14
|
+
|
15
|
+
def expect_init_attribute(subject, attribute)
|
16
|
+
expect(subject.new(camelize(attribute) => "foo").send(attribute)).to eq("foo")
|
17
|
+
end
|
18
|
+
|
19
|
+
def expect_read_only_attribute(subject, attribute)
|
20
|
+
expect { subject.new.send("#{attribute}=".to_sym, "bar") }.to raise_error(NoMethodError)
|
21
|
+
end
|
22
|
+
|
23
|
+
def error_401
|
24
|
+
response = {"status" => {"message" => "Foo", "status_code" => 401}}
|
25
|
+
response.send :instance_eval do
|
26
|
+
def code; 401; end
|
27
|
+
def not_found?; false; end
|
28
|
+
end
|
29
|
+
response
|
30
|
+
end
|
31
|
+
|
32
|
+
def summoners
|
33
|
+
{
|
34
|
+
"euw" => "30743211",
|
35
|
+
"na" => "5908",
|
36
|
+
"eune" => "35778105"
|
37
|
+
}
|
38
|
+
end
|
39
|
+
|
40
|
+
def stub_request(request_object, fixture_name, url, params={})
|
41
|
+
request_class = request_object.class
|
42
|
+
full_url = request_object.api_url(url, params)
|
43
|
+
fixture_json = load_fixture(fixture_name, request_class.api_version, :get)
|
44
|
+
|
45
|
+
expect(request_class).to receive(:get).with(full_url).and_return(fixture_json)
|
46
|
+
end
|
47
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby-lol
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.19
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Giovanni Intini
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-09-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -286,6 +286,8 @@ files:
|
|
286
286
|
- lib/lol/league_request.rb
|
287
287
|
- lib/lol/mastery.rb
|
288
288
|
- lib/lol/mastery_page.rb
|
289
|
+
- lib/lol/match_history_request.rb
|
290
|
+
- lib/lol/match_request.rb
|
289
291
|
- lib/lol/match_summary.rb
|
290
292
|
- lib/lol/mini_series.rb
|
291
293
|
- lib/lol/model.rb
|
@@ -308,7 +310,6 @@ files:
|
|
308
310
|
- ruby-lol.gemspec
|
309
311
|
- spec/acceptance_spec.rb
|
310
312
|
- spec/api_version_spec.rb
|
311
|
-
- spec/fixtures/v1.1/get-champion.json
|
312
313
|
- spec/fixtures/v1.2/get-champion-266.json
|
313
314
|
- spec/fixtures/v1.2/get-champion-by-id.json
|
314
315
|
- spec/fixtures/v1.2/get-champion.json
|
@@ -316,34 +317,28 @@ files:
|
|
316
317
|
- spec/fixtures/v1.2/get-item.json
|
317
318
|
- spec/fixtures/v1.2/get-mastery-by-id.json
|
318
319
|
- spec/fixtures/v1.2/get-mastery.json
|
319
|
-
- spec/fixtures/v1.2/get-ranked_stats.json
|
320
320
|
- spec/fixtures/v1.2/get-realm.json
|
321
321
|
- spec/fixtures/v1.2/get-rune-by-id.json
|
322
322
|
- spec/fixtures/v1.2/get-rune.json
|
323
323
|
- spec/fixtures/v1.2/get-static-champion.json
|
324
|
-
- spec/fixtures/v1.2/get-stats.json
|
325
324
|
- spec/fixtures/v1.2/get-summoner-spell-by-id.json
|
326
325
|
- spec/fixtures/v1.2/get-summoner-spell.json
|
327
326
|
- spec/fixtures/v1.2/get-versions.json
|
328
327
|
- spec/fixtures/v1.3/get-game.json
|
329
328
|
- spec/fixtures/v1.3/get-ranked_stats.json
|
330
329
|
- spec/fixtures/v1.3/get-stats.json
|
331
|
-
- spec/fixtures/v1.3/get-summoner-by-name.json
|
332
|
-
- spec/fixtures/v1.3/get-summoner-masteries.json
|
333
|
-
- spec/fixtures/v1.3/get-summoner-name.json
|
334
|
-
- spec/fixtures/v1.3/get-summoner-runes.json
|
335
|
-
- spec/fixtures/v1.3/get-summoner.json
|
336
330
|
- spec/fixtures/v1.4/get-summoner-by-name.json
|
337
331
|
- spec/fixtures/v1.4/get-summoner-masteries.json
|
338
332
|
- spec/fixtures/v1.4/get-summoner-name.json
|
339
333
|
- spec/fixtures/v1.4/get-summoner-runes.json
|
340
334
|
- spec/fixtures/v1.4/get-summoner.json
|
341
|
-
- spec/fixtures/v2.
|
342
|
-
- spec/fixtures/v2.
|
343
|
-
- spec/fixtures/v2.
|
344
|
-
- spec/fixtures/v2.
|
345
|
-
- spec/fixtures/v2.
|
346
|
-
- spec/fixtures/v2.
|
335
|
+
- spec/fixtures/v2.4/get-team-by-id.json
|
336
|
+
- spec/fixtures/v2.4/get-team.json
|
337
|
+
- spec/fixtures/v2.5/get-league-by-team.json
|
338
|
+
- spec/fixtures/v2.5/get-league-challenger.json
|
339
|
+
- spec/fixtures/v2.5/get-league-entry-by-team.json
|
340
|
+
- spec/fixtures/v2.5/get-league-entry.json
|
341
|
+
- spec/fixtures/v2.5/get-league.json
|
347
342
|
- spec/lol/champion_request_spec.rb
|
348
343
|
- spec/lol/champion_spec.rb
|
349
344
|
- spec/lol/champion_statistics_summary_spec.rb
|
@@ -356,6 +351,8 @@ files:
|
|
356
351
|
- spec/lol/league_spec.rb
|
357
352
|
- spec/lol/mastery_page_spec.rb
|
358
353
|
- spec/lol/mastery_spec.rb
|
354
|
+
- spec/lol/match_history_request_spec.rb
|
355
|
+
- spec/lol/match_request_spec.rb
|
359
356
|
- spec/lol/match_summary_spec.rb
|
360
357
|
- spec/lol/mini_series_spec.rb
|
361
358
|
- spec/lol/model_spec.rb
|
@@ -375,6 +372,7 @@ files:
|
|
375
372
|
- spec/lol/team_spec.rb
|
376
373
|
- spec/lol/team_statistic_spec.rb
|
377
374
|
- spec/spec_helper.rb
|
375
|
+
- spec/support/helpers.rb
|
378
376
|
- spec/support/model_helpers.rb
|
379
377
|
homepage: https://github.com/mikamai/ruby-lol
|
380
378
|
licenses:
|
@@ -403,7 +401,6 @@ summary: Ruby wrapper to Riot Games API
|
|
403
401
|
test_files:
|
404
402
|
- spec/acceptance_spec.rb
|
405
403
|
- spec/api_version_spec.rb
|
406
|
-
- spec/fixtures/v1.1/get-champion.json
|
407
404
|
- spec/fixtures/v1.2/get-champion-266.json
|
408
405
|
- spec/fixtures/v1.2/get-champion-by-id.json
|
409
406
|
- spec/fixtures/v1.2/get-champion.json
|
@@ -411,34 +408,28 @@ test_files:
|
|
411
408
|
- spec/fixtures/v1.2/get-item.json
|
412
409
|
- spec/fixtures/v1.2/get-mastery-by-id.json
|
413
410
|
- spec/fixtures/v1.2/get-mastery.json
|
414
|
-
- spec/fixtures/v1.2/get-ranked_stats.json
|
415
411
|
- spec/fixtures/v1.2/get-realm.json
|
416
412
|
- spec/fixtures/v1.2/get-rune-by-id.json
|
417
413
|
- spec/fixtures/v1.2/get-rune.json
|
418
414
|
- spec/fixtures/v1.2/get-static-champion.json
|
419
|
-
- spec/fixtures/v1.2/get-stats.json
|
420
415
|
- spec/fixtures/v1.2/get-summoner-spell-by-id.json
|
421
416
|
- spec/fixtures/v1.2/get-summoner-spell.json
|
422
417
|
- spec/fixtures/v1.2/get-versions.json
|
423
418
|
- spec/fixtures/v1.3/get-game.json
|
424
419
|
- spec/fixtures/v1.3/get-ranked_stats.json
|
425
420
|
- spec/fixtures/v1.3/get-stats.json
|
426
|
-
- spec/fixtures/v1.3/get-summoner-by-name.json
|
427
|
-
- spec/fixtures/v1.3/get-summoner-masteries.json
|
428
|
-
- spec/fixtures/v1.3/get-summoner-name.json
|
429
|
-
- spec/fixtures/v1.3/get-summoner-runes.json
|
430
|
-
- spec/fixtures/v1.3/get-summoner.json
|
431
421
|
- spec/fixtures/v1.4/get-summoner-by-name.json
|
432
422
|
- spec/fixtures/v1.4/get-summoner-masteries.json
|
433
423
|
- spec/fixtures/v1.4/get-summoner-name.json
|
434
424
|
- spec/fixtures/v1.4/get-summoner-runes.json
|
435
425
|
- spec/fixtures/v1.4/get-summoner.json
|
436
|
-
- spec/fixtures/v2.
|
437
|
-
- spec/fixtures/v2.
|
438
|
-
- spec/fixtures/v2.
|
439
|
-
- spec/fixtures/v2.
|
440
|
-
- spec/fixtures/v2.
|
441
|
-
- spec/fixtures/v2.
|
426
|
+
- spec/fixtures/v2.4/get-team-by-id.json
|
427
|
+
- spec/fixtures/v2.4/get-team.json
|
428
|
+
- spec/fixtures/v2.5/get-league-by-team.json
|
429
|
+
- spec/fixtures/v2.5/get-league-challenger.json
|
430
|
+
- spec/fixtures/v2.5/get-league-entry-by-team.json
|
431
|
+
- spec/fixtures/v2.5/get-league-entry.json
|
432
|
+
- spec/fixtures/v2.5/get-league.json
|
442
433
|
- spec/lol/champion_request_spec.rb
|
443
434
|
- spec/lol/champion_spec.rb
|
444
435
|
- spec/lol/champion_statistics_summary_spec.rb
|
@@ -451,6 +442,8 @@ test_files:
|
|
451
442
|
- spec/lol/league_spec.rb
|
452
443
|
- spec/lol/mastery_page_spec.rb
|
453
444
|
- spec/lol/mastery_spec.rb
|
445
|
+
- spec/lol/match_history_request_spec.rb
|
446
|
+
- spec/lol/match_request_spec.rb
|
454
447
|
- spec/lol/match_summary_spec.rb
|
455
448
|
- spec/lol/mini_series_spec.rb
|
456
449
|
- spec/lol/model_spec.rb
|
@@ -470,5 +463,6 @@ test_files:
|
|
470
463
|
- spec/lol/team_spec.rb
|
471
464
|
- spec/lol/team_statistic_spec.rb
|
472
465
|
- spec/spec_helper.rb
|
466
|
+
- spec/support/helpers.rb
|
473
467
|
- spec/support/model_helpers.rb
|
474
468
|
has_rdoc:
|
@@ -1,1512 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"champions": [
|
3
|
-
{
|
4
|
-
"id": 266,
|
5
|
-
"name": "Aatrox",
|
6
|
-
"active": true,
|
7
|
-
"attackRank": 8,
|
8
|
-
"defenseRank": 4,
|
9
|
-
"magicRank": 3,
|
10
|
-
"difficultyRank": 6,
|
11
|
-
"botEnabled": false,
|
12
|
-
"freeToPlay": false,
|
13
|
-
"botMmEnabled": false,
|
14
|
-
"rankedPlayEnabled": true
|
15
|
-
},
|
16
|
-
{
|
17
|
-
"id": 103,
|
18
|
-
"name": "Ahri",
|
19
|
-
"active": true,
|
20
|
-
"attackRank": 3,
|
21
|
-
"defenseRank": 4,
|
22
|
-
"magicRank": 8,
|
23
|
-
"difficultyRank": 8,
|
24
|
-
"botEnabled": false,
|
25
|
-
"freeToPlay": false,
|
26
|
-
"botMmEnabled": false,
|
27
|
-
"rankedPlayEnabled": true
|
28
|
-
},
|
29
|
-
{
|
30
|
-
"id": 84,
|
31
|
-
"name": "Akali",
|
32
|
-
"active": true,
|
33
|
-
"attackRank": 5,
|
34
|
-
"defenseRank": 3,
|
35
|
-
"magicRank": 8,
|
36
|
-
"difficultyRank": 6,
|
37
|
-
"botEnabled": false,
|
38
|
-
"freeToPlay": false,
|
39
|
-
"botMmEnabled": false,
|
40
|
-
"rankedPlayEnabled": true
|
41
|
-
},
|
42
|
-
{
|
43
|
-
"id": 12,
|
44
|
-
"name": "Alistar",
|
45
|
-
"active": true,
|
46
|
-
"attackRank": 6,
|
47
|
-
"defenseRank": 9,
|
48
|
-
"magicRank": 5,
|
49
|
-
"difficultyRank": 8,
|
50
|
-
"botEnabled": false,
|
51
|
-
"freeToPlay": false,
|
52
|
-
"botMmEnabled": true,
|
53
|
-
"rankedPlayEnabled": true
|
54
|
-
},
|
55
|
-
{
|
56
|
-
"id": 32,
|
57
|
-
"name": "Amumu",
|
58
|
-
"active": true,
|
59
|
-
"attackRank": 2,
|
60
|
-
"defenseRank": 6,
|
61
|
-
"magicRank": 8,
|
62
|
-
"difficultyRank": 4,
|
63
|
-
"botEnabled": false,
|
64
|
-
"freeToPlay": false,
|
65
|
-
"botMmEnabled": true,
|
66
|
-
"rankedPlayEnabled": true
|
67
|
-
},
|
68
|
-
{
|
69
|
-
"id": 34,
|
70
|
-
"name": "Anivia",
|
71
|
-
"active": true,
|
72
|
-
"attackRank": 1,
|
73
|
-
"defenseRank": 4,
|
74
|
-
"magicRank": 10,
|
75
|
-
"difficultyRank": 8,
|
76
|
-
"botEnabled": false,
|
77
|
-
"freeToPlay": false,
|
78
|
-
"botMmEnabled": false,
|
79
|
-
"rankedPlayEnabled": true
|
80
|
-
},
|
81
|
-
{
|
82
|
-
"id": 1,
|
83
|
-
"name": "Annie",
|
84
|
-
"active": true,
|
85
|
-
"attackRank": 2,
|
86
|
-
"defenseRank": 3,
|
87
|
-
"magicRank": 10,
|
88
|
-
"difficultyRank": 4,
|
89
|
-
"botEnabled": true,
|
90
|
-
"freeToPlay": false,
|
91
|
-
"botMmEnabled": true,
|
92
|
-
"rankedPlayEnabled": true
|
93
|
-
},
|
94
|
-
{
|
95
|
-
"id": 22,
|
96
|
-
"name": "Ashe",
|
97
|
-
"active": true,
|
98
|
-
"attackRank": 7,
|
99
|
-
"defenseRank": 3,
|
100
|
-
"magicRank": 2,
|
101
|
-
"difficultyRank": 4,
|
102
|
-
"botEnabled": true,
|
103
|
-
"freeToPlay": false,
|
104
|
-
"botMmEnabled": true,
|
105
|
-
"rankedPlayEnabled": true
|
106
|
-
},
|
107
|
-
{
|
108
|
-
"id": 53,
|
109
|
-
"name": "Blitzcrank",
|
110
|
-
"active": true,
|
111
|
-
"attackRank": 4,
|
112
|
-
"defenseRank": 8,
|
113
|
-
"magicRank": 5,
|
114
|
-
"difficultyRank": 6,
|
115
|
-
"botEnabled": false,
|
116
|
-
"freeToPlay": false,
|
117
|
-
"botMmEnabled": true,
|
118
|
-
"rankedPlayEnabled": true
|
119
|
-
},
|
120
|
-
{
|
121
|
-
"id": 63,
|
122
|
-
"name": "Brand",
|
123
|
-
"active": true,
|
124
|
-
"attackRank": 2,
|
125
|
-
"defenseRank": 2,
|
126
|
-
"magicRank": 9,
|
127
|
-
"difficultyRank": 6,
|
128
|
-
"botEnabled": false,
|
129
|
-
"freeToPlay": false,
|
130
|
-
"botMmEnabled": true,
|
131
|
-
"rankedPlayEnabled": true
|
132
|
-
},
|
133
|
-
{
|
134
|
-
"id": 51,
|
135
|
-
"name": "Caitlyn",
|
136
|
-
"active": true,
|
137
|
-
"attackRank": 8,
|
138
|
-
"defenseRank": 2,
|
139
|
-
"magicRank": 2,
|
140
|
-
"difficultyRank": 4,
|
141
|
-
"botEnabled": false,
|
142
|
-
"freeToPlay": false,
|
143
|
-
"botMmEnabled": true,
|
144
|
-
"rankedPlayEnabled": true
|
145
|
-
},
|
146
|
-
{
|
147
|
-
"id": 69,
|
148
|
-
"name": "Cassiopeia",
|
149
|
-
"active": true,
|
150
|
-
"attackRank": 2,
|
151
|
-
"defenseRank": 3,
|
152
|
-
"magicRank": 9,
|
153
|
-
"difficultyRank": 10,
|
154
|
-
"botEnabled": false,
|
155
|
-
"freeToPlay": false,
|
156
|
-
"botMmEnabled": true,
|
157
|
-
"rankedPlayEnabled": true
|
158
|
-
},
|
159
|
-
{
|
160
|
-
"id": 31,
|
161
|
-
"name": "Chogath",
|
162
|
-
"active": true,
|
163
|
-
"attackRank": 3,
|
164
|
-
"defenseRank": 7,
|
165
|
-
"magicRank": 7,
|
166
|
-
"difficultyRank": 7,
|
167
|
-
"botEnabled": true,
|
168
|
-
"freeToPlay": true,
|
169
|
-
"botMmEnabled": true,
|
170
|
-
"rankedPlayEnabled": true
|
171
|
-
},
|
172
|
-
{
|
173
|
-
"id": 42,
|
174
|
-
"name": "Corki",
|
175
|
-
"active": true,
|
176
|
-
"attackRank": 8,
|
177
|
-
"defenseRank": 3,
|
178
|
-
"magicRank": 6,
|
179
|
-
"difficultyRank": 7,
|
180
|
-
"botEnabled": false,
|
181
|
-
"freeToPlay": false,
|
182
|
-
"botMmEnabled": false,
|
183
|
-
"rankedPlayEnabled": true
|
184
|
-
},
|
185
|
-
{
|
186
|
-
"id": 122,
|
187
|
-
"name": "Darius",
|
188
|
-
"active": true,
|
189
|
-
"attackRank": 9,
|
190
|
-
"defenseRank": 5,
|
191
|
-
"magicRank": 1,
|
192
|
-
"difficultyRank": 4,
|
193
|
-
"botEnabled": false,
|
194
|
-
"freeToPlay": false,
|
195
|
-
"botMmEnabled": true,
|
196
|
-
"rankedPlayEnabled": true
|
197
|
-
},
|
198
|
-
{
|
199
|
-
"id": 131,
|
200
|
-
"name": "Diana",
|
201
|
-
"active": true,
|
202
|
-
"attackRank": 7,
|
203
|
-
"defenseRank": 6,
|
204
|
-
"magicRank": 8,
|
205
|
-
"difficultyRank": 4,
|
206
|
-
"botEnabled": false,
|
207
|
-
"freeToPlay": false,
|
208
|
-
"botMmEnabled": false,
|
209
|
-
"rankedPlayEnabled": true
|
210
|
-
},
|
211
|
-
{
|
212
|
-
"id": 119,
|
213
|
-
"name": "Draven",
|
214
|
-
"active": true,
|
215
|
-
"attackRank": 9,
|
216
|
-
"defenseRank": 3,
|
217
|
-
"magicRank": 1,
|
218
|
-
"difficultyRank": 10,
|
219
|
-
"botEnabled": false,
|
220
|
-
"freeToPlay": false,
|
221
|
-
"botMmEnabled": false,
|
222
|
-
"rankedPlayEnabled": true
|
223
|
-
},
|
224
|
-
{
|
225
|
-
"id": 36,
|
226
|
-
"name": "DrMundo",
|
227
|
-
"active": true,
|
228
|
-
"attackRank": 5,
|
229
|
-
"defenseRank": 7,
|
230
|
-
"magicRank": 6,
|
231
|
-
"difficultyRank": 4,
|
232
|
-
"botEnabled": false,
|
233
|
-
"freeToPlay": false,
|
234
|
-
"botMmEnabled": true,
|
235
|
-
"rankedPlayEnabled": true
|
236
|
-
},
|
237
|
-
{
|
238
|
-
"id": 60,
|
239
|
-
"name": "Elise",
|
240
|
-
"active": true,
|
241
|
-
"attackRank": 6,
|
242
|
-
"defenseRank": 5,
|
243
|
-
"magicRank": 7,
|
244
|
-
"difficultyRank": 8,
|
245
|
-
"botEnabled": false,
|
246
|
-
"freeToPlay": false,
|
247
|
-
"botMmEnabled": false,
|
248
|
-
"rankedPlayEnabled": true
|
249
|
-
},
|
250
|
-
{
|
251
|
-
"id": 28,
|
252
|
-
"name": "Evelynn",
|
253
|
-
"active": true,
|
254
|
-
"attackRank": 4,
|
255
|
-
"defenseRank": 2,
|
256
|
-
"magicRank": 7,
|
257
|
-
"difficultyRank": 8,
|
258
|
-
"botEnabled": false,
|
259
|
-
"freeToPlay": false,
|
260
|
-
"botMmEnabled": false,
|
261
|
-
"rankedPlayEnabled": true
|
262
|
-
},
|
263
|
-
{
|
264
|
-
"id": 81,
|
265
|
-
"name": "Ezreal",
|
266
|
-
"active": true,
|
267
|
-
"attackRank": 7,
|
268
|
-
"defenseRank": 2,
|
269
|
-
"magicRank": 6,
|
270
|
-
"difficultyRank": 8,
|
271
|
-
"botEnabled": false,
|
272
|
-
"freeToPlay": false,
|
273
|
-
"botMmEnabled": true,
|
274
|
-
"rankedPlayEnabled": true
|
275
|
-
},
|
276
|
-
{
|
277
|
-
"id": 9,
|
278
|
-
"name": "FiddleSticks",
|
279
|
-
"active": true,
|
280
|
-
"attackRank": 2,
|
281
|
-
"defenseRank": 3,
|
282
|
-
"magicRank": 9,
|
283
|
-
"difficultyRank": 5,
|
284
|
-
"botEnabled": true,
|
285
|
-
"freeToPlay": false,
|
286
|
-
"botMmEnabled": true,
|
287
|
-
"rankedPlayEnabled": true
|
288
|
-
},
|
289
|
-
{
|
290
|
-
"id": 114,
|
291
|
-
"name": "Fiora",
|
292
|
-
"active": true,
|
293
|
-
"attackRank": 10,
|
294
|
-
"defenseRank": 4,
|
295
|
-
"magicRank": 2,
|
296
|
-
"difficultyRank": 5,
|
297
|
-
"botEnabled": false,
|
298
|
-
"freeToPlay": false,
|
299
|
-
"botMmEnabled": false,
|
300
|
-
"rankedPlayEnabled": true
|
301
|
-
},
|
302
|
-
{
|
303
|
-
"id": 105,
|
304
|
-
"name": "Fizz",
|
305
|
-
"active": true,
|
306
|
-
"attackRank": 6,
|
307
|
-
"defenseRank": 4,
|
308
|
-
"magicRank": 7,
|
309
|
-
"difficultyRank": 8,
|
310
|
-
"botEnabled": false,
|
311
|
-
"freeToPlay": false,
|
312
|
-
"botMmEnabled": false,
|
313
|
-
"rankedPlayEnabled": true
|
314
|
-
},
|
315
|
-
{
|
316
|
-
"id": 3,
|
317
|
-
"name": "Galio",
|
318
|
-
"active": true,
|
319
|
-
"attackRank": 3,
|
320
|
-
"defenseRank": 7,
|
321
|
-
"magicRank": 6,
|
322
|
-
"difficultyRank": 4,
|
323
|
-
"botEnabled": false,
|
324
|
-
"freeToPlay": false,
|
325
|
-
"botMmEnabled": true,
|
326
|
-
"rankedPlayEnabled": true
|
327
|
-
},
|
328
|
-
{
|
329
|
-
"id": 41,
|
330
|
-
"name": "Gangplank",
|
331
|
-
"active": true,
|
332
|
-
"attackRank": 7,
|
333
|
-
"defenseRank": 6,
|
334
|
-
"magicRank": 4,
|
335
|
-
"difficultyRank": 5,
|
336
|
-
"botEnabled": false,
|
337
|
-
"freeToPlay": false,
|
338
|
-
"botMmEnabled": false,
|
339
|
-
"rankedPlayEnabled": true
|
340
|
-
},
|
341
|
-
{
|
342
|
-
"id": 86,
|
343
|
-
"name": "Garen",
|
344
|
-
"active": true,
|
345
|
-
"attackRank": 7,
|
346
|
-
"defenseRank": 7,
|
347
|
-
"magicRank": 1,
|
348
|
-
"difficultyRank": 2,
|
349
|
-
"botEnabled": true,
|
350
|
-
"freeToPlay": false,
|
351
|
-
"botMmEnabled": true,
|
352
|
-
"rankedPlayEnabled": true
|
353
|
-
},
|
354
|
-
{
|
355
|
-
"id": 79,
|
356
|
-
"name": "Gragas",
|
357
|
-
"active": true,
|
358
|
-
"attackRank": 5,
|
359
|
-
"defenseRank": 6,
|
360
|
-
"magicRank": 7,
|
361
|
-
"difficultyRank": 6,
|
362
|
-
"botEnabled": false,
|
363
|
-
"freeToPlay": false,
|
364
|
-
"botMmEnabled": false,
|
365
|
-
"rankedPlayEnabled": true
|
366
|
-
},
|
367
|
-
{
|
368
|
-
"id": 104,
|
369
|
-
"name": "Graves",
|
370
|
-
"active": true,
|
371
|
-
"attackRank": 8,
|
372
|
-
"defenseRank": 5,
|
373
|
-
"magicRank": 3,
|
374
|
-
"difficultyRank": 4,
|
375
|
-
"botEnabled": true,
|
376
|
-
"freeToPlay": true,
|
377
|
-
"botMmEnabled": true,
|
378
|
-
"rankedPlayEnabled": true
|
379
|
-
},
|
380
|
-
{
|
381
|
-
"id": 120,
|
382
|
-
"name": "Hecarim",
|
383
|
-
"active": true,
|
384
|
-
"attackRank": 8,
|
385
|
-
"defenseRank": 6,
|
386
|
-
"magicRank": 4,
|
387
|
-
"difficultyRank": 5,
|
388
|
-
"botEnabled": false,
|
389
|
-
"freeToPlay": false,
|
390
|
-
"botMmEnabled": false,
|
391
|
-
"rankedPlayEnabled": true
|
392
|
-
},
|
393
|
-
{
|
394
|
-
"id": 74,
|
395
|
-
"name": "Heimerdinger",
|
396
|
-
"active": true,
|
397
|
-
"attackRank": 2,
|
398
|
-
"defenseRank": 6,
|
399
|
-
"magicRank": 8,
|
400
|
-
"difficultyRank": 4,
|
401
|
-
"botEnabled": false,
|
402
|
-
"freeToPlay": true,
|
403
|
-
"botMmEnabled": false,
|
404
|
-
"rankedPlayEnabled": true
|
405
|
-
},
|
406
|
-
{
|
407
|
-
"id": 39,
|
408
|
-
"name": "Irelia",
|
409
|
-
"active": true,
|
410
|
-
"attackRank": 7,
|
411
|
-
"defenseRank": 4,
|
412
|
-
"magicRank": 5,
|
413
|
-
"difficultyRank": 5,
|
414
|
-
"botEnabled": false,
|
415
|
-
"freeToPlay": true,
|
416
|
-
"botMmEnabled": true,
|
417
|
-
"rankedPlayEnabled": true
|
418
|
-
},
|
419
|
-
{
|
420
|
-
"id": 40,
|
421
|
-
"name": "Janna",
|
422
|
-
"active": true,
|
423
|
-
"attackRank": 3,
|
424
|
-
"defenseRank": 5,
|
425
|
-
"magicRank": 7,
|
426
|
-
"difficultyRank": 9,
|
427
|
-
"botEnabled": false,
|
428
|
-
"freeToPlay": false,
|
429
|
-
"botMmEnabled": false,
|
430
|
-
"rankedPlayEnabled": true
|
431
|
-
},
|
432
|
-
{
|
433
|
-
"id": 59,
|
434
|
-
"name": "JarvanIV",
|
435
|
-
"active": true,
|
436
|
-
"attackRank": 6,
|
437
|
-
"defenseRank": 8,
|
438
|
-
"magicRank": 3,
|
439
|
-
"difficultyRank": 5,
|
440
|
-
"botEnabled": false,
|
441
|
-
"freeToPlay": false,
|
442
|
-
"botMmEnabled": true,
|
443
|
-
"rankedPlayEnabled": true
|
444
|
-
},
|
445
|
-
{
|
446
|
-
"id": 24,
|
447
|
-
"name": "Jax",
|
448
|
-
"active": true,
|
449
|
-
"attackRank": 7,
|
450
|
-
"defenseRank": 5,
|
451
|
-
"magicRank": 7,
|
452
|
-
"difficultyRank": 6,
|
453
|
-
"botEnabled": false,
|
454
|
-
"freeToPlay": false,
|
455
|
-
"botMmEnabled": true,
|
456
|
-
"rankedPlayEnabled": true
|
457
|
-
},
|
458
|
-
{
|
459
|
-
"id": 126,
|
460
|
-
"name": "Jayce",
|
461
|
-
"active": true,
|
462
|
-
"attackRank": 8,
|
463
|
-
"defenseRank": 4,
|
464
|
-
"magicRank": 3,
|
465
|
-
"difficultyRank": 8,
|
466
|
-
"botEnabled": false,
|
467
|
-
"freeToPlay": false,
|
468
|
-
"botMmEnabled": false,
|
469
|
-
"rankedPlayEnabled": true
|
470
|
-
},
|
471
|
-
{
|
472
|
-
"id": 222,
|
473
|
-
"name": "Jinx",
|
474
|
-
"active": true,
|
475
|
-
"attackRank": 9,
|
476
|
-
"defenseRank": 2,
|
477
|
-
"magicRank": 4,
|
478
|
-
"difficultyRank": 9,
|
479
|
-
"botEnabled": false,
|
480
|
-
"freeToPlay": false,
|
481
|
-
"botMmEnabled": false,
|
482
|
-
"rankedPlayEnabled": true
|
483
|
-
},
|
484
|
-
{
|
485
|
-
"id": 43,
|
486
|
-
"name": "Karma",
|
487
|
-
"active": true,
|
488
|
-
"attackRank": 1,
|
489
|
-
"defenseRank": 7,
|
490
|
-
"magicRank": 8,
|
491
|
-
"difficultyRank": 8,
|
492
|
-
"botEnabled": false,
|
493
|
-
"freeToPlay": true,
|
494
|
-
"botMmEnabled": false,
|
495
|
-
"rankedPlayEnabled": true
|
496
|
-
},
|
497
|
-
{
|
498
|
-
"id": 30,
|
499
|
-
"name": "Karthus",
|
500
|
-
"active": true,
|
501
|
-
"attackRank": 2,
|
502
|
-
"defenseRank": 2,
|
503
|
-
"magicRank": 10,
|
504
|
-
"difficultyRank": 8,
|
505
|
-
"botEnabled": false,
|
506
|
-
"freeToPlay": false,
|
507
|
-
"botMmEnabled": true,
|
508
|
-
"rankedPlayEnabled": true
|
509
|
-
},
|
510
|
-
{
|
511
|
-
"id": 38,
|
512
|
-
"name": "Kassadin",
|
513
|
-
"active": true,
|
514
|
-
"attackRank": 3,
|
515
|
-
"defenseRank": 5,
|
516
|
-
"magicRank": 8,
|
517
|
-
"difficultyRank": 8,
|
518
|
-
"botEnabled": false,
|
519
|
-
"freeToPlay": false,
|
520
|
-
"botMmEnabled": false,
|
521
|
-
"rankedPlayEnabled": true
|
522
|
-
},
|
523
|
-
{
|
524
|
-
"id": 55,
|
525
|
-
"name": "Katarina",
|
526
|
-
"active": true,
|
527
|
-
"attackRank": 4,
|
528
|
-
"defenseRank": 3,
|
529
|
-
"magicRank": 9,
|
530
|
-
"difficultyRank": 5,
|
531
|
-
"botEnabled": false,
|
532
|
-
"freeToPlay": false,
|
533
|
-
"botMmEnabled": false,
|
534
|
-
"rankedPlayEnabled": true
|
535
|
-
},
|
536
|
-
{
|
537
|
-
"id": 10,
|
538
|
-
"name": "Kayle",
|
539
|
-
"active": true,
|
540
|
-
"attackRank": 6,
|
541
|
-
"defenseRank": 6,
|
542
|
-
"magicRank": 7,
|
543
|
-
"difficultyRank": 5,
|
544
|
-
"botEnabled": false,
|
545
|
-
"freeToPlay": false,
|
546
|
-
"botMmEnabled": true,
|
547
|
-
"rankedPlayEnabled": true
|
548
|
-
},
|
549
|
-
{
|
550
|
-
"id": 85,
|
551
|
-
"name": "Kennen",
|
552
|
-
"active": true,
|
553
|
-
"attackRank": 6,
|
554
|
-
"defenseRank": 4,
|
555
|
-
"magicRank": 7,
|
556
|
-
"difficultyRank": 5,
|
557
|
-
"botEnabled": false,
|
558
|
-
"freeToPlay": false,
|
559
|
-
"botMmEnabled": false,
|
560
|
-
"rankedPlayEnabled": true
|
561
|
-
},
|
562
|
-
{
|
563
|
-
"id": 121,
|
564
|
-
"name": "Khazix",
|
565
|
-
"active": true,
|
566
|
-
"attackRank": 9,
|
567
|
-
"defenseRank": 4,
|
568
|
-
"magicRank": 3,
|
569
|
-
"difficultyRank": 7,
|
570
|
-
"botEnabled": false,
|
571
|
-
"freeToPlay": false,
|
572
|
-
"botMmEnabled": false,
|
573
|
-
"rankedPlayEnabled": true
|
574
|
-
},
|
575
|
-
{
|
576
|
-
"id": 96,
|
577
|
-
"name": "KogMaw",
|
578
|
-
"active": true,
|
579
|
-
"attackRank": 8,
|
580
|
-
"defenseRank": 2,
|
581
|
-
"magicRank": 5,
|
582
|
-
"difficultyRank": 8,
|
583
|
-
"botEnabled": false,
|
584
|
-
"freeToPlay": false,
|
585
|
-
"botMmEnabled": true,
|
586
|
-
"rankedPlayEnabled": true
|
587
|
-
},
|
588
|
-
{
|
589
|
-
"id": 7,
|
590
|
-
"name": "Leblanc",
|
591
|
-
"active": true,
|
592
|
-
"attackRank": 1,
|
593
|
-
"defenseRank": 4,
|
594
|
-
"magicRank": 10,
|
595
|
-
"difficultyRank": 9,
|
596
|
-
"botEnabled": false,
|
597
|
-
"freeToPlay": false,
|
598
|
-
"botMmEnabled": false,
|
599
|
-
"rankedPlayEnabled": true
|
600
|
-
},
|
601
|
-
{
|
602
|
-
"id": 64,
|
603
|
-
"name": "LeeSin",
|
604
|
-
"active": true,
|
605
|
-
"attackRank": 8,
|
606
|
-
"defenseRank": 5,
|
607
|
-
"magicRank": 3,
|
608
|
-
"difficultyRank": 9,
|
609
|
-
"botEnabled": false,
|
610
|
-
"freeToPlay": false,
|
611
|
-
"botMmEnabled": false,
|
612
|
-
"rankedPlayEnabled": true
|
613
|
-
},
|
614
|
-
{
|
615
|
-
"id": 89,
|
616
|
-
"name": "Leona",
|
617
|
-
"active": true,
|
618
|
-
"attackRank": 4,
|
619
|
-
"defenseRank": 8,
|
620
|
-
"magicRank": 3,
|
621
|
-
"difficultyRank": 4,
|
622
|
-
"botEnabled": true,
|
623
|
-
"freeToPlay": false,
|
624
|
-
"botMmEnabled": true,
|
625
|
-
"rankedPlayEnabled": true
|
626
|
-
},
|
627
|
-
{
|
628
|
-
"id": 127,
|
629
|
-
"name": "Lissandra",
|
630
|
-
"active": true,
|
631
|
-
"attackRank": 2,
|
632
|
-
"defenseRank": 5,
|
633
|
-
"magicRank": 8,
|
634
|
-
"difficultyRank": 8,
|
635
|
-
"botEnabled": false,
|
636
|
-
"freeToPlay": false,
|
637
|
-
"botMmEnabled": false,
|
638
|
-
"rankedPlayEnabled": true
|
639
|
-
},
|
640
|
-
{
|
641
|
-
"id": 236,
|
642
|
-
"name": "Lucian",
|
643
|
-
"active": true,
|
644
|
-
"attackRank": 8,
|
645
|
-
"defenseRank": 5,
|
646
|
-
"magicRank": 3,
|
647
|
-
"difficultyRank": 8,
|
648
|
-
"botEnabled": false,
|
649
|
-
"freeToPlay": false,
|
650
|
-
"botMmEnabled": true,
|
651
|
-
"rankedPlayEnabled": true
|
652
|
-
},
|
653
|
-
{
|
654
|
-
"id": 117,
|
655
|
-
"name": "Lulu",
|
656
|
-
"active": true,
|
657
|
-
"attackRank": 4,
|
658
|
-
"defenseRank": 5,
|
659
|
-
"magicRank": 7,
|
660
|
-
"difficultyRank": 7,
|
661
|
-
"botEnabled": false,
|
662
|
-
"freeToPlay": true,
|
663
|
-
"botMmEnabled": false,
|
664
|
-
"rankedPlayEnabled": true
|
665
|
-
},
|
666
|
-
{
|
667
|
-
"id": 99,
|
668
|
-
"name": "Lux",
|
669
|
-
"active": true,
|
670
|
-
"attackRank": 2,
|
671
|
-
"defenseRank": 4,
|
672
|
-
"magicRank": 9,
|
673
|
-
"difficultyRank": 6,
|
674
|
-
"botEnabled": true,
|
675
|
-
"freeToPlay": false,
|
676
|
-
"botMmEnabled": true,
|
677
|
-
"rankedPlayEnabled": true
|
678
|
-
},
|
679
|
-
{
|
680
|
-
"id": 54,
|
681
|
-
"name": "Malphite",
|
682
|
-
"active": true,
|
683
|
-
"attackRank": 5,
|
684
|
-
"defenseRank": 9,
|
685
|
-
"magicRank": 7,
|
686
|
-
"difficultyRank": 3,
|
687
|
-
"botEnabled": true,
|
688
|
-
"freeToPlay": false,
|
689
|
-
"botMmEnabled": true,
|
690
|
-
"rankedPlayEnabled": true
|
691
|
-
},
|
692
|
-
{
|
693
|
-
"id": 90,
|
694
|
-
"name": "Malzahar",
|
695
|
-
"active": true,
|
696
|
-
"attackRank": 2,
|
697
|
-
"defenseRank": 2,
|
698
|
-
"magicRank": 9,
|
699
|
-
"difficultyRank": 6,
|
700
|
-
"botEnabled": true,
|
701
|
-
"freeToPlay": false,
|
702
|
-
"botMmEnabled": true,
|
703
|
-
"rankedPlayEnabled": true
|
704
|
-
},
|
705
|
-
{
|
706
|
-
"id": 57,
|
707
|
-
"name": "Maokai",
|
708
|
-
"active": true,
|
709
|
-
"attackRank": 3,
|
710
|
-
"defenseRank": 8,
|
711
|
-
"magicRank": 6,
|
712
|
-
"difficultyRank": 4,
|
713
|
-
"botEnabled": false,
|
714
|
-
"freeToPlay": false,
|
715
|
-
"botMmEnabled": false,
|
716
|
-
"rankedPlayEnabled": true
|
717
|
-
},
|
718
|
-
{
|
719
|
-
"id": 11,
|
720
|
-
"name": "MasterYi",
|
721
|
-
"active": true,
|
722
|
-
"attackRank": 10,
|
723
|
-
"defenseRank": 4,
|
724
|
-
"magicRank": 2,
|
725
|
-
"difficultyRank": 2,
|
726
|
-
"botEnabled": true,
|
727
|
-
"freeToPlay": true,
|
728
|
-
"botMmEnabled": true,
|
729
|
-
"rankedPlayEnabled": true
|
730
|
-
},
|
731
|
-
{
|
732
|
-
"id": 21,
|
733
|
-
"name": "MissFortune",
|
734
|
-
"active": true,
|
735
|
-
"attackRank": 8,
|
736
|
-
"defenseRank": 2,
|
737
|
-
"magicRank": 5,
|
738
|
-
"difficultyRank": 3,
|
739
|
-
"botEnabled": true,
|
740
|
-
"freeToPlay": false,
|
741
|
-
"botMmEnabled": true,
|
742
|
-
"rankedPlayEnabled": true
|
743
|
-
},
|
744
|
-
{
|
745
|
-
"id": 62,
|
746
|
-
"name": "MonkeyKing",
|
747
|
-
"active": true,
|
748
|
-
"attackRank": 8,
|
749
|
-
"defenseRank": 5,
|
750
|
-
"magicRank": 2,
|
751
|
-
"difficultyRank": 3,
|
752
|
-
"botEnabled": true,
|
753
|
-
"freeToPlay": false,
|
754
|
-
"botMmEnabled": true,
|
755
|
-
"rankedPlayEnabled": true
|
756
|
-
},
|
757
|
-
{
|
758
|
-
"id": 82,
|
759
|
-
"name": "Mordekaiser",
|
760
|
-
"active": true,
|
761
|
-
"attackRank": 4,
|
762
|
-
"defenseRank": 6,
|
763
|
-
"magicRank": 7,
|
764
|
-
"difficultyRank": 3,
|
765
|
-
"botEnabled": false,
|
766
|
-
"freeToPlay": false,
|
767
|
-
"botMmEnabled": false,
|
768
|
-
"rankedPlayEnabled": true
|
769
|
-
},
|
770
|
-
{
|
771
|
-
"id": 25,
|
772
|
-
"name": "Morgana",
|
773
|
-
"active": true,
|
774
|
-
"attackRank": 1,
|
775
|
-
"defenseRank": 6,
|
776
|
-
"magicRank": 8,
|
777
|
-
"difficultyRank": 6,
|
778
|
-
"botEnabled": true,
|
779
|
-
"freeToPlay": false,
|
780
|
-
"botMmEnabled": true,
|
781
|
-
"rankedPlayEnabled": true
|
782
|
-
},
|
783
|
-
{
|
784
|
-
"id": 267,
|
785
|
-
"name": "Nami",
|
786
|
-
"active": true,
|
787
|
-
"attackRank": 4,
|
788
|
-
"defenseRank": 3,
|
789
|
-
"magicRank": 7,
|
790
|
-
"difficultyRank": 8,
|
791
|
-
"botEnabled": false,
|
792
|
-
"freeToPlay": false,
|
793
|
-
"botMmEnabled": false,
|
794
|
-
"rankedPlayEnabled": true
|
795
|
-
},
|
796
|
-
{
|
797
|
-
"id": 75,
|
798
|
-
"name": "Nasus",
|
799
|
-
"active": true,
|
800
|
-
"attackRank": 7,
|
801
|
-
"defenseRank": 5,
|
802
|
-
"magicRank": 6,
|
803
|
-
"difficultyRank": 2,
|
804
|
-
"botEnabled": true,
|
805
|
-
"freeToPlay": false,
|
806
|
-
"botMmEnabled": true,
|
807
|
-
"rankedPlayEnabled": true
|
808
|
-
},
|
809
|
-
{
|
810
|
-
"id": 111,
|
811
|
-
"name": "Nautilus",
|
812
|
-
"active": true,
|
813
|
-
"attackRank": 4,
|
814
|
-
"defenseRank": 6,
|
815
|
-
"magicRank": 6,
|
816
|
-
"difficultyRank": 6,
|
817
|
-
"botEnabled": false,
|
818
|
-
"freeToPlay": false,
|
819
|
-
"botMmEnabled": false,
|
820
|
-
"rankedPlayEnabled": true
|
821
|
-
},
|
822
|
-
{
|
823
|
-
"id": 76,
|
824
|
-
"name": "Nidalee",
|
825
|
-
"active": true,
|
826
|
-
"attackRank": 5,
|
827
|
-
"defenseRank": 4,
|
828
|
-
"magicRank": 7,
|
829
|
-
"difficultyRank": 7,
|
830
|
-
"botEnabled": false,
|
831
|
-
"freeToPlay": false,
|
832
|
-
"botMmEnabled": true,
|
833
|
-
"rankedPlayEnabled": true
|
834
|
-
},
|
835
|
-
{
|
836
|
-
"id": 56,
|
837
|
-
"name": "Nocturne",
|
838
|
-
"active": true,
|
839
|
-
"attackRank": 9,
|
840
|
-
"defenseRank": 5,
|
841
|
-
"magicRank": 2,
|
842
|
-
"difficultyRank": 6,
|
843
|
-
"botEnabled": false,
|
844
|
-
"freeToPlay": false,
|
845
|
-
"botMmEnabled": false,
|
846
|
-
"rankedPlayEnabled": true
|
847
|
-
},
|
848
|
-
{
|
849
|
-
"id": 20,
|
850
|
-
"name": "Nunu",
|
851
|
-
"active": true,
|
852
|
-
"attackRank": 4,
|
853
|
-
"defenseRank": 6,
|
854
|
-
"magicRank": 7,
|
855
|
-
"difficultyRank": 1,
|
856
|
-
"botEnabled": true,
|
857
|
-
"freeToPlay": false,
|
858
|
-
"botMmEnabled": true,
|
859
|
-
"rankedPlayEnabled": true
|
860
|
-
},
|
861
|
-
{
|
862
|
-
"id": 2,
|
863
|
-
"name": "Olaf",
|
864
|
-
"active": true,
|
865
|
-
"attackRank": 9,
|
866
|
-
"defenseRank": 5,
|
867
|
-
"magicRank": 3,
|
868
|
-
"difficultyRank": 4,
|
869
|
-
"botEnabled": false,
|
870
|
-
"freeToPlay": false,
|
871
|
-
"botMmEnabled": false,
|
872
|
-
"rankedPlayEnabled": true
|
873
|
-
},
|
874
|
-
{
|
875
|
-
"id": 61,
|
876
|
-
"name": "Orianna",
|
877
|
-
"active": true,
|
878
|
-
"attackRank": 4,
|
879
|
-
"defenseRank": 3,
|
880
|
-
"magicRank": 9,
|
881
|
-
"difficultyRank": 10,
|
882
|
-
"botEnabled": false,
|
883
|
-
"freeToPlay": false,
|
884
|
-
"botMmEnabled": false,
|
885
|
-
"rankedPlayEnabled": true
|
886
|
-
},
|
887
|
-
{
|
888
|
-
"id": 80,
|
889
|
-
"name": "Pantheon",
|
890
|
-
"active": true,
|
891
|
-
"attackRank": 9,
|
892
|
-
"defenseRank": 4,
|
893
|
-
"magicRank": 3,
|
894
|
-
"difficultyRank": 5,
|
895
|
-
"botEnabled": false,
|
896
|
-
"freeToPlay": false,
|
897
|
-
"botMmEnabled": false,
|
898
|
-
"rankedPlayEnabled": true
|
899
|
-
},
|
900
|
-
{
|
901
|
-
"id": 78,
|
902
|
-
"name": "Poppy",
|
903
|
-
"active": true,
|
904
|
-
"attackRank": 6,
|
905
|
-
"defenseRank": 6,
|
906
|
-
"magicRank": 5,
|
907
|
-
"difficultyRank": 7,
|
908
|
-
"botEnabled": false,
|
909
|
-
"freeToPlay": false,
|
910
|
-
"botMmEnabled": false,
|
911
|
-
"rankedPlayEnabled": true
|
912
|
-
},
|
913
|
-
{
|
914
|
-
"id": 133,
|
915
|
-
"name": "Quinn",
|
916
|
-
"active": true,
|
917
|
-
"attackRank": 9,
|
918
|
-
"defenseRank": 4,
|
919
|
-
"magicRank": 2,
|
920
|
-
"difficultyRank": 7,
|
921
|
-
"botEnabled": false,
|
922
|
-
"freeToPlay": true,
|
923
|
-
"botMmEnabled": false,
|
924
|
-
"rankedPlayEnabled": true
|
925
|
-
},
|
926
|
-
{
|
927
|
-
"id": 33,
|
928
|
-
"name": "Rammus",
|
929
|
-
"active": true,
|
930
|
-
"attackRank": 4,
|
931
|
-
"defenseRank": 10,
|
932
|
-
"magicRank": 5,
|
933
|
-
"difficultyRank": 5,
|
934
|
-
"botEnabled": false,
|
935
|
-
"freeToPlay": false,
|
936
|
-
"botMmEnabled": true,
|
937
|
-
"rankedPlayEnabled": true
|
938
|
-
},
|
939
|
-
{
|
940
|
-
"id": 58,
|
941
|
-
"name": "Renekton",
|
942
|
-
"active": true,
|
943
|
-
"attackRank": 8,
|
944
|
-
"defenseRank": 5,
|
945
|
-
"magicRank": 2,
|
946
|
-
"difficultyRank": 3,
|
947
|
-
"botEnabled": true,
|
948
|
-
"freeToPlay": false,
|
949
|
-
"botMmEnabled": true,
|
950
|
-
"rankedPlayEnabled": true
|
951
|
-
},
|
952
|
-
{
|
953
|
-
"id": 107,
|
954
|
-
"name": "Rengar",
|
955
|
-
"active": true,
|
956
|
-
"attackRank": 7,
|
957
|
-
"defenseRank": 4,
|
958
|
-
"magicRank": 2,
|
959
|
-
"difficultyRank": 5,
|
960
|
-
"botEnabled": false,
|
961
|
-
"freeToPlay": false,
|
962
|
-
"botMmEnabled": false,
|
963
|
-
"rankedPlayEnabled": true
|
964
|
-
},
|
965
|
-
{
|
966
|
-
"id": 92,
|
967
|
-
"name": "Riven",
|
968
|
-
"active": true,
|
969
|
-
"attackRank": 8,
|
970
|
-
"defenseRank": 5,
|
971
|
-
"magicRank": 1,
|
972
|
-
"difficultyRank": 4,
|
973
|
-
"botEnabled": false,
|
974
|
-
"freeToPlay": false,
|
975
|
-
"botMmEnabled": false,
|
976
|
-
"rankedPlayEnabled": true
|
977
|
-
},
|
978
|
-
{
|
979
|
-
"id": 68,
|
980
|
-
"name": "Rumble",
|
981
|
-
"active": true,
|
982
|
-
"attackRank": 3,
|
983
|
-
"defenseRank": 6,
|
984
|
-
"magicRank": 8,
|
985
|
-
"difficultyRank": 8,
|
986
|
-
"botEnabled": false,
|
987
|
-
"freeToPlay": false,
|
988
|
-
"botMmEnabled": false,
|
989
|
-
"rankedPlayEnabled": true
|
990
|
-
},
|
991
|
-
{
|
992
|
-
"id": 13,
|
993
|
-
"name": "Ryze",
|
994
|
-
"active": true,
|
995
|
-
"attackRank": 2,
|
996
|
-
"defenseRank": 2,
|
997
|
-
"magicRank": 10,
|
998
|
-
"difficultyRank": 3,
|
999
|
-
"botEnabled": true,
|
1000
|
-
"freeToPlay": false,
|
1001
|
-
"botMmEnabled": true,
|
1002
|
-
"rankedPlayEnabled": true
|
1003
|
-
},
|
1004
|
-
{
|
1005
|
-
"id": 113,
|
1006
|
-
"name": "Sejuani",
|
1007
|
-
"active": true,
|
1008
|
-
"attackRank": 5,
|
1009
|
-
"defenseRank": 7,
|
1010
|
-
"magicRank": 6,
|
1011
|
-
"difficultyRank": 4,
|
1012
|
-
"botEnabled": false,
|
1013
|
-
"freeToPlay": false,
|
1014
|
-
"botMmEnabled": false,
|
1015
|
-
"rankedPlayEnabled": true
|
1016
|
-
},
|
1017
|
-
{
|
1018
|
-
"id": 35,
|
1019
|
-
"name": "Shaco",
|
1020
|
-
"active": true,
|
1021
|
-
"attackRank": 8,
|
1022
|
-
"defenseRank": 4,
|
1023
|
-
"magicRank": 6,
|
1024
|
-
"difficultyRank": 9,
|
1025
|
-
"botEnabled": false,
|
1026
|
-
"freeToPlay": true,
|
1027
|
-
"botMmEnabled": false,
|
1028
|
-
"rankedPlayEnabled": true
|
1029
|
-
},
|
1030
|
-
{
|
1031
|
-
"id": 98,
|
1032
|
-
"name": "Shen",
|
1033
|
-
"active": true,
|
1034
|
-
"attackRank": 3,
|
1035
|
-
"defenseRank": 9,
|
1036
|
-
"magicRank": 3,
|
1037
|
-
"difficultyRank": 3,
|
1038
|
-
"botEnabled": true,
|
1039
|
-
"freeToPlay": false,
|
1040
|
-
"botMmEnabled": true,
|
1041
|
-
"rankedPlayEnabled": true
|
1042
|
-
},
|
1043
|
-
{
|
1044
|
-
"id": 102,
|
1045
|
-
"name": "Shyvana",
|
1046
|
-
"active": true,
|
1047
|
-
"attackRank": 8,
|
1048
|
-
"defenseRank": 6,
|
1049
|
-
"magicRank": 3,
|
1050
|
-
"difficultyRank": 4,
|
1051
|
-
"botEnabled": true,
|
1052
|
-
"freeToPlay": false,
|
1053
|
-
"botMmEnabled": true,
|
1054
|
-
"rankedPlayEnabled": true
|
1055
|
-
},
|
1056
|
-
{
|
1057
|
-
"id": 27,
|
1058
|
-
"name": "Singed",
|
1059
|
-
"active": true,
|
1060
|
-
"attackRank": 4,
|
1061
|
-
"defenseRank": 8,
|
1062
|
-
"magicRank": 7,
|
1063
|
-
"difficultyRank": 5,
|
1064
|
-
"botEnabled": false,
|
1065
|
-
"freeToPlay": false,
|
1066
|
-
"botMmEnabled": false,
|
1067
|
-
"rankedPlayEnabled": true
|
1068
|
-
},
|
1069
|
-
{
|
1070
|
-
"id": 14,
|
1071
|
-
"name": "Sion",
|
1072
|
-
"active": true,
|
1073
|
-
"attackRank": 5,
|
1074
|
-
"defenseRank": 8,
|
1075
|
-
"magicRank": 7,
|
1076
|
-
"difficultyRank": 4,
|
1077
|
-
"botEnabled": false,
|
1078
|
-
"freeToPlay": false,
|
1079
|
-
"botMmEnabled": true,
|
1080
|
-
"rankedPlayEnabled": true
|
1081
|
-
},
|
1082
|
-
{
|
1083
|
-
"id": 15,
|
1084
|
-
"name": "Sivir",
|
1085
|
-
"active": true,
|
1086
|
-
"attackRank": 9,
|
1087
|
-
"defenseRank": 3,
|
1088
|
-
"magicRank": 1,
|
1089
|
-
"difficultyRank": 3,
|
1090
|
-
"botEnabled": true,
|
1091
|
-
"freeToPlay": false,
|
1092
|
-
"botMmEnabled": true,
|
1093
|
-
"rankedPlayEnabled": true
|
1094
|
-
},
|
1095
|
-
{
|
1096
|
-
"id": 72,
|
1097
|
-
"name": "Skarner",
|
1098
|
-
"active": true,
|
1099
|
-
"attackRank": 7,
|
1100
|
-
"defenseRank": 6,
|
1101
|
-
"magicRank": 5,
|
1102
|
-
"difficultyRank": 5,
|
1103
|
-
"botEnabled": false,
|
1104
|
-
"freeToPlay": false,
|
1105
|
-
"botMmEnabled": false,
|
1106
|
-
"rankedPlayEnabled": true
|
1107
|
-
},
|
1108
|
-
{
|
1109
|
-
"id": 37,
|
1110
|
-
"name": "Sona",
|
1111
|
-
"active": true,
|
1112
|
-
"attackRank": 5,
|
1113
|
-
"defenseRank": 2,
|
1114
|
-
"magicRank": 8,
|
1115
|
-
"difficultyRank": 1,
|
1116
|
-
"botEnabled": true,
|
1117
|
-
"freeToPlay": false,
|
1118
|
-
"botMmEnabled": true,
|
1119
|
-
"rankedPlayEnabled": true
|
1120
|
-
},
|
1121
|
-
{
|
1122
|
-
"id": 16,
|
1123
|
-
"name": "Soraka",
|
1124
|
-
"active": true,
|
1125
|
-
"attackRank": 2,
|
1126
|
-
"defenseRank": 5,
|
1127
|
-
"magicRank": 7,
|
1128
|
-
"difficultyRank": 3,
|
1129
|
-
"botEnabled": true,
|
1130
|
-
"freeToPlay": false,
|
1131
|
-
"botMmEnabled": true,
|
1132
|
-
"rankedPlayEnabled": true
|
1133
|
-
},
|
1134
|
-
{
|
1135
|
-
"id": 50,
|
1136
|
-
"name": "Swain",
|
1137
|
-
"active": true,
|
1138
|
-
"attackRank": 2,
|
1139
|
-
"defenseRank": 6,
|
1140
|
-
"magicRank": 9,
|
1141
|
-
"difficultyRank": 5,
|
1142
|
-
"botEnabled": true,
|
1143
|
-
"freeToPlay": false,
|
1144
|
-
"botMmEnabled": true,
|
1145
|
-
"rankedPlayEnabled": true
|
1146
|
-
},
|
1147
|
-
{
|
1148
|
-
"id": 134,
|
1149
|
-
"name": "Syndra",
|
1150
|
-
"active": true,
|
1151
|
-
"attackRank": 2,
|
1152
|
-
"defenseRank": 3,
|
1153
|
-
"magicRank": 9,
|
1154
|
-
"difficultyRank": 10,
|
1155
|
-
"botEnabled": false,
|
1156
|
-
"freeToPlay": false,
|
1157
|
-
"botMmEnabled": false,
|
1158
|
-
"rankedPlayEnabled": true
|
1159
|
-
},
|
1160
|
-
{
|
1161
|
-
"id": 91,
|
1162
|
-
"name": "Talon",
|
1163
|
-
"active": true,
|
1164
|
-
"attackRank": 9,
|
1165
|
-
"defenseRank": 3,
|
1166
|
-
"magicRank": 1,
|
1167
|
-
"difficultyRank": 6,
|
1168
|
-
"botEnabled": false,
|
1169
|
-
"freeToPlay": false,
|
1170
|
-
"botMmEnabled": false,
|
1171
|
-
"rankedPlayEnabled": true
|
1172
|
-
},
|
1173
|
-
{
|
1174
|
-
"id": 44,
|
1175
|
-
"name": "Taric",
|
1176
|
-
"active": true,
|
1177
|
-
"attackRank": 4,
|
1178
|
-
"defenseRank": 8,
|
1179
|
-
"magicRank": 5,
|
1180
|
-
"difficultyRank": 3,
|
1181
|
-
"botEnabled": true,
|
1182
|
-
"freeToPlay": false,
|
1183
|
-
"botMmEnabled": true,
|
1184
|
-
"rankedPlayEnabled": true
|
1185
|
-
},
|
1186
|
-
{
|
1187
|
-
"id": 17,
|
1188
|
-
"name": "Teemo",
|
1189
|
-
"active": true,
|
1190
|
-
"attackRank": 5,
|
1191
|
-
"defenseRank": 3,
|
1192
|
-
"magicRank": 7,
|
1193
|
-
"difficultyRank": 4,
|
1194
|
-
"botEnabled": false,
|
1195
|
-
"freeToPlay": false,
|
1196
|
-
"botMmEnabled": false,
|
1197
|
-
"rankedPlayEnabled": true
|
1198
|
-
},
|
1199
|
-
{
|
1200
|
-
"id": 412,
|
1201
|
-
"name": "Thresh",
|
1202
|
-
"active": true,
|
1203
|
-
"attackRank": 5,
|
1204
|
-
"defenseRank": 6,
|
1205
|
-
"magicRank": 6,
|
1206
|
-
"difficultyRank": 7,
|
1207
|
-
"botEnabled": false,
|
1208
|
-
"freeToPlay": false,
|
1209
|
-
"botMmEnabled": false,
|
1210
|
-
"rankedPlayEnabled": true
|
1211
|
-
},
|
1212
|
-
{
|
1213
|
-
"id": 18,
|
1214
|
-
"name": "Tristana",
|
1215
|
-
"active": true,
|
1216
|
-
"attackRank": 9,
|
1217
|
-
"defenseRank": 3,
|
1218
|
-
"magicRank": 5,
|
1219
|
-
"difficultyRank": 3,
|
1220
|
-
"botEnabled": true,
|
1221
|
-
"freeToPlay": false,
|
1222
|
-
"botMmEnabled": true,
|
1223
|
-
"rankedPlayEnabled": true
|
1224
|
-
},
|
1225
|
-
{
|
1226
|
-
"id": 48,
|
1227
|
-
"name": "Trundle",
|
1228
|
-
"active": true,
|
1229
|
-
"attackRank": 7,
|
1230
|
-
"defenseRank": 6,
|
1231
|
-
"magicRank": 2,
|
1232
|
-
"difficultyRank": 5,
|
1233
|
-
"botEnabled": true,
|
1234
|
-
"freeToPlay": false,
|
1235
|
-
"botMmEnabled": true,
|
1236
|
-
"rankedPlayEnabled": true
|
1237
|
-
},
|
1238
|
-
{
|
1239
|
-
"id": 23,
|
1240
|
-
"name": "Tryndamere",
|
1241
|
-
"active": true,
|
1242
|
-
"attackRank": 10,
|
1243
|
-
"defenseRank": 5,
|
1244
|
-
"magicRank": 2,
|
1245
|
-
"difficultyRank": 6,
|
1246
|
-
"botEnabled": false,
|
1247
|
-
"freeToPlay": false,
|
1248
|
-
"botMmEnabled": false,
|
1249
|
-
"rankedPlayEnabled": true
|
1250
|
-
},
|
1251
|
-
{
|
1252
|
-
"id": 4,
|
1253
|
-
"name": "TwistedFate",
|
1254
|
-
"active": true,
|
1255
|
-
"attackRank": 6,
|
1256
|
-
"defenseRank": 2,
|
1257
|
-
"magicRank": 6,
|
1258
|
-
"difficultyRank": 9,
|
1259
|
-
"botEnabled": false,
|
1260
|
-
"freeToPlay": true,
|
1261
|
-
"botMmEnabled": false,
|
1262
|
-
"rankedPlayEnabled": true
|
1263
|
-
},
|
1264
|
-
{
|
1265
|
-
"id": 29,
|
1266
|
-
"name": "Twitch",
|
1267
|
-
"active": true,
|
1268
|
-
"attackRank": 9,
|
1269
|
-
"defenseRank": 2,
|
1270
|
-
"magicRank": 3,
|
1271
|
-
"difficultyRank": 8,
|
1272
|
-
"botEnabled": false,
|
1273
|
-
"freeToPlay": false,
|
1274
|
-
"botMmEnabled": false,
|
1275
|
-
"rankedPlayEnabled": true
|
1276
|
-
},
|
1277
|
-
{
|
1278
|
-
"id": 77,
|
1279
|
-
"name": "Udyr",
|
1280
|
-
"active": true,
|
1281
|
-
"attackRank": 8,
|
1282
|
-
"defenseRank": 7,
|
1283
|
-
"magicRank": 4,
|
1284
|
-
"difficultyRank": 5,
|
1285
|
-
"botEnabled": false,
|
1286
|
-
"freeToPlay": false,
|
1287
|
-
"botMmEnabled": true,
|
1288
|
-
"rankedPlayEnabled": true
|
1289
|
-
},
|
1290
|
-
{
|
1291
|
-
"id": 6,
|
1292
|
-
"name": "Urgot",
|
1293
|
-
"active": true,
|
1294
|
-
"attackRank": 8,
|
1295
|
-
"defenseRank": 5,
|
1296
|
-
"magicRank": 3,
|
1297
|
-
"difficultyRank": 8,
|
1298
|
-
"botEnabled": false,
|
1299
|
-
"freeToPlay": false,
|
1300
|
-
"botMmEnabled": false,
|
1301
|
-
"rankedPlayEnabled": true
|
1302
|
-
},
|
1303
|
-
{
|
1304
|
-
"id": 110,
|
1305
|
-
"name": "Varus",
|
1306
|
-
"active": true,
|
1307
|
-
"attackRank": 7,
|
1308
|
-
"defenseRank": 3,
|
1309
|
-
"magicRank": 4,
|
1310
|
-
"difficultyRank": 6,
|
1311
|
-
"botEnabled": false,
|
1312
|
-
"freeToPlay": false,
|
1313
|
-
"botMmEnabled": false,
|
1314
|
-
"rankedPlayEnabled": true
|
1315
|
-
},
|
1316
|
-
{
|
1317
|
-
"id": 67,
|
1318
|
-
"name": "Vayne",
|
1319
|
-
"active": true,
|
1320
|
-
"attackRank": 10,
|
1321
|
-
"defenseRank": 1,
|
1322
|
-
"magicRank": 1,
|
1323
|
-
"difficultyRank": 7,
|
1324
|
-
"botEnabled": false,
|
1325
|
-
"freeToPlay": false,
|
1326
|
-
"botMmEnabled": false,
|
1327
|
-
"rankedPlayEnabled": true
|
1328
|
-
},
|
1329
|
-
{
|
1330
|
-
"id": 45,
|
1331
|
-
"name": "Veigar",
|
1332
|
-
"active": true,
|
1333
|
-
"attackRank": 2,
|
1334
|
-
"defenseRank": 2,
|
1335
|
-
"magicRank": 10,
|
1336
|
-
"difficultyRank": 6,
|
1337
|
-
"botEnabled": false,
|
1338
|
-
"freeToPlay": false,
|
1339
|
-
"botMmEnabled": true,
|
1340
|
-
"rankedPlayEnabled": true
|
1341
|
-
},
|
1342
|
-
{
|
1343
|
-
"id": 254,
|
1344
|
-
"name": "Vi",
|
1345
|
-
"active": true,
|
1346
|
-
"attackRank": 8,
|
1347
|
-
"defenseRank": 5,
|
1348
|
-
"magicRank": 3,
|
1349
|
-
"difficultyRank": 5,
|
1350
|
-
"botEnabled": false,
|
1351
|
-
"freeToPlay": false,
|
1352
|
-
"botMmEnabled": false,
|
1353
|
-
"rankedPlayEnabled": true
|
1354
|
-
},
|
1355
|
-
{
|
1356
|
-
"id": 112,
|
1357
|
-
"name": "Viktor",
|
1358
|
-
"active": true,
|
1359
|
-
"attackRank": 2,
|
1360
|
-
"defenseRank": 5,
|
1361
|
-
"magicRank": 9,
|
1362
|
-
"difficultyRank": 9,
|
1363
|
-
"botEnabled": false,
|
1364
|
-
"freeToPlay": false,
|
1365
|
-
"botMmEnabled": false,
|
1366
|
-
"rankedPlayEnabled": true
|
1367
|
-
},
|
1368
|
-
{
|
1369
|
-
"id": 8,
|
1370
|
-
"name": "Vladimir",
|
1371
|
-
"active": true,
|
1372
|
-
"attackRank": 2,
|
1373
|
-
"defenseRank": 6,
|
1374
|
-
"magicRank": 8,
|
1375
|
-
"difficultyRank": 2,
|
1376
|
-
"botEnabled": false,
|
1377
|
-
"freeToPlay": false,
|
1378
|
-
"botMmEnabled": true,
|
1379
|
-
"rankedPlayEnabled": true
|
1380
|
-
},
|
1381
|
-
{
|
1382
|
-
"id": 106,
|
1383
|
-
"name": "Volibear",
|
1384
|
-
"active": true,
|
1385
|
-
"attackRank": 7,
|
1386
|
-
"defenseRank": 7,
|
1387
|
-
"magicRank": 4,
|
1388
|
-
"difficultyRank": 2,
|
1389
|
-
"botEnabled": false,
|
1390
|
-
"freeToPlay": false,
|
1391
|
-
"botMmEnabled": false,
|
1392
|
-
"rankedPlayEnabled": true
|
1393
|
-
},
|
1394
|
-
{
|
1395
|
-
"id": 19,
|
1396
|
-
"name": "Warwick",
|
1397
|
-
"active": true,
|
1398
|
-
"attackRank": 7,
|
1399
|
-
"defenseRank": 4,
|
1400
|
-
"magicRank": 4,
|
1401
|
-
"difficultyRank": 2,
|
1402
|
-
"botEnabled": true,
|
1403
|
-
"freeToPlay": false,
|
1404
|
-
"botMmEnabled": true,
|
1405
|
-
"rankedPlayEnabled": true
|
1406
|
-
},
|
1407
|
-
{
|
1408
|
-
"id": 101,
|
1409
|
-
"name": "Xerath",
|
1410
|
-
"active": true,
|
1411
|
-
"attackRank": 1,
|
1412
|
-
"defenseRank": 3,
|
1413
|
-
"magicRank": 10,
|
1414
|
-
"difficultyRank": 6,
|
1415
|
-
"botEnabled": false,
|
1416
|
-
"freeToPlay": false,
|
1417
|
-
"botMmEnabled": false,
|
1418
|
-
"rankedPlayEnabled": true
|
1419
|
-
},
|
1420
|
-
{
|
1421
|
-
"id": 5,
|
1422
|
-
"name": "XinZhao",
|
1423
|
-
"active": true,
|
1424
|
-
"attackRank": 8,
|
1425
|
-
"defenseRank": 6,
|
1426
|
-
"magicRank": 3,
|
1427
|
-
"difficultyRank": 3,
|
1428
|
-
"botEnabled": true,
|
1429
|
-
"freeToPlay": false,
|
1430
|
-
"botMmEnabled": true,
|
1431
|
-
"rankedPlayEnabled": true
|
1432
|
-
},
|
1433
|
-
{
|
1434
|
-
"id": 83,
|
1435
|
-
"name": "Yorick",
|
1436
|
-
"active": true,
|
1437
|
-
"attackRank": 6,
|
1438
|
-
"defenseRank": 6,
|
1439
|
-
"magicRank": 6,
|
1440
|
-
"difficultyRank": 3,
|
1441
|
-
"botEnabled": false,
|
1442
|
-
"freeToPlay": false,
|
1443
|
-
"botMmEnabled": false,
|
1444
|
-
"rankedPlayEnabled": true
|
1445
|
-
},
|
1446
|
-
{
|
1447
|
-
"id": 154,
|
1448
|
-
"name": "Zac",
|
1449
|
-
"active": true,
|
1450
|
-
"attackRank": 3,
|
1451
|
-
"defenseRank": 7,
|
1452
|
-
"magicRank": 7,
|
1453
|
-
"difficultyRank": 6,
|
1454
|
-
"botEnabled": false,
|
1455
|
-
"freeToPlay": false,
|
1456
|
-
"botMmEnabled": false,
|
1457
|
-
"rankedPlayEnabled": true
|
1458
|
-
},
|
1459
|
-
{
|
1460
|
-
"id": 238,
|
1461
|
-
"name": "Zed",
|
1462
|
-
"active": true,
|
1463
|
-
"attackRank": 9,
|
1464
|
-
"defenseRank": 2,
|
1465
|
-
"magicRank": 1,
|
1466
|
-
"difficultyRank": 9,
|
1467
|
-
"botEnabled": false,
|
1468
|
-
"freeToPlay": false,
|
1469
|
-
"botMmEnabled": false,
|
1470
|
-
"rankedPlayEnabled": true
|
1471
|
-
},
|
1472
|
-
{
|
1473
|
-
"id": 115,
|
1474
|
-
"name": "Ziggs",
|
1475
|
-
"active": true,
|
1476
|
-
"attackRank": 2,
|
1477
|
-
"defenseRank": 4,
|
1478
|
-
"magicRank": 9,
|
1479
|
-
"difficultyRank": 6,
|
1480
|
-
"botEnabled": false,
|
1481
|
-
"freeToPlay": false,
|
1482
|
-
"botMmEnabled": true,
|
1483
|
-
"rankedPlayEnabled": true
|
1484
|
-
},
|
1485
|
-
{
|
1486
|
-
"id": 26,
|
1487
|
-
"name": "Zilean",
|
1488
|
-
"active": true,
|
1489
|
-
"attackRank": 2,
|
1490
|
-
"defenseRank": 5,
|
1491
|
-
"magicRank": 8,
|
1492
|
-
"difficultyRank": 4,
|
1493
|
-
"botEnabled": false,
|
1494
|
-
"freeToPlay": false,
|
1495
|
-
"botMmEnabled": true,
|
1496
|
-
"rankedPlayEnabled": true
|
1497
|
-
},
|
1498
|
-
{
|
1499
|
-
"id": 143,
|
1500
|
-
"name": "Zyra",
|
1501
|
-
"active": true,
|
1502
|
-
"attackRank": 4,
|
1503
|
-
"defenseRank": 3,
|
1504
|
-
"magicRank": 8,
|
1505
|
-
"difficultyRank": 7,
|
1506
|
-
"botEnabled": false,
|
1507
|
-
"freeToPlay": false,
|
1508
|
-
"botMmEnabled": true,
|
1509
|
-
"rankedPlayEnabled": true
|
1510
|
-
}
|
1511
|
-
]
|
1512
|
-
}
|