ruby-lol 0.12.2 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (167) hide show
  1. checksums.yaml +4 -4
  2. data/.editorconfig +16 -0
  3. data/.gitignore +2 -0
  4. data/.rspec +1 -0
  5. data/.rubocop.yml +1157 -0
  6. data/.travis.yml +1 -1
  7. data/lib/lol/champion_mastery_request.rb +29 -57
  8. data/lib/lol/champion_request.rb +19 -23
  9. data/lib/lol/client.rb +16 -21
  10. data/lib/lol/dynamic_model.rb +14 -5
  11. data/lib/lol/featured_game_list.rb +15 -0
  12. data/lib/lol/league_request.rb +28 -49
  13. data/lib/lol/lol_status_request.rb +9 -26
  14. data/lib/lol/masteries_request.rb +14 -0
  15. data/lib/lol/match_request.rb +51 -9
  16. data/lib/lol/request.rb +55 -21
  17. data/lib/lol/runes_request.rb +14 -0
  18. data/lib/lol/spectator_request.rb +24 -0
  19. data/lib/lol/static_request.rb +34 -23
  20. data/lib/lol/summoner_request.rb +22 -51
  21. data/lib/lol/tournament_request.rb +95 -0
  22. data/lib/lol/version.rb +1 -1
  23. data/ruby-lol.gemspec +1 -1
  24. data/spec/api_version_spec.rb +10 -9
  25. data/spec/fixtures/{v1.2 → v3}/get-champion-266.json +0 -0
  26. data/spec/fixtures/{v1.2/get-champion.json → v3/get-champion-all.json} +0 -0
  27. data/spec/fixtures/{v1.0/get-champion-mastery-champions.json → v3/get-champion-masteries.json} +0 -0
  28. data/spec/fixtures/{v1.0/get-champion-mastery-champion.json → v3/get-champion-mastery.json} +0 -0
  29. data/spec/fixtures/v3/get-current-game.json +1 -0
  30. data/spec/fixtures/v3/get-featured-games.json +1 -0
  31. data/spec/fixtures/v3/get-ids-by-tc.json +1 -0
  32. data/spec/fixtures/v3/get-league-challenger.json +1 -0
  33. data/spec/fixtures/v3/get-league-master.json +1 -0
  34. data/spec/fixtures/v3/get-league-positions.json +1 -0
  35. data/spec/fixtures/v3/get-league-summoner.json +1 -0
  36. data/spec/fixtures/v3/get-lol-status-shard.json +1 -0
  37. data/spec/fixtures/v3/get-masteries.json +1 -0
  38. data/spec/fixtures/v3/get-match-with-tc.json +1 -0
  39. data/spec/fixtures/v3/get-match.json +1 -0
  40. data/spec/fixtures/v3/get-matches-recent.json +1 -0
  41. data/spec/fixtures/v3/get-matches.json +1 -0
  42. data/spec/fixtures/v3/get-runes.json +1 -0
  43. data/spec/fixtures/v3/get-static-champions-by-id.json +1 -0
  44. data/spec/fixtures/v3/get-static-champions.json +1 -0
  45. data/spec/fixtures/v3/get-static-items-by-id.json +1 -0
  46. data/spec/fixtures/v3/get-static-items.json +1 -0
  47. data/spec/fixtures/v3/get-static-maps.json +1 -0
  48. data/spec/fixtures/v3/get-static-masteries-by-id.json +1 -0
  49. data/spec/fixtures/v3/get-static-masteries.json +1 -0
  50. data/spec/fixtures/v3/get-static-realms.json +1 -0
  51. data/spec/fixtures/v3/get-static-runes-by-id.json +1 -0
  52. data/spec/fixtures/v3/get-static-runes.json +1 -0
  53. data/spec/fixtures/v3/get-static-summoner-spells-by-id.json +1 -0
  54. data/spec/fixtures/v3/get-static-summoner-spells.json +1 -0
  55. data/spec/fixtures/v3/get-static-versions.json +1 -0
  56. data/spec/fixtures/v3/get-summoner-by-name.json +1 -0
  57. data/spec/fixtures/v3/get-summoner.json +1 -0
  58. data/spec/fixtures/v3/get-timeline.json +1 -0
  59. data/spec/fixtures/v3/get-tournament-code.json +1 -0
  60. data/spec/lol/champion_mastery_request_spec.rb +33 -133
  61. data/spec/lol/champion_request_spec.rb +17 -30
  62. data/spec/lol/client_spec.rb +12 -56
  63. data/spec/lol/league_request_spec.rb +29 -72
  64. data/spec/lol/lol_status_request_spec.rb +6 -34
  65. data/spec/lol/masteries_request_spec.rb +15 -0
  66. data/spec/lol/match_request_spec.rb +45 -10
  67. data/spec/lol/request_spec.rb +5 -5
  68. data/spec/lol/runes_request_spec.rb +15 -0
  69. data/spec/lol/spectator_request_spec.rb +23 -0
  70. data/spec/lol/static_request_spec.rb +44 -48
  71. data/spec/lol/summoner_request_spec.rb +20 -71
  72. data/spec/lol/tournament_request_spec.rb +36 -0
  73. metadata +92 -175
  74. data/lib/lol/champion.rb +0 -37
  75. data/lib/lol/champion_mastery.rb +0 -50
  76. data/lib/lol/champion_statistics_summary.rb +0 -25
  77. data/lib/lol/current_game_request.rb +0 -16
  78. data/lib/lol/featured_games_request.rb +0 -15
  79. data/lib/lol/game.rb +0 -85
  80. data/lib/lol/game_request.rb +0 -19
  81. data/lib/lol/league.rb +0 -32
  82. data/lib/lol/league_entry.rb +0 -74
  83. data/lib/lol/mastery.rb +0 -16
  84. data/lib/lol/mastery_page.rb +0 -28
  85. data/lib/lol/match_list_request.rb +0 -15
  86. data/lib/lol/match_summary.rb +0 -59
  87. data/lib/lol/mini_series.rb +0 -29
  88. data/lib/lol/model.rb +0 -28
  89. data/lib/lol/player.rb +0 -21
  90. data/lib/lol/player_statistic.rb +0 -46
  91. data/lib/lol/ranked_statistics_summary.rb +0 -35
  92. data/lib/lol/roster.rb +0 -23
  93. data/lib/lol/rune_page.rb +0 -28
  94. data/lib/lol/rune_slot.rb +0 -29
  95. data/lib/lol/stats_request.rb +0 -35
  96. data/lib/lol/summoner.rb +0 -36
  97. data/lib/lol/team.rb +0 -110
  98. data/lib/lol/team_member.rb +0 -33
  99. data/lib/lol/team_request.rb +0 -32
  100. data/lib/lol/team_statistic.rb +0 -53
  101. data/lib/lol/tournament_code.rb +0 -58
  102. data/lib/lol/tournament_provider_request.rb +0 -111
  103. data/spec/fixtures/v1.0/get-champion-mastery-top-champions-10.json +0 -121
  104. data/spec/fixtures/v1.0/get-champion-mastery-top-champions.json +0 -38
  105. data/spec/fixtures/v1.0/get-current-game.json +0 -1065
  106. data/spec/fixtures/v1.0/get-featured-games.json +0 -730
  107. data/spec/fixtures/v1.0/get-lol-status-shard-by-region.json +0 -39
  108. data/spec/fixtures/v1.0/get-lol-status-shards.json +0 -78
  109. data/spec/fixtures/v1.2/get-champion-by-id.json +0 -6
  110. data/spec/fixtures/v1.2/get-item-by-id.json +0 -6
  111. data/spec/fixtures/v1.2/get-item.json +0 -1563
  112. data/spec/fixtures/v1.2/get-mastery-by-id.json +0 -9
  113. data/spec/fixtures/v1.2/get-mastery.json +0 -389
  114. data/spec/fixtures/v1.2/get-realm.json +0 -1
  115. data/spec/fixtures/v1.2/get-rune-by-id.json +0 -26
  116. data/spec/fixtures/v1.2/get-rune.json +0 -2966
  117. data/spec/fixtures/v1.2/get-static-champion.json +0 -714
  118. data/spec/fixtures/v1.2/get-summoner-spell-by-id.json +0 -39
  119. data/spec/fixtures/v1.2/get-summoner-spell.json +0 -97
  120. data/spec/fixtures/v1.2/get-versions.json +0 -1
  121. data/spec/fixtures/v1.3/get-game.json +0 -1040
  122. data/spec/fixtures/v1.3/get-ranked_stats.json +0 -1
  123. data/spec/fixtures/v1.3/get-stats.json +0 -1
  124. data/spec/fixtures/v1.4/get-summoner-by-name.json +0 -1
  125. data/spec/fixtures/v1.4/get-summoner-masteries.json +0 -898
  126. data/spec/fixtures/v1.4/get-summoner-name.json +0 -1
  127. data/spec/fixtures/v1.4/get-summoner-runes.json +0 -2547
  128. data/spec/fixtures/v1.4/get-summoner.json +0 -1
  129. data/spec/fixtures/v2.2/get-match.json +0 -1
  130. data/spec/fixtures/v2.2/get-match_list.json +0 -1
  131. data/spec/fixtures/v2.4/get-by-summoner.json +0 -1
  132. data/spec/fixtures/v2.4/get-team.json +0 -1
  133. data/spec/fixtures/v2.5/get-league-by-team.json +0 -1
  134. data/spec/fixtures/v2.5/get-league-challenger.json +0 -1
  135. data/spec/fixtures/v2.5/get-league-entry-by-team.json +0 -1
  136. data/spec/fixtures/v2.5/get-league-entry.json +0 -1
  137. data/spec/fixtures/v2.5/get-league-master.json +0 -1
  138. data/spec/fixtures/v2.5/get-league.json +0 -1
  139. data/spec/lol/champion_mastery_spec.rb +0 -20
  140. data/spec/lol/champion_spec.rb +0 -19
  141. data/spec/lol/champion_statistics_summary_spec.rb +0 -38
  142. data/spec/lol/current_game_request_spec.rb +0 -47
  143. data/spec/lol/featured_games_request_spec.rb +0 -39
  144. data/spec/lol/game_request_spec.rb +0 -32
  145. data/spec/lol/game_spec.rb +0 -51
  146. data/spec/lol/league_entry_spec.rb +0 -51
  147. data/spec/lol/league_spec.rb +0 -31
  148. data/spec/lol/mastery_page_spec.rb +0 -29
  149. data/spec/lol/mastery_spec.rb +0 -17
  150. data/spec/lol/match_list_request_spec.rb +0 -39
  151. data/spec/lol/match_summary_spec.rb +0 -25
  152. data/spec/lol/mini_series_spec.rb +0 -25
  153. data/spec/lol/model_spec.rb +0 -13
  154. data/spec/lol/player_spec.rb +0 -19
  155. data/spec/lol/player_statistic_spec.rb +0 -44
  156. data/spec/lol/ranked_statistics_summary_spec.rb +0 -32
  157. data/spec/lol/roster_spec.rb +0 -24
  158. data/spec/lol/rune_page_spec.rb +0 -28
  159. data/spec/lol/rune_slot_spec.rb +0 -16
  160. data/spec/lol/stats_request_spec.rb +0 -93
  161. data/spec/lol/summoner_spec.rb +0 -20
  162. data/spec/lol/team_member_spec.rb +0 -27
  163. data/spec/lol/team_request_spec.rb +0 -47
  164. data/spec/lol/team_spec.rb +0 -54
  165. data/spec/lol/team_statistic_spec.rb +0 -20
  166. data/spec/lol/tournament_code_spec.rb +0 -20
  167. data/spec/lol/tournament_provider_request_spec.rb +0 -73
@@ -1,714 +0,0 @@
1
- {
2
- "data": {
3
- "Thresh": {
4
- "id": 412,
5
- "title": "the Chain Warden",
6
- "name": "Thresh",
7
- "key": "Thresh"
8
- },
9
- "Aatrox": {
10
- "id": 266,
11
- "title": "the Darkin Blade",
12
- "name": "Aatrox",
13
- "key": "Aatrox"
14
- },
15
- "Tryndamere": {
16
- "id": 23,
17
- "title": "the Barbarian King",
18
- "name": "Tryndamere",
19
- "key": "Tryndamere"
20
- },
21
- "Gragas": {
22
- "id": 79,
23
- "title": "the Rabble Rouser",
24
- "name": "Gragas",
25
- "key": "Gragas"
26
- },
27
- "Cassiopeia": {
28
- "id": 69,
29
- "title": "the Serpent's Embrace",
30
- "name": "Cassiopeia",
31
- "key": "Cassiopeia"
32
- },
33
- "Ryze": {
34
- "id": 13,
35
- "title": "the Rogue Mage",
36
- "name": "Ryze",
37
- "key": "Ryze"
38
- },
39
- "Poppy": {
40
- "id": 78,
41
- "title": "the Iron Ambassador",
42
- "name": "Poppy",
43
- "key": "Poppy"
44
- },
45
- "Sion": {
46
- "id": 14,
47
- "title": "the Undead Champion",
48
- "name": "Sion",
49
- "key": "Sion"
50
- },
51
- "Annie": {
52
- "id": 1,
53
- "title": "the Dark Child",
54
- "name": "Annie",
55
- "key": "Annie"
56
- },
57
- "Nautilus": {
58
- "id": 111,
59
- "title": "the Titan of the Depths",
60
- "name": "Nautilus",
61
- "key": "Nautilus"
62
- },
63
- "Karma": {
64
- "id": 43,
65
- "title": "the Enlightened One",
66
- "name": "Karma",
67
- "key": "Karma"
68
- },
69
- "Lux": {
70
- "id": 99,
71
- "title": "the Lady of Luminosity",
72
- "name": "Lux",
73
- "key": "Lux"
74
- },
75
- "Ahri": {
76
- "id": 103,
77
- "title": "the Nine-Tailed Fox",
78
- "name": "Ahri",
79
- "key": "Ahri"
80
- },
81
- "Olaf": {
82
- "id": 2,
83
- "title": "the Berserker",
84
- "name": "Olaf",
85
- "key": "Olaf"
86
- },
87
- "Viktor": {
88
- "id": 112,
89
- "title": "the Machine Herald",
90
- "name": "Viktor",
91
- "key": "Viktor"
92
- },
93
- "Anivia": {
94
- "id": 34,
95
- "title": "the Cryophoenix",
96
- "name": "Anivia",
97
- "key": "Anivia"
98
- },
99
- "Garen": {
100
- "id": 86,
101
- "title": "The Might of Demacia",
102
- "name": "Garen",
103
- "key": "Garen"
104
- },
105
- "Singed": {
106
- "id": 27,
107
- "title": "the Mad Chemist",
108
- "name": "Singed",
109
- "key": "Singed"
110
- },
111
- "Lissandra": {
112
- "id": 127,
113
- "title": "the Ice Witch",
114
- "name": "Lissandra",
115
- "key": "Lissandra"
116
- },
117
- "Maokai": {
118
- "id": 57,
119
- "title": "the Twisted Treant",
120
- "name": "Maokai",
121
- "key": "Maokai"
122
- },
123
- "Morgana": {
124
- "id": 25,
125
- "title": "Fallen Angel",
126
- "name": "Morgana",
127
- "key": "Morgana"
128
- },
129
- "Evelynn": {
130
- "id": 28,
131
- "title": "the Widowmaker",
132
- "name": "Evelynn",
133
- "key": "Evelynn"
134
- },
135
- "Fizz": {
136
- "id": 105,
137
- "title": "the Tidal Trickster",
138
- "name": "Fizz",
139
- "key": "Fizz"
140
- },
141
- "Heimerdinger": {
142
- "id": 74,
143
- "title": "the Revered Inventor",
144
- "name": "Heimerdinger",
145
- "key": "Heimerdinger"
146
- },
147
- "Zed": {
148
- "id": 238,
149
- "title": "the Master of Shadows",
150
- "name": "Zed",
151
- "key": "Zed"
152
- },
153
- "Rumble": {
154
- "id": 68,
155
- "title": "the Mechanized Menace",
156
- "name": "Rumble",
157
- "key": "Rumble"
158
- },
159
- "Sona": {
160
- "id": 37,
161
- "title": "Maven of the Strings",
162
- "name": "Sona",
163
- "key": "Sona"
164
- },
165
- "Mordekaiser": {
166
- "id": 82,
167
- "title": "the Master of Metal",
168
- "name": "Mordekaiser",
169
- "key": "Mordekaiser"
170
- },
171
- "KogMaw": {
172
- "id": 96,
173
- "title": "the Mouth of the Abyss",
174
- "name": "Kog'Maw",
175
- "key": "KogMaw"
176
- },
177
- "Katarina": {
178
- "id": 55,
179
- "title": "the Sinister Blade",
180
- "name": "Katarina",
181
- "key": "Katarina"
182
- },
183
- "Lulu": {
184
- "id": 117,
185
- "title": "the Fae Sorceress",
186
- "name": "Lulu",
187
- "key": "Lulu"
188
- },
189
- "Ashe": {
190
- "id": 22,
191
- "title": "the Frost Archer",
192
- "name": "Ashe",
193
- "key": "Ashe"
194
- },
195
- "Karthus": {
196
- "id": 30,
197
- "title": "the Deathsinger",
198
- "name": "Karthus",
199
- "key": "Karthus"
200
- },
201
- "Alistar": {
202
- "id": 12,
203
- "title": "the Minotaur",
204
- "name": "Alistar",
205
- "key": "Alistar"
206
- },
207
- "Darius": {
208
- "id": 122,
209
- "title": "the Hand of Noxus",
210
- "name": "Darius",
211
- "key": "Darius"
212
- },
213
- "Vayne": {
214
- "id": 67,
215
- "title": "the Night Hunter",
216
- "name": "Vayne",
217
- "key": "Vayne"
218
- },
219
- "Udyr": {
220
- "id": 77,
221
- "title": "the Spirit Walker",
222
- "name": "Udyr",
223
- "key": "Udyr"
224
- },
225
- "Varus": {
226
- "id": 110,
227
- "title": "the Arrow of Retribution",
228
- "name": "Varus",
229
- "key": "Varus"
230
- },
231
- "Leona": {
232
- "id": 89,
233
- "title": "the Radiant Dawn",
234
- "name": "Leona",
235
- "key": "Leona"
236
- },
237
- "Jayce": {
238
- "id": 126,
239
- "title": "the Defender of Tomorrow",
240
- "name": "Jayce",
241
- "key": "Jayce"
242
- },
243
- "Syndra": {
244
- "id": 134,
245
- "title": "the Dark Sovereign",
246
- "name": "Syndra",
247
- "key": "Syndra"
248
- },
249
- "Pantheon": {
250
- "id": 80,
251
- "title": "the Artisan of War",
252
- "name": "Pantheon",
253
- "key": "Pantheon"
254
- },
255
- "Riven": {
256
- "id": 92,
257
- "title": "the Exile",
258
- "name": "Riven",
259
- "key": "Riven"
260
- },
261
- "Khazix": {
262
- "id": 121,
263
- "title": "the Voidreaver",
264
- "name": "Kha'Zix",
265
- "key": "Khazix"
266
- },
267
- "Corki": {
268
- "id": 42,
269
- "title": "the Daring Bombardier",
270
- "name": "Corki",
271
- "key": "Corki"
272
- },
273
- "Caitlyn": {
274
- "id": 51,
275
- "title": "the Sheriff of Piltover",
276
- "name": "Caitlyn",
277
- "key": "Caitlyn"
278
- },
279
- "Nidalee": {
280
- "id": 76,
281
- "title": "the Bestial Huntress",
282
- "name": "Nidalee",
283
- "key": "Nidalee"
284
- },
285
- "Galio": {
286
- "id": 3,
287
- "title": "the Sentinel's Sorrow",
288
- "name": "Galio",
289
- "key": "Galio"
290
- },
291
- "Kennen": {
292
- "id": 85,
293
- "title": "the Heart of the Tempest",
294
- "name": "Kennen",
295
- "key": "Kennen"
296
- },
297
- "Veigar": {
298
- "id": 45,
299
- "title": "the Tiny Master of Evil",
300
- "name": "Veigar",
301
- "key": "Veigar"
302
- },
303
- "Graves": {
304
- "id": 104,
305
- "title": "the Outlaw",
306
- "name": "Graves",
307
- "key": "Graves"
308
- },
309
- "Malzahar": {
310
- "id": 90,
311
- "title": "the Prophet of the Void",
312
- "name": "Malzahar",
313
- "key": "Malzahar"
314
- },
315
- "Vi": {
316
- "id": 254,
317
- "title": "the Piltover Enforcer",
318
- "name": "Vi",
319
- "key": "Vi"
320
- },
321
- "Kayle": {
322
- "id": 10,
323
- "title": "The Judicator",
324
- "name": "Kayle",
325
- "key": "Kayle"
326
- },
327
- "Irelia": {
328
- "id": 39,
329
- "title": "the Will of the Blades",
330
- "name": "Irelia",
331
- "key": "Irelia"
332
- },
333
- "LeeSin": {
334
- "id": 64,
335
- "title": "the Blind Monk",
336
- "name": "Lee Sin",
337
- "key": "LeeSin"
338
- },
339
- "Elise": {
340
- "id": 60,
341
- "title": "The Spider Queen",
342
- "name": "Elise",
343
- "key": "Elise"
344
- },
345
- "Volibear": {
346
- "id": 106,
347
- "title": "the Thunder's Roar",
348
- "name": "Volibear",
349
- "key": "Volibear"
350
- },
351
- "Nunu": {
352
- "id": 20,
353
- "title": "the Yeti Rider",
354
- "name": "Nunu",
355
- "key": "Nunu"
356
- },
357
- "TwistedFate": {
358
- "id": 4,
359
- "title": "the Card Master",
360
- "name": "Twisted Fate",
361
- "key": "TwistedFate"
362
- },
363
- "Jax": {
364
- "id": 24,
365
- "title": "Grandmaster at Arms",
366
- "name": "Jax",
367
- "key": "Jax"
368
- },
369
- "Shyvana": {
370
- "id": 102,
371
- "title": "the Half-Dragon",
372
- "name": "Shyvana",
373
- "key": "Shyvana"
374
- },
375
- "DrMundo": {
376
- "id": 36,
377
- "title": "the Madman of Zaun",
378
- "name": "Dr. Mundo",
379
- "key": "DrMundo"
380
- },
381
- "Brand": {
382
- "id": 63,
383
- "title": "the Burning Vengeance",
384
- "name": "Brand",
385
- "key": "Brand"
386
- },
387
- "Diana": {
388
- "id": 131,
389
- "title": "Scorn of the Moon",
390
- "name": "Diana",
391
- "key": "Diana"
392
- },
393
- "Sejuani": {
394
- "id": 113,
395
- "title": "the Winter's Wrath",
396
- "name": "Sejuani",
397
- "key": "Sejuani"
398
- },
399
- "Vladimir": {
400
- "id": 8,
401
- "title": "the Crimson Reaper",
402
- "name": "Vladimir",
403
- "key": "Vladimir"
404
- },
405
- "Zac": {
406
- "id": 154,
407
- "title": "the Secret Weapon",
408
- "name": "Zac",
409
- "key": "Zac"
410
- },
411
- "Quinn": {
412
- "id": 133,
413
- "title": "Demacia's Wings",
414
- "name": "Quinn",
415
- "key": "Quinn"
416
- },
417
- "Akali": {
418
- "id": 84,
419
- "title": "the Fist of Shadow",
420
- "name": "Akali",
421
- "key": "Akali"
422
- },
423
- "Tristana": {
424
- "id": 18,
425
- "title": "the Megling Gunner",
426
- "name": "Tristana",
427
- "key": "Tristana"
428
- },
429
- "Hecarim": {
430
- "id": 120,
431
- "title": "the Shadow of War",
432
- "name": "Hecarim",
433
- "key": "Hecarim"
434
- },
435
- "Sivir": {
436
- "id": 15,
437
- "title": "the Battle Mistress",
438
- "name": "Sivir",
439
- "key": "Sivir"
440
- },
441
- "Lucian": {
442
- "id": 236,
443
- "title": "the Purifier",
444
- "name": "Lucian",
445
- "key": "Lucian"
446
- },
447
- "Rengar": {
448
- "id": 107,
449
- "title": "the Pridestalker",
450
- "name": "Rengar",
451
- "key": "Rengar"
452
- },
453
- "Warwick": {
454
- "id": 19,
455
- "title": "the Blood Hunter",
456
- "name": "Warwick",
457
- "key": "Warwick"
458
- },
459
- "Skarner": {
460
- "id": 72,
461
- "title": "the Crystal Vanguard",
462
- "name": "Skarner",
463
- "key": "Skarner"
464
- },
465
- "Malphite": {
466
- "id": 54,
467
- "title": "Shard of the Monolith",
468
- "name": "Malphite",
469
- "key": "Malphite"
470
- },
471
- "Yasuo": {
472
- "id": 157,
473
- "title": "the Unforgiven",
474
- "name": "Yasuo",
475
- "key": "Yasuo"
476
- },
477
- "Xerath": {
478
- "id": 101,
479
- "title": "the Magus Ascendant",
480
- "name": "Xerath",
481
- "key": "Xerath"
482
- },
483
- "Teemo": {
484
- "id": 17,
485
- "title": "the Swift Scout",
486
- "name": "Teemo",
487
- "key": "Teemo"
488
- },
489
- "Nasus": {
490
- "id": 75,
491
- "title": "the Curator of the Sands",
492
- "name": "Nasus",
493
- "key": "Nasus"
494
- },
495
- "Renekton": {
496
- "id": 58,
497
- "title": "the Butcher of the Sands",
498
- "name": "Renekton",
499
- "key": "Renekton"
500
- },
501
- "Draven": {
502
- "id": 119,
503
- "title": "the Glorious Executioner",
504
- "name": "Draven",
505
- "key": "Draven"
506
- },
507
- "Shaco": {
508
- "id": 35,
509
- "title": "the Demon Jester",
510
- "name": "Shaco",
511
- "key": "Shaco"
512
- },
513
- "Swain": {
514
- "id": 50,
515
- "title": "the Master Tactician",
516
- "name": "Swain",
517
- "key": "Swain"
518
- },
519
- "Ziggs": {
520
- "id": 115,
521
- "title": "the Hexplosives Expert",
522
- "name": "Ziggs",
523
- "key": "Ziggs"
524
- },
525
- "Janna": {
526
- "id": 40,
527
- "title": "the Storm's Fury",
528
- "name": "Janna",
529
- "key": "Janna"
530
- },
531
- "Talon": {
532
- "id": 91,
533
- "title": "the Blade's Shadow",
534
- "name": "Talon",
535
- "key": "Talon"
536
- },
537
- "Orianna": {
538
- "id": 61,
539
- "title": "the Lady of Clockwork",
540
- "name": "Orianna",
541
- "key": "Orianna"
542
- },
543
- "FiddleSticks": {
544
- "id": 9,
545
- "title": "the Harbinger of Doom",
546
- "name": "Fiddlesticks",
547
- "key": "FiddleSticks"
548
- },
549
- "Fiora": {
550
- "id": 114,
551
- "title": "the Grand Duelist",
552
- "name": "Fiora",
553
- "key": "Fiora"
554
- },
555
- "Chogath": {
556
- "id": 31,
557
- "title": "the Terror of the Void",
558
- "name": "Cho'Gath",
559
- "key": "Chogath"
560
- },
561
- "Rammus": {
562
- "id": 33,
563
- "title": "the Armordillo",
564
- "name": "Rammus",
565
- "key": "Rammus"
566
- },
567
- "Leblanc": {
568
- "id": 7,
569
- "title": "the Deceiver",
570
- "name": "LeBlanc",
571
- "key": "Leblanc"
572
- },
573
- "Soraka": {
574
- "id": 16,
575
- "title": "the Starchild",
576
- "name": "Soraka",
577
- "key": "Soraka"
578
- },
579
- "Zilean": {
580
- "id": 26,
581
- "title": "the Chronokeeper",
582
- "name": "Zilean",
583
- "key": "Zilean"
584
- },
585
- "Nocturne": {
586
- "id": 56,
587
- "title": "the Eternal Nightmare",
588
- "name": "Nocturne",
589
- "key": "Nocturne"
590
- },
591
- "Jinx": {
592
- "id": 222,
593
- "title": "the Loose Cannon",
594
- "name": "Jinx",
595
- "key": "Jinx"
596
- },
597
- "Yorick": {
598
- "id": 83,
599
- "title": "the Gravedigger",
600
- "name": "Yorick",
601
- "key": "Yorick"
602
- },
603
- "Urgot": {
604
- "id": 6,
605
- "title": "the Headsman's Pride",
606
- "name": "Urgot",
607
- "key": "Urgot"
608
- },
609
- "MissFortune": {
610
- "id": 21,
611
- "title": "the Bounty Hunter",
612
- "name": "Miss Fortune",
613
- "key": "MissFortune"
614
- },
615
- "MonkeyKing": {
616
- "id": 62,
617
- "title": "the Monkey King",
618
- "name": "Wukong",
619
- "key": "MonkeyKing"
620
- },
621
- "Blitzcrank": {
622
- "id": 53,
623
- "title": "the Great Steam Golem",
624
- "name": "Blitzcrank",
625
- "key": "Blitzcrank"
626
- },
627
- "Shen": {
628
- "id": 98,
629
- "title": "Eye of Twilight",
630
- "name": "Shen",
631
- "key": "Shen"
632
- },
633
- "XinZhao": {
634
- "id": 5,
635
- "title": "the Seneschal of Demacia",
636
- "name": "Xin Zhao",
637
- "key": "XinZhao"
638
- },
639
- "Twitch": {
640
- "id": 29,
641
- "title": "the Plague Rat",
642
- "name": "Twitch",
643
- "key": "Twitch"
644
- },
645
- "MasterYi": {
646
- "id": 11,
647
- "title": "the Wuju Bladesman",
648
- "name": "Master Yi",
649
- "key": "MasterYi"
650
- },
651
- "Taric": {
652
- "id": 44,
653
- "title": "the Gem Knight",
654
- "name": "Taric",
655
- "key": "Taric"
656
- },
657
- "Amumu": {
658
- "id": 32,
659
- "title": "the Sad Mummy",
660
- "name": "Amumu",
661
- "key": "Amumu"
662
- },
663
- "Gangplank": {
664
- "id": 41,
665
- "title": "the Saltwater Scourge",
666
- "name": "Gangplank",
667
- "key": "Gangplank"
668
- },
669
- "Trundle": {
670
- "id": 48,
671
- "title": "the Troll King",
672
- "name": "Trundle",
673
- "key": "Trundle"
674
- },
675
- "Kassadin": {
676
- "id": 38,
677
- "title": "the Void Walker",
678
- "name": "Kassadin",
679
- "key": "Kassadin"
680
- },
681
- "Velkoz": {
682
- "id": 161,
683
- "title": "the Eye of the Void",
684
- "name": "Vel'Koz",
685
- "key": "Velkoz"
686
- },
687
- "Zyra": {
688
- "id": 143,
689
- "title": "Rise of the Thorns",
690
- "name": "Zyra",
691
- "key": "Zyra"
692
- },
693
- "Nami": {
694
- "id": 267,
695
- "title": "the Tidecaller",
696
- "name": "Nami",
697
- "key": "Nami"
698
- },
699
- "JarvanIV": {
700
- "id": 59,
701
- "title": "the Exemplar of Demacia",
702
- "name": "Jarvan IV",
703
- "key": "JarvanIV"
704
- },
705
- "Ezreal": {
706
- "id": 81,
707
- "title": "the Prodigal Explorer",
708
- "name": "Ezreal",
709
- "key": "Ezreal"
710
- }
711
- },
712
- "type": "champion",
713
- "version": "4.6.3"
714
- }