ruby-lol 0.12.2 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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,9 +0,0 @@
1
- {
2
- "id": 4353,
3
- "description": [
4
- "+2% Cooldown Reduction and reduces the cooldown of Activated Items by 4%",
5
- "+3.5% Cooldown Reduction and reduces the cooldown of Activated Items by 7%",
6
- "+5% Cooldown Reduction and reduces the cooldown of Activated Items by 10%"
7
- ],
8
- "name": "Intelligence"
9
- }
@@ -1,389 +0,0 @@
1
- {
2
- "data": {
3
- "4353": {
4
- "id": 4353,
5
- "description": [
6
- "+2% Cooldown Reduction and reduces the cooldown of Activated Items by 4%",
7
- "+3.5% Cooldown Reduction and reduces the cooldown of Activated Items by 7%",
8
- "+5% Cooldown Reduction and reduces the cooldown of Activated Items by 10%"
9
- ],
10
- "name": "Intelligence"
11
- },
12
- "4352": {
13
- "id": 4352,
14
- "description": ["Melee - Grants +15 Gold on champion kill or assist<br>Ranged - Grants +3 Gold each time an enemy champion is attacked. This cannot trigger on the same champion more than once every 5 seconds"],
15
- "name": "Bandit"
16
- },
17
- "4253": {
18
- "id": 4253,
19
- "description": ["Start the game with a 50 Health shield. This shield regenerates each time after respawning"],
20
- "name": "Runic Blessing"
21
- },
22
- "4113": {
23
- "id": 4113,
24
- "description": [
25
- "+1.25% Cooldown Reduction",
26
- "+2.5% Cooldown Reduction",
27
- "+3.75% Cooldown Reduction",
28
- "+5% Cooldown Reduction"
29
- ],
30
- "name": "Sorcery"
31
- },
32
- "4251": {
33
- "id": 4251,
34
- "description": ["Increases self-healing, Health Regen, Lifesteal, and Spellvamp by 10% when below 25% Health"],
35
- "name": "Second Wind"
36
- },
37
- "4112": {
38
- "id": 4112,
39
- "description": [
40
- "+1.25% Attack Speed",
41
- "+2.5% Attack Speed",
42
- "+3.75% Attack Speed",
43
- "+5% Attack Speed"
44
- ],
45
- "name": "Fury"
46
- },
47
- "4252": {
48
- "id": 4252,
49
- "description": [
50
- "+1 Armor and 0.5 Magic Resist for each nearby enemy champion",
51
- "+2 Armor and 1 Magic Resistance for each nearby enemy champion",
52
- "+3 Armor and 1.5 Magic Resistance for each nearby enemy champion",
53
- "+4 Armor and 2 Magic Resist for each nearby enemy champion"
54
- ],
55
- "name": "Legendary Guardian"
56
- },
57
- "4111": {
58
- "id": 4111,
59
- "description": ["Melee - Deal an additional 2% damage and receive an additional 1% damage<br>Ranged - Deal an additional 1.5% damage and receive an additional 1.5% damage"],
60
- "name": "Double-Edged Sword"
61
- },
62
- "4152": {
63
- "id": 4152,
64
- "description": [
65
- "+2% Armor and Magic Penetration",
66
- "+4% Armor and Magic Penetration",
67
- "+6% Armor and Magic Penetration"
68
- ],
69
- "name": "Devastating Strikes"
70
- },
71
- "4212": {
72
- "id": 4212,
73
- "description": [
74
- "+1 Health per 5 seconds",
75
- "+2 Health per 5 seconds"
76
- ],
77
- "name": "Recovery"
78
- },
79
- "4211": {
80
- "id": 4211,
81
- "description": [
82
- "Reduces incoming damage from champion basic attacks by 1",
83
- "Reduces incoming damage from champion basic attacks by 2"
84
- ],
85
- "name": "Block"
86
- },
87
- "4151": {
88
- "id": 4151,
89
- "description": ["Critical hits grant +5% Attack Speed for 3 seconds (stacks up to 3 times)"],
90
- "name": "Frenzy"
91
- },
92
- "4154": {
93
- "id": 4154,
94
- "description": ["Basic Attacks also deal bonus magic damage equal to 5% of Ability Power"],
95
- "name": "Arcane Blade"
96
- },
97
- "4311": {
98
- "id": 4311,
99
- "description": ["Reduces the casting time of Recall by 1 second<br><br>Dominion - Reduces the casting time of Enhanced Recall by 0.5 seconds"],
100
- "name": "Phasewalker"
101
- },
102
- "4314": {
103
- "id": 4314,
104
- "description": ["Increases the cast range of trinket items by 15%"],
105
- "name": "Scout"
106
- },
107
- "4313": {
108
- "id": 4313,
109
- "description": [
110
- "+1 Mana Regen per 5 seconds",
111
- "+2 Mana Regen per 5 seconds",
112
- "+3 Mana Regen per 5 seconds"
113
- ],
114
- "name": "Meditation"
115
- },
116
- "4362": {
117
- "id": 4362,
118
- "description": ["+5% Movement Speed out of combat"],
119
- "name": "Wanderer"
120
- },
121
- "4312": {
122
- "id": 4312,
123
- "description": [
124
- "+0.5% Movement Speed",
125
- "+1% Movement Speed",
126
- "+1.5% Movement Speed"
127
- ],
128
- "name": "Fleet of Foot"
129
- },
130
- "4213": {
131
- "id": 4213,
132
- "description": [
133
- "Increases bonus Armor and Magic Resistance by 2.5%",
134
- "Increases bonus Armor and Magic Resistance by 5%"
135
- ],
136
- "name": "Enchanted Armor"
137
- },
138
- "4214": {
139
- "id": 4214,
140
- "description": [
141
- "Reduces damage taken from neutral monsters by 1<br><br>This does not affect lane minions",
142
- "Reduces damage taken from neutral monsters by 2<br><br>This does not affect lane minions"
143
- ],
144
- "name": "Tough Skin"
145
- },
146
- "4114": {
147
- "id": 4114,
148
- "description": ["Basic attacks and single target spells deal an additional 2 damage to minions and monsters<br><br>This does not trigger off of area of effect damage or damage over time effects"],
149
- "name": "Butcher"
150
- },
151
- "4122": {
152
- "id": 4122,
153
- "description": [
154
- "+4 Attack Damage at level 18 (+0.22 Attack Damage per level)",
155
- "+7 Attack Damage at level 18 (+0.39 Attack Damage per level)",
156
- "+10 Attack Damage at level 18 (+0.55 Attack Damage per level)"
157
- ],
158
- "name": "Brute Force"
159
- },
160
- "4121": {
161
- "id": 4121,
162
- "description": ["Damaging an enemy with a spell increases allied champions' damage to that enemy by 1% for the next 3 seconds"],
163
- "name": "Expose Weakness"
164
- },
165
- "4124": {
166
- "id": 4124,
167
- "description": ["Killing a unit restores 3 Health and 1 Mana"],
168
- "name": "Feast"
169
- },
170
- "4262": {
171
- "id": 4262,
172
- "description": ["Reduces the duration of crowd control effects by 15%"],
173
- "name": "Tenacious"
174
- },
175
- "4123": {
176
- "id": 4123,
177
- "description": [
178
- "+6 Ability Power at level 18 (+0.33 Ability Power per level)",
179
- "+11 Ability Power at level 18 (+0.61 Ability Power per level)",
180
- "+16 Ability Power at level 18 (+0.89 Ability Power per level)"
181
- ],
182
- "name": "Mental Force"
183
- },
184
- "4221": {
185
- "id": 4221,
186
- "description": ["Melee - Reduces all incoming damage from champions by 2<br>Ranged - Reduces all incoming damage from champions by 1"],
187
- "name": "Unyielding"
188
- },
189
- "4162": {
190
- "id": 4162,
191
- "description": ["+3% increased damage"],
192
- "name": "Havoc"
193
- },
194
- "4222": {
195
- "id": 4222,
196
- "description": [
197
- "+12 Health",
198
- "+24 Health",
199
- "+36 Health"
200
- ],
201
- "name": "Veteran's Scars"
202
- },
203
- "4322": {
204
- "id": 4322,
205
- "description": [
206
- "Reduces the cooldown of Summoner Spells by 4%",
207
- "Reduces the cooldown of Summoner Spells by 7%",
208
- "Reduces the cooldown of Summoner Spells by 10%"
209
- ],
210
- "name": "Summoner's Insight"
211
- },
212
- "4333": {
213
- "id": 4333,
214
- "description": [
215
- "+1% Lifesteal and Spellvamp",
216
- "+2% Lifesteal and Spellvamp",
217
- "+3% Lifesteal and Spellvamp"
218
- ],
219
- "name": "Vampirism"
220
- },
221
- "4332": {
222
- "id": 4332,
223
- "description": ["Increases the duration of shrine, relic, quest, and neutral monster buffs by 20%"],
224
- "name": "Runic Affinity"
225
- },
226
- "4224": {
227
- "id": 4224,
228
- "description": ["Taking Basic Attack Damage from neutral monsters cause them to bleed, dealing physical damage equal to 1% of their current Health each second<br>This does not work against lane minions"],
229
- "name": "Bladed Armor"
230
- },
231
- "4331": {
232
- "id": 4331,
233
- "description": [
234
- "+0.5 Gold every 10 seconds",
235
- "+1 Gold every 10 seconds",
236
- "+1.5 Gold every 10 seconds"
237
- ],
238
- "name": "Greed"
239
- },
240
- "4134": {
241
- "id": 4134,
242
- "description": [
243
- "Increases damage dealt to champions below 20% Health by 5%",
244
- "Increases damage dealt to champions below 35% Health by 5%",
245
- "Increases damage dealt to champions below 50% Health by 5%"
246
- ],
247
- "name": "Executioner"
248
- },
249
- "4132": {
250
- "id": 4132,
251
- "description": ["+4 Attack Damage"],
252
- "name": "Martial Mastery"
253
- },
254
- "4133": {
255
- "id": 4133,
256
- "description": ["+6 Ability Power"],
257
- "name": "Arcane Mastery"
258
- },
259
- "4234": {
260
- "id": 4234,
261
- "description": [
262
- "+2 Magic Resist",
263
- "+3.5 Magic Resistance",
264
- "+5 Magic Resistance"
265
- ],
266
- "name": "Resistance"
267
- },
268
- "4131": {
269
- "id": 4131,
270
- "description": ["Damaging an enemy champion with a Basic Attack increases Spell Damage by 1%, stacking up to 3 times (max 3% damage increase)"],
271
- "name": "Spell Weaving"
272
- },
273
- "4233": {
274
- "id": 4233,
275
- "description": [
276
- "+2 Armor",
277
- "+3.5 Armor",
278
- "+5 Armor"
279
- ],
280
- "name": "Hardiness"
281
- },
282
- "4232": {
283
- "id": 4232,
284
- "description": ["+3% Maximum Health"],
285
- "name": "Juggernaut"
286
- },
287
- "4323": {
288
- "id": 4323,
289
- "description": ["+1 Health Regen per 5 seconds for every 300 maximum Mana"],
290
- "name": "Strength of Spirit"
291
- },
292
- "4231": {
293
- "id": 4231,
294
- "description": ["Reduces damage taken by 3% from enemies that have impaired movement (slows, snares, taunts, stuns, etc.)"],
295
- "name": "Oppression"
296
- },
297
- "4324": {
298
- "id": 4324,
299
- "description": ["Increases the duration of potions and elixirs by 10%"],
300
- "name": "Alchemist"
301
- },
302
- "4342": {
303
- "id": 4342,
304
- "description": ["+40 Starting Gold"],
305
- "name": "Wealth"
306
- },
307
- "4341": {
308
- "id": 4341,
309
- "description": ["+1 Gold each time an ally kills a nearby lane minion"],
310
- "name": "Scavenger"
311
- },
312
- "4344": {
313
- "id": 4344,
314
- "description": [
315
- "+5 Experience every 10 seconds while near a higher level allied champion",
316
- "+10 Experience every 10 seconds while near a higher level allied champion"
317
- ],
318
- "name": "Inspiration"
319
- },
320
- "4343": {
321
- "id": 4343,
322
- "description": [
323
- "+2% increased maximum Mana",
324
- "+3.5% increased maximum Mana",
325
- "+5% increased maximum Mana"
326
- ],
327
- "name": "Expanded Mind"
328
- },
329
- "4143": {
330
- "id": 4143,
331
- "description": [
332
- "Increases Ability Power by 2%",
333
- "Increases Ability Power by 3.5%",
334
- "Increases Ability Power by 5%"
335
- ],
336
- "name": "Archmage"
337
- },
338
- "4144": {
339
- "id": 4144,
340
- "description": ["Champion kills and assists restore 5% missing Health and Mana"],
341
- "name": "Dangerous Game"
342
- },
343
- "4241": {
344
- "id": 4241,
345
- "description": [
346
- "Regenerates 0.35% of missing Health every 5 seconds",
347
- "Regenerates 0.675% of missing Health every 5 seconds",
348
- "Regenerates 1% of missing Health every 5 seconds"
349
- ],
350
- "name": "Perseverance "
351
- },
352
- "4243": {
353
- "id": 4243,
354
- "description": ["Reduces damage taken from critical strikes by 10%"],
355
- "name": "Reinforced Armor"
356
- },
357
- "4334": {
358
- "id": 4334,
359
- "description": ["Health potions are upgraded into Biscuits that restore an additional 20 Health and 10 Mana instantly upon consumption"],
360
- "name": "Culinary Master"
361
- },
362
- "4242": {
363
- "id": 4242,
364
- "description": ["Reduces the effectiveness of slows by 10%"],
365
- "name": "Swiftness"
366
- },
367
- "4141": {
368
- "id": 4141,
369
- "description": ["Damaging an enemy champion with a spell increases Basic Attack Damage by 1%, stacking up to 3 times (max 3% damage increase)"],
370
- "name": "Blade Weaving"
371
- },
372
- "4244": {
373
- "id": 4244,
374
- "description": ["Reduces damage taken by 4% from Area of Effect magic damage"],
375
- "name": "Evasive"
376
- },
377
- "4142": {
378
- "id": 4142,
379
- "description": [
380
- "Increases bonus Attack Damage by 2%",
381
- "Increases Bonus Attack Damage by 3.5%",
382
- "Increases Bonus Attack Damage by 5%"
383
- ],
384
- "name": "Warlord"
385
- }
386
- },
387
- "type": "mastery",
388
- "version": "4.6.3"
389
- }
@@ -1 +0,0 @@
1
- {"css":"0.152.55","dd":"4.2.6","l":"en_US","n":{"item":"4.6.3","rune":"4.6.3","mastery":"4.6.3","summoner":"4.6.3","champion":"4.6.3","profileicon":"4.6.3","language":"4.6.3"},"profileiconmax":28,"v":"4.6.3","lg":"0.152.55","cdn":"http://ddragon.leagueoflegends.com/cdn"}
@@ -1,26 +0,0 @@
1
- {
2
- "tags": [
3
- "magic",
4
- "flat",
5
- "quintessence"
6
- ],
7
- "id": 5235,
8
- "sanitizedDescription": "+3.85 ability power",
9
- "stats": {"FlatMagicDamageMod": 3.85},
10
- "description": "+3.85 ability power",
11
- "name": "Quintessence of Ability Power",
12
- "image": {
13
- "w": 48,
14
- "full": "bl_3_2.png",
15
- "sprite": "rune0.png",
16
- "group": "rune",
17
- "h": 48,
18
- "y": 144,
19
- "x": 96
20
- },
21
- "rune": {
22
- "isRune": true,
23
- "tier": "2",
24
- "type": "black"
25
- }
26
- }
@@ -1,2966 +0,0 @@
1
- {
2
- "data": {
3
- "5235": {
4
- "id": 5235,
5
- "description": "+3.85 ability power",
6
- "name": "Quintessence of Ability Power",
7
- "rune": {
8
- "isRune": true,
9
- "tier": "2",
10
- "type": "black"
11
- }
12
- },
13
- "5234": {
14
- "id": 5234,
15
- "description": "-0.21% cooldowns per level (-3.9% at champion level 18)",
16
- "name": "Quintessence of Scaling Cooldown Reduction",
17
- "rune": {
18
- "isRune": true,
19
- "tier": "2",
20
- "type": "black"
21
- }
22
- },
23
- "5233": {
24
- "id": 5233,
25
- "description": "-1.95% cooldowns",
26
- "name": "Quintessence of Cooldown Reduction",
27
- "rune": {
28
- "isRune": true,
29
- "tier": "2",
30
- "type": "black"
31
- }
32
- },
33
- "5370": {
34
- "id": 5370,
35
- "description": "+0.064 Energy regen/5 sec per level (+1.15 at champion level 18)",
36
- "name": "Greater Seal of Scaling Energy Regeneration",
37
- "rune": {
38
- "isRune": true,
39
- "tier": "3",
40
- "type": "yellow"
41
- }
42
- },
43
- "5230": {
44
- "id": 5230,
45
- "description": "+0.22 health regen / 5 sec. per level (+3.96 at champion level 18)",
46
- "name": "Quintessence of Scaling Health Regeneration",
47
- "rune": {
48
- "isRune": true,
49
- "tier": "2",
50
- "type": "black"
51
- }
52
- },
53
- "8016": {
54
- "id": 8016,
55
- "description": "+1.39% movement speed",
56
- "name": "Quintessence of the Speedy Specter",
57
- "rune": {
58
- "isRune": true,
59
- "tier": "2",
60
- "type": "black"
61
- }
62
- },
63
- "5374": {
64
- "id": 5374,
65
- "description": "+5.4 Energy",
66
- "name": "Greater Quintessence of Energy",
67
- "rune": {
68
- "isRune": true,
69
- "tier": "3",
70
- "type": "black"
71
- }
72
- },
73
- "8015": {
74
- "id": 8015,
75
- "description": "+24 health",
76
- "name": "Quintessence of Bountiful Treats",
77
- "rune": {
78
- "isRune": true,
79
- "tier": "2",
80
- "type": "black"
81
- }
82
- },
83
- "5373": {
84
- "id": 5373,
85
- "description": "+1.575 Energy regen/5 sec",
86
- "name": "Greater Quintessence of Energy Regeneration",
87
- "rune": {
88
- "isRune": true,
89
- "tier": "3",
90
- "type": "black"
91
- }
92
- },
93
- "5372": {
94
- "id": 5372,
95
- "description": "+0.161 Energy/level (+2.89 at level 18)",
96
- "name": "Greater Glyph of Scaling Energy",
97
- "rune": {
98
- "isRune": true,
99
- "tier": "3",
100
- "type": "blue"
101
- }
102
- },
103
- "8017": {
104
- "id": 8017,
105
- "description": "+4.56 ability power",
106
- "name": "Quintessence of the Witches Brew",
107
- "rune": {
108
- "isRune": true,
109
- "tier": "2",
110
- "type": "black"
111
- }
112
- },
113
- "5371": {
114
- "id": 5371,
115
- "description": "+2.2 Energy",
116
- "name": "Greater Glyph of Energy",
117
- "rune": {
118
- "isRune": true,
119
- "tier": "3",
120
- "type": "blue"
121
- }
122
- },
123
- "8012": {
124
- "id": 8012,
125
- "description": "-0.75% cooldowns",
126
- "name": "Glyph of the Soaring Slalom",
127
- "rune": {
128
- "isRune": true,
129
- "tier": "2",
130
- "type": "blue"
131
- }
132
- },
133
- "8011": {
134
- "id": 8011,
135
- "description": "+0.66 ability power",
136
- "name": "Lesser Glyph of the Challenger",
137
- "rune": {
138
- "isRune": true,
139
- "tier": "1",
140
- "type": "blue"
141
- }
142
- },
143
- "8014": {
144
- "id": 8014,
145
- "description": "+1.85 magic penetration",
146
- "name": "Quintessence of the Piercing Screech",
147
- "rune": {
148
- "isRune": true,
149
- "tier": "2",
150
- "type": "black"
151
- }
152
- },
153
- "8013": {
154
- "id": 8013,
155
- "description": "+2.37 armor penetration",
156
- "name": "Quintessence of the Headless Horseman",
157
- "rune": {
158
- "isRune": true,
159
- "tier": "2",
160
- "type": "black"
161
- }
162
- },
163
- "5368": {
164
- "id": 5368,
165
- "description": "+2% experience gained",
166
- "name": "Greater Quintessence of Experience",
167
- "rune": {
168
- "isRune": true,
169
- "tier": "3",
170
- "type": "black"
171
- }
172
- },
173
- "5369": {
174
- "id": 5369,
175
- "description": "+0.63 Energy regen/5 sec",
176
- "name": "Greater Seal of Energy Regeneration",
177
- "rune": {
178
- "isRune": true,
179
- "tier": "3",
180
- "type": "yellow"
181
- }
182
- },
183
- "8008": {
184
- "id": 8008,
185
- "description": "+2% critical damage",
186
- "name": "Mark of the Combatant",
187
- "rune": {
188
- "isRune": true,
189
- "tier": "2",
190
- "type": "red"
191
- }
192
- },
193
- "8009": {
194
- "id": 8009,
195
- "description": "+3.56 health",
196
- "name": "Lesser Seal of the Medalist",
197
- "rune": {
198
- "isRune": true,
199
- "tier": "1",
200
- "type": "yellow"
201
- }
202
- },
203
- "5229": {
204
- "id": 5229,
205
- "description": "+2.1 health regen / 5 sec.",
206
- "name": "Quintessence of Health Regeneration",
207
- "rune": {
208
- "isRune": true,
209
- "tier": "2",
210
- "type": "black"
211
- }
212
- },
213
- "5227": {
214
- "id": 5227,
215
- "description": "+3.11 magic resist",
216
- "name": "Quintessence of Magic Resist",
217
- "rune": {
218
- "isRune": true,
219
- "tier": "2",
220
- "type": "black"
221
- }
222
- },
223
- "5228": {
224
- "id": 5228,
225
- "description": "+0.29 magic resist per level (+5.22 at champion level 18)",
226
- "name": "Quintessence of Scaling Magic Resist",
227
- "rune": {
228
- "isRune": true,
229
- "tier": "2",
230
- "type": "black"
231
- }
232
- },
233
- "5225": {
234
- "id": 5225,
235
- "description": "+3.32 armor",
236
- "name": "Quintessence of Armor",
237
- "rune": {
238
- "isRune": true,
239
- "tier": "2",
240
- "type": "black"
241
- }
242
- },
243
- "5226": {
244
- "id": 5226,
245
- "description": "+0.29 armor per level (+5.22 at champion level 18)",
246
- "name": "Quintessence of Scaling Armor",
247
- "rune": {
248
- "isRune": true,
249
- "tier": "2",
250
- "type": "black"
251
- }
252
- },
253
- "8021": {
254
- "id": 8021,
255
- "description": "+26 health",
256
- "name": "Greater Quintessence of Frosty Health",
257
- "rune": {
258
- "isRune": true,
259
- "tier": "3",
260
- "type": "black"
261
- }
262
- },
263
- "8020": {
264
- "id": 8020,
265
- "description": "+2.56 armor penetration",
266
- "name": "Greater Quintessence of the Deadly Wreath",
267
- "rune": {
268
- "isRune": true,
269
- "tier": "3",
270
- "type": "black"
271
- }
272
- },
273
- "5221": {
274
- "id": 5221,
275
- "description": "+1.99 armor penetration",
276
- "name": "Quintessence of Armor Penetration",
277
- "rune": {
278
- "isRune": true,
279
- "tier": "2",
280
- "type": "black"
281
- }
282
- },
283
- "5224": {
284
- "id": 5224,
285
- "description": "+2.1 health per level (+37.8 at champion level 18)",
286
- "name": "Quintessence of Scaling Health",
287
- "rune": {
288
- "isRune": true,
289
- "tier": "2",
290
- "type": "black"
291
- }
292
- },
293
- "5223": {
294
- "id": 5223,
295
- "description": "+20 health",
296
- "name": "Quintessence of Health",
297
- "rune": {
298
- "isRune": true,
299
- "tier": "2",
300
- "type": "black"
301
- }
302
- },
303
- "5361": {
304
- "id": 5361,
305
- "description": "+1.25 mana regen / 5 sec.",
306
- "name": "Greater Quintessence of Mana Regeneration",
307
- "rune": {
308
- "isRune": true,
309
- "tier": "3",
310
- "type": "black"
311
- }
312
- },
313
- "5360": {
314
- "id": 5360,
315
- "description": "+4.17 mana per level (+75.06 at champion level 18)",
316
- "name": "Greater Quintessence of Scaling Mana",
317
- "rune": {
318
- "isRune": true,
319
- "tier": "3",
320
- "type": "black"
321
- }
322
- },
323
- "5363": {
324
- "id": 5363,
325
- "description": "+2.01 magic penetration",
326
- "name": "Greater Quintessence of Magic Penetration",
327
- "rune": {
328
- "isRune": true,
329
- "tier": "3",
330
- "type": "black"
331
- }
332
- },
333
- "5362": {
334
- "id": 5362,
335
- "description": "+0.24 mana regen / 5 sec. per level (+4.32 at champion level 18)",
336
- "name": "Greater Quintessence of Scaling Mana Regeneration",
337
- "rune": {
338
- "isRune": true,
339
- "tier": "3",
340
- "type": "black"
341
- }
342
- },
343
- "5365": {
344
- "id": 5365,
345
- "description": "+1.5% movement speed",
346
- "name": "Greater Quintessence of Movement Speed",
347
- "rune": {
348
- "isRune": true,
349
- "tier": "3",
350
- "type": "black"
351
- }
352
- },
353
- "5367": {
354
- "id": 5367,
355
- "description": "+1 gold / 10 sec.",
356
- "name": "Greater Quintessence of Gold",
357
- "rune": {
358
- "isRune": true,
359
- "tier": "3",
360
- "type": "black"
361
- }
362
- },
363
- "8022": {
364
- "id": 8022,
365
- "description": "+1.5% movement speed",
366
- "name": "Greater Quintessence of Sugar Rush",
367
- "rune": {
368
- "isRune": true,
369
- "tier": "3",
370
- "type": "black"
371
- }
372
- },
373
- "5366": {
374
- "id": 5366,
375
- "description": "-5% time dead",
376
- "name": "Greater Quintessence of Revival",
377
- "rune": {
378
- "isRune": true,
379
- "tier": "3",
380
- "type": "black"
381
- }
382
- },
383
- "5357": {
384
- "id": 5357,
385
- "description": "+4.95 ability power",
386
- "name": "Greater Quintessence of Ability Power",
387
- "rune": {
388
- "isRune": true,
389
- "tier": "3",
390
- "type": "black"
391
- }
392
- },
393
- "5358": {
394
- "id": 5358,
395
- "description": "+0.43 ability power per level (+7.74 at champion level 18)",
396
- "name": "Greater Quintessence of Scaling Ability Power",
397
- "rune": {
398
- "isRune": true,
399
- "tier": "3",
400
- "type": "black"
401
- }
402
- },
403
- "5359": {
404
- "id": 5359,
405
- "description": "+37.5 mana",
406
- "name": "Greater Quintessence of Mana",
407
- "rune": {
408
- "isRune": true,
409
- "tier": "3",
410
- "type": "black"
411
- }
412
- },
413
- "8019": {
414
- "id": 8019,
415
- "description": "+2.01 magic penetration",
416
- "name": "Greater Quintessence of the Piercing Present",
417
- "rune": {
418
- "isRune": true,
419
- "tier": "3",
420
- "type": "black"
421
- }
422
- },
423
- "5219": {
424
- "id": 5219,
425
- "description": "+1.44% critical chance",
426
- "name": "Quintessence of Critical Chance",
427
- "rune": {
428
- "isRune": true,
429
- "tier": "2",
430
- "type": "black"
431
- }
432
- },
433
- "5214": {
434
- "id": 5214,
435
- "description": "+0.19 attack damage per level (+3.42 at champion level 18)",
436
- "name": "Quintessence of Scaling Attack Damage",
437
- "rune": {
438
- "isRune": true,
439
- "tier": "2",
440
- "type": "black"
441
- }
442
- },
443
- "5215": {
444
- "id": 5215,
445
- "description": "+3.51% attack speed",
446
- "name": "Quintessence of Attack Speed",
447
- "rune": {
448
- "isRune": true,
449
- "tier": "2",
450
- "type": "black"
451
- }
452
- },
453
- "5217": {
454
- "id": 5217,
455
- "description": "+3.47% critical damage",
456
- "name": "Quintessence of Critical Damage",
457
- "rune": {
458
- "isRune": true,
459
- "tier": "2",
460
- "type": "black"
461
- }
462
- },
463
- "5253": {
464
- "id": 5253,
465
- "description": "+1.28 armor penetration",
466
- "name": "Greater Mark of Armor Penetration",
467
- "rune": {
468
- "isRune": true,
469
- "tier": "3",
470
- "type": "red"
471
- }
472
- },
473
- "5251": {
474
- "id": 5251,
475
- "description": "+0.93% critical chance",
476
- "name": "Greater Mark of Critical Chance",
477
- "rune": {
478
- "isRune": true,
479
- "tier": "3",
480
- "type": "red"
481
- }
482
- },
483
- "5257": {
484
- "id": 5257,
485
- "description": "+0.91 armor",
486
- "name": "Greater Mark of Armor",
487
- "rune": {
488
- "isRune": true,
489
- "tier": "3",
490
- "type": "red"
491
- }
492
- },
493
- "5256": {
494
- "id": 5256,
495
- "description": "+0.54 health per level (+9.72 at champion level 18)",
496
- "name": "Greater Mark of Scaling Health",
497
- "rune": {
498
- "isRune": true,
499
- "tier": "3",
500
- "type": "red"
501
- }
502
- },
503
- "5255": {
504
- "id": 5255,
505
- "description": "+3.47 health",
506
- "name": "Greater Mark of Health",
507
- "rune": {
508
- "isRune": true,
509
- "tier": "3",
510
- "type": "red"
511
- }
512
- },
513
- "5356": {
514
- "id": 5356,
515
- "description": "-0.28% cooldowns per level (-5% at champion level 18)",
516
- "name": "Greater Quintessence of Scaling Cooldown Reduction",
517
- "rune": {
518
- "isRune": true,
519
- "tier": "3",
520
- "type": "black"
521
- }
522
- },
523
- "5355": {
524
- "id": 5355,
525
- "description": "-2.5% cooldowns",
526
- "name": "Greater Quintessence of Cooldown Reduction",
527
- "rune": {
528
- "isRune": true,
529
- "tier": "3",
530
- "type": "black"
531
- }
532
- },
533
- "8035": {
534
- "id": 8035,
535
- "description": "+1.5% movement speed",
536
- "name": "Greater Quintessence of Studio Rumble",
537
- "rune": {
538
- "isRune": true,
539
- "tier": "3",
540
- "type": "black"
541
- }
542
- },
543
- "5352": {
544
- "id": 5352,
545
- "description": "+0.28 health regen / 5 sec. per level (+5.04 at champion level 18)",
546
- "name": "Greater Quintessence of Scaling Health Regeneration",
547
- "rune": {
548
- "isRune": true,
549
- "tier": "3",
550
- "type": "black"
551
- }
552
- },
553
- "5351": {
554
- "id": 5351,
555
- "description": "+2.7 health regen / 5 sec.",
556
- "name": "Greater Quintessence of Health Regeneration",
557
- "rune": {
558
- "isRune": true,
559
- "tier": "3",
560
- "type": "black"
561
- }
562
- },
563
- "5350": {
564
- "id": 5350,
565
- "description": "+0.37 magic resist per level (+6.66 at champion level 18)",
566
- "name": "Greater Quintessence of Scaling Magic Resist",
567
- "rune": {
568
- "isRune": true,
569
- "tier": "3",
570
- "type": "black"
571
- }
572
- },
573
- "5348": {
574
- "id": 5348,
575
- "description": "+0.38 armor per level (+6.84 at champion level 18)",
576
- "name": "Greater Quintessence of Scaling Armor",
577
- "rune": {
578
- "isRune": true,
579
- "tier": "3",
580
- "type": "black"
581
- }
582
- },
583
- "5349": {
584
- "id": 5349,
585
- "description": "+4 magic resist",
586
- "name": "Greater Quintessence of Magic Resist",
587
- "rune": {
588
- "isRune": true,
589
- "tier": "3",
590
- "type": "black"
591
- }
592
- },
593
- "5346": {
594
- "id": 5346,
595
- "description": "+2.7 health per level (+48.6 at champion level 18)",
596
- "name": "Greater Quintessence of Scaling Health",
597
- "rune": {
598
- "isRune": true,
599
- "tier": "3",
600
- "type": "black"
601
- }
602
- },
603
- "5347": {
604
- "id": 5347,
605
- "description": "+4.26 armor",
606
- "name": "Greater Quintessence of Armor",
607
- "rune": {
608
- "isRune": true,
609
- "tier": "3",
610
- "type": "black"
611
- }
612
- },
613
- "5249": {
614
- "id": 5249,
615
- "description": "+2.23% critical damage",
616
- "name": "Greater Mark of Critical Damage",
617
- "rune": {
618
- "isRune": true,
619
- "tier": "3",
620
- "type": "red"
621
- }
622
- },
623
- "5247": {
624
- "id": 5247,
625
- "description": "+1.7% attack speed",
626
- "name": "Greater Mark of Attack Speed",
627
- "rune": {
628
- "isRune": true,
629
- "tier": "3",
630
- "type": "red"
631
- }
632
- },
633
- "5240": {
634
- "id": 5240,
635
- "description": "+0.19 mana regen / 5 sec. per level (+3.42 at champion level 18)",
636
- "name": "Quintessence of Scaling Mana Regeneration",
637
- "rune": {
638
- "isRune": true,
639
- "tier": "2",
640
- "type": "black"
641
- }
642
- },
643
- "5241": {
644
- "id": 5241,
645
- "description": "+1.56 magic penetration",
646
- "name": "Quintessence of Magic Penetration",
647
- "rune": {
648
- "isRune": true,
649
- "tier": "2",
650
- "type": "black"
651
- }
652
- },
653
- "5243": {
654
- "id": 5243,
655
- "description": "+1.17% movement speed",
656
- "name": "Quintessence of Movement Speed",
657
- "rune": {
658
- "isRune": true,
659
- "tier": "2",
660
- "type": "black"
661
- }
662
- },
663
- "5246": {
664
- "id": 5246,
665
- "description": "+0.13 attack damage per level (+2.43 at champion level 18)",
666
- "name": "Greater Mark of Scaling Attack Damage",
667
- "rune": {
668
- "isRune": true,
669
- "tier": "3",
670
- "type": "red"
671
- }
672
- },
673
- "5245": {
674
- "id": 5245,
675
- "description": "+0.95 attack damage",
676
- "name": "Greater Mark of Attack Damage",
677
- "rune": {
678
- "isRune": true,
679
- "tier": "3",
680
- "type": "red"
681
- }
682
- },
683
- "5343": {
684
- "id": 5343,
685
- "description": "+2.56 armor penetration",
686
- "name": "Greater Quintessence of Armor Penetration",
687
- "rune": {
688
- "isRune": true,
689
- "tier": "3",
690
- "type": "black"
691
- }
692
- },
693
- "5345": {
694
- "id": 5345,
695
- "description": "+26 health",
696
- "name": "Greater Quintessence of Health",
697
- "rune": {
698
- "isRune": true,
699
- "tier": "3",
700
- "type": "black"
701
- }
702
- },
703
- "5341": {
704
- "id": 5341,
705
- "description": "+1.86% critical chance",
706
- "name": "Greater Quintessence of Critical Chance",
707
- "rune": {
708
- "isRune": true,
709
- "tier": "3",
710
- "type": "black"
711
- }
712
- },
713
- "5339": {
714
- "id": 5339,
715
- "description": "+4.46% critical damage",
716
- "name": "Greater Quintessence of Critical Damage",
717
- "rune": {
718
- "isRune": true,
719
- "tier": "3",
720
- "type": "black"
721
- }
722
- },
723
- "5335": {
724
- "id": 5335,
725
- "description": "+2.25 attack damage",
726
- "name": "Greater Quintessence of Attack Damage",
727
- "rune": {
728
- "isRune": true,
729
- "tier": "3",
730
- "type": "black"
731
- }
732
- },
733
- "5336": {
734
- "id": 5336,
735
- "description": "+0.25 attack damage per level (+4.5 at champion level 18)",
736
- "name": "Greater Quintessence of Scaling Attack Damage",
737
- "rune": {
738
- "isRune": true,
739
- "tier": "3",
740
- "type": "black"
741
- }
742
- },
743
- "5337": {
744
- "id": 5337,
745
- "description": "+4.5% attack speed",
746
- "name": "Greater Quintessence of Attack Speed",
747
- "rune": {
748
- "isRune": true,
749
- "tier": "3",
750
- "type": "black"
751
- }
752
- },
753
- "5236": {
754
- "id": 5236,
755
- "description": "+0.34 ability power per level (+6.12 at champion level 18)",
756
- "name": "Quintessence of Scaling Ability Power",
757
- "rune": {
758
- "isRune": true,
759
- "tier": "2",
760
- "type": "black"
761
- }
762
- },
763
- "5237": {
764
- "id": 5237,
765
- "description": "+29.17 mana",
766
- "name": "Quintessence of Mana",
767
- "rune": {
768
- "isRune": true,
769
- "tier": "2",
770
- "type": "black"
771
- }
772
- },
773
- "5238": {
774
- "id": 5238,
775
- "description": "+3.24 mana per level (+58.32 at champion level 18)",
776
- "name": "Quintessence of Scaling Mana",
777
- "rune": {
778
- "isRune": true,
779
- "tier": "2",
780
- "type": "black"
781
- }
782
- },
783
- "5239": {
784
- "id": 5239,
785
- "description": "+0.97 mana regen / 5 sec.",
786
- "name": "Quintessence of Mana Regeneration",
787
- "rune": {
788
- "isRune": true,
789
- "tier": "2",
790
- "type": "black"
791
- }
792
- },
793
- "5129": {
794
- "id": 5129,
795
- "description": "+0.72% critical chance",
796
- "name": "Mark of Critical Chance",
797
- "rune": {
798
- "isRune": true,
799
- "tier": "2",
800
- "type": "red"
801
- }
802
- },
803
- "5330": {
804
- "id": 5330,
805
- "description": "+1.17 mana per level (+21.06 at champion level 18)",
806
- "name": "Greater Seal of Scaling Mana",
807
- "rune": {
808
- "isRune": true,
809
- "tier": "3",
810
- "type": "yellow"
811
- }
812
- },
813
- "5127": {
814
- "id": 5127,
815
- "description": "+1.74% critical damage",
816
- "name": "Mark of Critical Damage",
817
- "rune": {
818
- "isRune": true,
819
- "tier": "2",
820
- "type": "red"
821
- }
822
- },
823
- "5331": {
824
- "id": 5331,
825
- "description": "+0.41 mana regen / 5 sec.",
826
- "name": "Greater Seal of Mana Regeneration",
827
- "rune": {
828
- "isRune": true,
829
- "tier": "3",
830
- "type": "yellow"
831
- }
832
- },
833
- "5332": {
834
- "id": 5332,
835
- "description": "+0.065 mana regen / 5 sec. per level (+1.17 at champion level 18)",
836
- "name": "Greater Seal of Scaling Mana Regeneration",
837
- "rune": {
838
- "isRune": true,
839
- "tier": "3",
840
- "type": "yellow"
841
- }
842
- },
843
- "5400": {
844
- "id": 5400,
845
- "description": "+0.5 Armor Penetration / +0.34 Magic Penetration",
846
- "name": "Lesser Mark of Hybrid Penetration",
847
- "rune": {
848
- "isRune": true,
849
- "tier": "1",
850
- "type": "red"
851
- }
852
- },
853
- "5327": {
854
- "id": 5327,
855
- "description": "+0.59 ability power",
856
- "name": "Greater Seal of Ability Power",
857
- "rune": {
858
- "isRune": true,
859
- "tier": "3",
860
- "type": "yellow"
861
- }
862
- },
863
- "5131": {
864
- "id": 5131,
865
- "description": "+1 armor penetration",
866
- "name": "Mark of Armor Penetration",
867
- "rune": {
868
- "isRune": true,
869
- "tier": "2",
870
- "type": "red"
871
- }
872
- },
873
- "5325": {
874
- "id": 5325,
875
- "description": "-0.36% cooldowns",
876
- "name": "Greater Seal of Cooldown Reduction",
877
- "rune": {
878
- "isRune": true,
879
- "tier": "3",
880
- "type": "yellow"
881
- }
882
- },
883
- "5135": {
884
- "id": 5135,
885
- "description": "+0.71 armor",
886
- "name": "Mark of Armor",
887
- "rune": {
888
- "isRune": true,
889
- "tier": "2",
890
- "type": "red"
891
- }
892
- },
893
- "5134": {
894
- "id": 5134,
895
- "description": "+0.42 health per level (+7.56 at champion level 18)",
896
- "name": "Mark of Scaling Health",
897
- "rune": {
898
- "isRune": true,
899
- "tier": "2",
900
- "type": "red"
901
- }
902
- },
903
- "5329": {
904
- "id": 5329,
905
- "description": "+6.89 mana",
906
- "name": "Greater Seal of Mana",
907
- "rune": {
908
- "isRune": true,
909
- "tier": "3",
910
- "type": "yellow"
911
- }
912
- },
913
- "5133": {
914
- "id": 5133,
915
- "description": "+2.7 health",
916
- "name": "Mark of Health",
917
- "rune": {
918
- "isRune": true,
919
- "tier": "2",
920
- "type": "red"
921
- }
922
- },
923
- "5328": {
924
- "id": 5328,
925
- "description": "+0.1 ability power per level (+1.8 at champion level 18)",
926
- "name": "Greater Seal of Scaling Ability Power",
927
- "rune": {
928
- "isRune": true,
929
- "tier": "3",
930
- "type": "yellow"
931
- }
932
- },
933
- "5115": {
934
- "id": 5115,
935
- "description": "+20.83 mana",
936
- "name": "Lesser Quintessence of Mana",
937
- "rune": {
938
- "isRune": true,
939
- "tier": "1",
940
- "type": "black"
941
- }
942
- },
943
- "5116": {
944
- "id": 5116,
945
- "description": "+2.31 mana per level (+41.58 at champion level 18)",
946
- "name": "Lesser Quintessence of Scaling Mana",
947
- "rune": {
948
- "isRune": true,
949
- "tier": "1",
950
- "type": "black"
951
- }
952
- },
953
- "5117": {
954
- "id": 5117,
955
- "description": "+0.69 mana regen / 5 sec.",
956
- "name": "Lesser Quintessence of Mana Regeneration",
957
- "rune": {
958
- "isRune": true,
959
- "tier": "1",
960
- "type": "black"
961
- }
962
- },
963
- "5118": {
964
- "id": 5118,
965
- "description": "+0.14 mana regen / 5 sec. per level (+2.52 at champion level 18)",
966
- "name": "Lesser Quintessence of Scaling Mana Regeneration",
967
- "rune": {
968
- "isRune": true,
969
- "tier": "1",
970
- "type": "black"
971
- }
972
- },
973
- "5410": {
974
- "id": 5410,
975
- "description": "+0.84% Life Steal",
976
- "name": "Lesser Quintessence of Life Steal",
977
- "rune": {
978
- "isRune": true,
979
- "tier": "1",
980
- "type": "black"
981
- }
982
- },
983
- "5320": {
984
- "id": 5320,
985
- "description": "+0.1 magic resist per level (+1.8 at champion level 18)",
986
- "name": "Greater Seal of Scaling Magic Resist",
987
- "rune": {
988
- "isRune": true,
989
- "tier": "3",
990
- "type": "yellow"
991
- }
992
- },
993
- "5119": {
994
- "id": 5119,
995
- "description": "+1.11 magic penetration",
996
- "name": "Lesser Quintessence of Magic Penetration",
997
- "rune": {
998
- "isRune": true,
999
- "tier": "1",
1000
- "type": "black"
1001
- }
1002
- },
1003
- "5411": {
1004
- "id": 5411,
1005
- "description": "+1.17% Life Steal",
1006
- "name": "Quintessence of Life Steal",
1007
- "rune": {
1008
- "isRune": true,
1009
- "tier": "2",
1010
- "type": "black"
1011
- }
1012
- },
1013
- "5321": {
1014
- "id": 5321,
1015
- "description": "+0.56 health regen / 5 sec.",
1016
- "name": "Greater Seal of Health Regeneration",
1017
- "rune": {
1018
- "isRune": true,
1019
- "tier": "3",
1020
- "type": "yellow"
1021
- }
1022
- },
1023
- "5322": {
1024
- "id": 5322,
1025
- "description": "+0.11 health regen / 5 sec. per level (+1.98 at champion level 18)",
1026
- "name": "Greater Seal of Scaling Health Regeneration",
1027
- "rune": {
1028
- "isRune": true,
1029
- "tier": "3",
1030
- "type": "yellow"
1031
- }
1032
- },
1033
- "5409": {
1034
- "id": 5409,
1035
- "description": "+2% Spellvamp.",
1036
- "name": "Greater Quintessence of Spell Vamp",
1037
- "rune": {
1038
- "isRune": true,
1039
- "tier": "3",
1040
- "type": "black"
1041
- }
1042
- },
1043
- "5404": {
1044
- "id": 5404,
1045
- "description": "+0.84% increased health.",
1046
- "name": "Lesser Quintessence of Percent Health",
1047
- "rune": {
1048
- "isRune": true,
1049
- "tier": "1",
1050
- "type": "black"
1051
- }
1052
- },
1053
- "5403": {
1054
- "id": 5403,
1055
- "description": "+0.25 gold / 10 sec.",
1056
- "name": "Greater Seal of Gold",
1057
- "rune": {
1058
- "isRune": true,
1059
- "tier": "3",
1060
- "type": "yellow"
1061
- }
1062
- },
1063
- "5402": {
1064
- "id": 5402,
1065
- "description": "+0.9 Armor Penetration / +0.62 Magic Penetration",
1066
- "name": "Greater Mark of Hybrid Penetration",
1067
- "rune": {
1068
- "isRune": true,
1069
- "tier": "3",
1070
- "type": "red"
1071
- }
1072
- },
1073
- "5316": {
1074
- "id": 5316,
1075
- "description": "+1.33 health per level (+24 at champion level 18)",
1076
- "name": "Greater Seal of Scaling Health",
1077
- "rune": {
1078
- "isRune": true,
1079
- "tier": "3",
1080
- "type": "yellow"
1081
- }
1082
- },
1083
- "5121": {
1084
- "id": 5121,
1085
- "description": "+0.83% movement speed",
1086
- "name": "Lesser Quintessence of Movement Speed",
1087
- "rune": {
1088
- "isRune": true,
1089
- "tier": "1",
1090
- "type": "black"
1091
- }
1092
- },
1093
- "5401": {
1094
- "id": 5401,
1095
- "description": "+0.7 Armor Penetration / +0.48 Magic Penetration",
1096
- "name": "Mark of Hybrid Penetration",
1097
- "rune": {
1098
- "isRune": true,
1099
- "tier": "2",
1100
- "type": "red"
1101
- }
1102
- },
1103
- "5315": {
1104
- "id": 5315,
1105
- "description": "+8 health",
1106
- "name": "Greater Seal of Health",
1107
- "rune": {
1108
- "isRune": true,
1109
- "tier": "3",
1110
- "type": "yellow"
1111
- }
1112
- },
1113
- "5408": {
1114
- "id": 5408,
1115
- "description": "+1.56% Spellvamp.",
1116
- "name": "Quintessence of Spell Vamp",
1117
- "rune": {
1118
- "isRune": true,
1119
- "tier": "2",
1120
- "type": "black"
1121
- }
1122
- },
1123
- "5318": {
1124
- "id": 5318,
1125
- "description": "+0.16 armor per level (+3 at champion level 18)",
1126
- "name": "Greater Seal of Scaling Armor",
1127
- "rune": {
1128
- "isRune": true,
1129
- "tier": "3",
1130
- "type": "yellow"
1131
- }
1132
- },
1133
- "5123": {
1134
- "id": 5123,
1135
- "description": "+0.74 attack damage",
1136
- "name": "Mark of Attack Damage",
1137
- "rune": {
1138
- "isRune": true,
1139
- "tier": "2",
1140
- "type": "red"
1141
- }
1142
- },
1143
- "5407": {
1144
- "id": 5407,
1145
- "description": "+1.12% Spellvamp.",
1146
- "name": "Lesser Quintessence of Spell Vamp",
1147
- "rune": {
1148
- "isRune": true,
1149
- "tier": "1",
1150
- "type": "black"
1151
- }
1152
- },
1153
- "5317": {
1154
- "id": 5317,
1155
- "description": "+1 armor",
1156
- "name": "Greater Seal of Armor",
1157
- "rune": {
1158
- "isRune": true,
1159
- "tier": "3",
1160
- "type": "yellow"
1161
- }
1162
- },
1163
- "5406": {
1164
- "id": 5406,
1165
- "description": "+1.5% increased health.",
1166
- "name": "Greater Quintessence of Percent Health",
1167
- "rune": {
1168
- "isRune": true,
1169
- "tier": "3",
1170
- "type": "black"
1171
- }
1172
- },
1173
- "5125": {
1174
- "id": 5125,
1175
- "description": "+1.32% attack speed",
1176
- "name": "Mark of Attack Speed",
1177
- "rune": {
1178
- "isRune": true,
1179
- "tier": "2",
1180
- "type": "red"
1181
- }
1182
- },
1183
- "5405": {
1184
- "id": 5405,
1185
- "description": "+1.17% increased health.",
1186
- "name": "Quintessence of Percent Health",
1187
- "rune": {
1188
- "isRune": true,
1189
- "tier": "2",
1190
- "type": "black"
1191
- }
1192
- },
1193
- "5319": {
1194
- "id": 5319,
1195
- "description": "+0.74 magic resist",
1196
- "name": "Greater Seal of Magic Resist",
1197
- "rune": {
1198
- "isRune": true,
1199
- "tier": "3",
1200
- "type": "yellow"
1201
- }
1202
- },
1203
- "5124": {
1204
- "id": 5124,
1205
- "description": "+0.1 attack damage per level (+1.89 at champion level 18)",
1206
- "name": "Mark of Scaling Attack Damage",
1207
- "rune": {
1208
- "isRune": true,
1209
- "tier": "2",
1210
- "type": "red"
1211
- }
1212
- },
1213
- "5311": {
1214
- "id": 5311,
1215
- "description": "+0.42% critical chance",
1216
- "name": "Greater Seal of Critical Chance",
1217
- "rune": {
1218
- "isRune": true,
1219
- "tier": "3",
1220
- "type": "yellow"
1221
- }
1222
- },
1223
- "5108": {
1224
- "id": 5108,
1225
- "description": "+0.16 health regen / 5 sec. per level (+2.88 at champion level 18)",
1226
- "name": "Lesser Quintessence of Scaling Health Regeneration",
1227
- "rune": {
1228
- "isRune": true,
1229
- "tier": "1",
1230
- "type": "black"
1231
- }
1232
- },
1233
- "5106": {
1234
- "id": 5106,
1235
- "description": "+0.21 magic resist per level (+3.78 at champion level 18)",
1236
- "name": "Lesser Quintessence of Scaling Magic Resist",
1237
- "rune": {
1238
- "isRune": true,
1239
- "tier": "1",
1240
- "type": "black"
1241
- }
1242
- },
1243
- "5107": {
1244
- "id": 5107,
1245
- "description": "+1.5 health regen / 5 sec.",
1246
- "name": "Lesser Quintessence of Health Regeneration",
1247
- "rune": {
1248
- "isRune": true,
1249
- "tier": "1",
1250
- "type": "black"
1251
- }
1252
- },
1253
- "5104": {
1254
- "id": 5104,
1255
- "description": "+0.21 armor per level (+3.78 at champion level 18)",
1256
- "name": "Lesser Quintessence of Scaling Armor",
1257
- "rune": {
1258
- "isRune": true,
1259
- "tier": "1",
1260
- "type": "black"
1261
- }
1262
- },
1263
- "5105": {
1264
- "id": 5105,
1265
- "description": "+2.22 magic resist",
1266
- "name": "Lesser Quintessence of Magic Resist",
1267
- "rune": {
1268
- "isRune": true,
1269
- "tier": "1",
1270
- "type": "black"
1271
- }
1272
- },
1273
- "5007": {
1274
- "id": 5007,
1275
- "description": "+0.52% critical chance",
1276
- "name": "Lesser Mark of Critical Chance",
1277
- "rune": {
1278
- "isRune": true,
1279
- "tier": "1",
1280
- "type": "red"
1281
- }
1282
- },
1283
- "5005": {
1284
- "id": 5005,
1285
- "description": "+1.24% critical damage",
1286
- "name": "Lesser Mark of Critical Damage",
1287
- "rune": {
1288
- "isRune": true,
1289
- "tier": "1",
1290
- "type": "red"
1291
- }
1292
- },
1293
- "5213": {
1294
- "id": 5213,
1295
- "description": "+1.75 attack damage",
1296
- "name": "Quintessence of Attack Damage",
1297
- "rune": {
1298
- "isRune": true,
1299
- "tier": "2",
1300
- "type": "black"
1301
- }
1302
- },
1303
- "5210": {
1304
- "id": 5210,
1305
- "description": "+0.05 mana regen / 5 sec. per level (+0.9 at champion level 18)",
1306
- "name": "Seal of Scaling Mana Regeneration",
1307
- "rune": {
1308
- "isRune": true,
1309
- "tier": "2",
1310
- "type": "yellow"
1311
- }
1312
- },
1313
- "5009": {
1314
- "id": 5009,
1315
- "description": "+0.72 armor penetration",
1316
- "name": "Lesser Mark of Armor Penetration",
1317
- "rune": {
1318
- "isRune": true,
1319
- "tier": "1",
1320
- "type": "red"
1321
- }
1322
- },
1323
- "5206": {
1324
- "id": 5206,
1325
- "description": "+0.08 ability power per level (+1.44 at champion level 18)",
1326
- "name": "Seal of Scaling Ability Power",
1327
- "rune": {
1328
- "isRune": true,
1329
- "tier": "2",
1330
- "type": "yellow"
1331
- }
1332
- },
1333
- "5011": {
1334
- "id": 5011,
1335
- "description": "+1.93 health",
1336
- "name": "Lesser Mark of Health",
1337
- "rune": {
1338
- "isRune": true,
1339
- "tier": "1",
1340
- "type": "red"
1341
- }
1342
- },
1343
- "5205": {
1344
- "id": 5205,
1345
- "description": "+0.46 ability power",
1346
- "name": "Seal of Ability Power",
1347
- "rune": {
1348
- "isRune": true,
1349
- "tier": "2",
1350
- "type": "yellow"
1351
- }
1352
- },
1353
- "5203": {
1354
- "id": 5203,
1355
- "description": "-0.29% cooldowns",
1356
- "name": "Seal of Cooldown Reduction",
1357
- "rune": {
1358
- "isRune": true,
1359
- "tier": "2",
1360
- "type": "yellow"
1361
- }
1362
- },
1363
- "5015": {
1364
- "id": 5015,
1365
- "description": "+0.43 magic resist",
1366
- "name": "Lesser Mark of Magic Resist",
1367
- "rune": {
1368
- "isRune": true,
1369
- "tier": "1",
1370
- "type": "red"
1371
- }
1372
- },
1373
- "5209": {
1374
- "id": 5209,
1375
- "description": "+0.32 mana regen / 5 sec.",
1376
- "name": "Seal of Mana Regeneration",
1377
- "rune": {
1378
- "isRune": true,
1379
- "tier": "2",
1380
- "type": "yellow"
1381
- }
1382
- },
1383
- "5208": {
1384
- "id": 5208,
1385
- "description": "+0.91 mana per level (+16.38 at champion level 18)",
1386
- "name": "Seal of Scaling Mana",
1387
- "rune": {
1388
- "isRune": true,
1389
- "tier": "2",
1390
- "type": "yellow"
1391
- }
1392
- },
1393
- "5013": {
1394
- "id": 5013,
1395
- "description": "+0.51 armor",
1396
- "name": "Lesser Mark of Armor",
1397
- "rune": {
1398
- "isRune": true,
1399
- "tier": "1",
1400
- "type": "red"
1401
- }
1402
- },
1403
- "5207": {
1404
- "id": 5207,
1405
- "description": "+5.36 mana",
1406
- "name": "Seal of Mana",
1407
- "rune": {
1408
- "isRune": true,
1409
- "tier": "2",
1410
- "type": "yellow"
1411
- }
1412
- },
1413
- "5012": {
1414
- "id": 5012,
1415
- "description": "+0.3 health per level (+5.4 at champion level 18)",
1416
- "name": "Lesser Mark of Scaling Health",
1417
- "rune": {
1418
- "isRune": true,
1419
- "tier": "1",
1420
- "type": "red"
1421
- }
1422
- },
1423
- "5309": {
1424
- "id": 5309,
1425
- "description": "+0.78% critical damage",
1426
- "name": "Greater Seal of Critical Damage",
1427
- "rune": {
1428
- "isRune": true,
1429
- "tier": "3",
1430
- "type": "yellow"
1431
- }
1432
- },
1433
- "5114": {
1434
- "id": 5114,
1435
- "description": "+0.24 ability power per level (+4.32 at champion level 18)",
1436
- "name": "Lesser Quintessence of Scaling Ability Power",
1437
- "rune": {
1438
- "isRune": true,
1439
- "tier": "1",
1440
- "type": "black"
1441
- }
1442
- },
1443
- "5113": {
1444
- "id": 5113,
1445
- "description": "+2.75 ability power",
1446
- "name": "Lesser Quintessence of Ability Power",
1447
- "rune": {
1448
- "isRune": true,
1449
- "tier": "1",
1450
- "type": "black"
1451
- }
1452
- },
1453
- "5307": {
1454
- "id": 5307,
1455
- "description": "+0.76% attack speed",
1456
- "name": "Greater Seal of Attack Speed",
1457
- "rune": {
1458
- "isRune": true,
1459
- "tier": "3",
1460
- "type": "yellow"
1461
- }
1462
- },
1463
- "5112": {
1464
- "id": 5112,
1465
- "description": "-0.15% cooldowns per level (-2.8% at champion level 18)",
1466
- "name": "Lesser Quintessence of Scaling Cooldown Reduction",
1467
- "rune": {
1468
- "isRune": true,
1469
- "tier": "1",
1470
- "type": "black"
1471
- }
1472
- },
1473
- "5306": {
1474
- "id": 5306,
1475
- "description": "+0.06 attack damage per level (+1.09 at champion level 18)",
1476
- "name": "Greater Seal of Scaling Attack Damage",
1477
- "rune": {
1478
- "isRune": true,
1479
- "tier": "3",
1480
- "type": "yellow"
1481
- }
1482
- },
1483
- "5111": {
1484
- "id": 5111,
1485
- "description": "-1.4% cooldowns",
1486
- "name": "Lesser Quintessence of Cooldown Reduction",
1487
- "rune": {
1488
- "isRune": true,
1489
- "tier": "1",
1490
- "type": "black"
1491
- }
1492
- },
1493
- "5305": {
1494
- "id": 5305,
1495
- "description": "+0.43 attack damage",
1496
- "name": "Greater Seal of Attack Damage",
1497
- "rune": {
1498
- "isRune": true,
1499
- "tier": "3",
1500
- "type": "yellow"
1501
- }
1502
- },
1503
- "5303": {
1504
- "id": 5303,
1505
- "description": "+0.63 magic penetration",
1506
- "name": "Greater Glyph of Magic Penetration",
1507
- "rune": {
1508
- "isRune": true,
1509
- "tier": "3",
1510
- "type": "blue"
1511
- }
1512
- },
1513
- "5302": {
1514
- "id": 5302,
1515
- "description": "+0.06 mana regen / 5 sec. per level (+1.2 at champion level 18)",
1516
- "name": "Greater Glyph of Scaling Mana Regeneration",
1517
- "rune": {
1518
- "isRune": true,
1519
- "tier": "3",
1520
- "type": "blue"
1521
- }
1522
- },
1523
- "5300": {
1524
- "id": 5300,
1525
- "description": "+1.42 mana per level (+25.56 at champion level 18)",
1526
- "name": "Greater Glyph of Scaling Mana",
1527
- "rune": {
1528
- "isRune": true,
1529
- "tier": "3",
1530
- "type": "blue"
1531
- }
1532
- },
1533
- "5301": {
1534
- "id": 5301,
1535
- "description": "+0.33 mana regen / 5 sec.",
1536
- "name": "Greater Glyph of Mana Regeneration",
1537
- "rune": {
1538
- "isRune": true,
1539
- "tier": "3",
1540
- "type": "blue"
1541
- }
1542
- },
1543
- "5200": {
1544
- "id": 5200,
1545
- "description": "+0.09 health regen / 5 sec. per level (+1.62 at champion level 18)",
1546
- "name": "Seal of Scaling Health Regeneration",
1547
- "rune": {
1548
- "isRune": true,
1549
- "tier": "2",
1550
- "type": "yellow"
1551
- }
1552
- },
1553
- "5002": {
1554
- "id": 5002,
1555
- "description": "+0.08 attack damage per level (+1.35 at champion level 18)",
1556
- "name": "Lesser Mark of Scaling Attack Damage",
1557
- "rune": {
1558
- "isRune": true,
1559
- "tier": "1",
1560
- "type": "red"
1561
- }
1562
- },
1563
- "5001": {
1564
- "id": 5001,
1565
- "description": "+0.53 attack damage",
1566
- "name": "Lesser Mark of Attack Damage",
1567
- "rune": {
1568
- "isRune": true,
1569
- "tier": "1",
1570
- "type": "red"
1571
- }
1572
- },
1573
- "5003": {
1574
- "id": 5003,
1575
- "description": "+0.94% attack speed",
1576
- "name": "Lesser Mark of Attack Speed",
1577
- "rune": {
1578
- "isRune": true,
1579
- "tier": "1",
1580
- "type": "red"
1581
- }
1582
- },
1583
- "5101": {
1584
- "id": 5101,
1585
- "description": "+14.5 health",
1586
- "name": "Lesser Quintessence of Health",
1587
- "rune": {
1588
- "isRune": true,
1589
- "tier": "1",
1590
- "type": "black"
1591
- }
1592
- },
1593
- "5103": {
1594
- "id": 5103,
1595
- "description": "+2.37 armor",
1596
- "name": "Lesser Quintessence of Armor",
1597
- "rune": {
1598
- "isRune": true,
1599
- "tier": "1",
1600
- "type": "black"
1601
- }
1602
- },
1603
- "5102": {
1604
- "id": 5102,
1605
- "description": "+1.5 health per level (+27 at champion level 18)",
1606
- "name": "Lesser Quintessence of Scaling Health",
1607
- "rune": {
1608
- "isRune": true,
1609
- "tier": "1",
1610
- "type": "black"
1611
- }
1612
- },
1613
- "5168": {
1614
- "id": 5168,
1615
- "description": "+0.13 magic resist per level (+2.34 at champion level 18)",
1616
- "name": "Glyph of Scaling Magic Resist",
1617
- "rune": {
1618
- "isRune": true,
1619
- "tier": "2",
1620
- "type": "blue"
1621
- }
1622
- },
1623
- "5169": {
1624
- "id": 5169,
1625
- "description": "+0.21 health regen / 5 sec.",
1626
- "name": "Glyph of Health Regeneration",
1627
- "rune": {
1628
- "isRune": true,
1629
- "tier": "2",
1630
- "type": "blue"
1631
- }
1632
- },
1633
- "5167": {
1634
- "id": 5167,
1635
- "description": "+1.04 magic resist",
1636
- "name": "Glyph of Magic Resist",
1637
- "rune": {
1638
- "isRune": true,
1639
- "tier": "2",
1640
- "type": "blue"
1641
- }
1642
- },
1643
- "5164": {
1644
- "id": 5164,
1645
- "description": "+0.42 health per level (+7.56 at champion level 18)",
1646
- "name": "Glyph of Scaling Health",
1647
- "rune": {
1648
- "isRune": true,
1649
- "tier": "2",
1650
- "type": "blue"
1651
- }
1652
- },
1653
- "5165": {
1654
- "id": 5165,
1655
- "description": "+0.55 armor",
1656
- "name": "Glyph of Armor",
1657
- "rune": {
1658
- "isRune": true,
1659
- "tier": "2",
1660
- "type": "blue"
1661
- }
1662
- },
1663
- "5163": {
1664
- "id": 5163,
1665
- "description": "+2.08 health",
1666
- "name": "Glyph of Health",
1667
- "rune": {
1668
- "isRune": true,
1669
- "tier": "2",
1670
- "type": "blue"
1671
- }
1672
- },
1673
- "5021": {
1674
- "id": 5021,
1675
- "description": "-0.11% cooldowns",
1676
- "name": "Lesser Mark of Cooldown Reduction",
1677
- "rune": {
1678
- "isRune": true,
1679
- "tier": "1",
1680
- "type": "red"
1681
- }
1682
- },
1683
- "5025": {
1684
- "id": 5025,
1685
- "description": "+3.28 mana",
1686
- "name": "Lesser Mark of Mana",
1687
- "rune": {
1688
- "isRune": true,
1689
- "tier": "1",
1690
- "type": "red"
1691
- }
1692
- },
1693
- "5026": {
1694
- "id": 5026,
1695
- "description": "+0.65 mana per level (+11.7 at champion level 18)",
1696
- "name": "Lesser Mark of Scaling Mana",
1697
- "rune": {
1698
- "isRune": true,
1699
- "tier": "1",
1700
- "type": "red"
1701
- }
1702
- },
1703
- "5023": {
1704
- "id": 5023,
1705
- "description": "+0.33 ability power",
1706
- "name": "Lesser Mark of Ability Power",
1707
- "rune": {
1708
- "isRune": true,
1709
- "tier": "1",
1710
- "type": "red"
1711
- }
1712
- },
1713
- "5024": {
1714
- "id": 5024,
1715
- "description": "+0.06 ability power per level (+1.08 at champion level 18)",
1716
- "name": "Lesser Mark of Scaling Ability Power",
1717
- "rune": {
1718
- "isRune": true,
1719
- "tier": "1",
1720
- "type": "red"
1721
- }
1722
- },
1723
- "5016": {
1724
- "id": 5016,
1725
- "description": "+0.04 magic resist per level (+0.72 at champion level 18)",
1726
- "name": "Lesser Mark of Scaling Magic Resist",
1727
- "rune": {
1728
- "isRune": true,
1729
- "tier": "1",
1730
- "type": "red"
1731
- }
1732
- },
1733
- "5159": {
1734
- "id": 5159,
1735
- "description": "+0.22% critical chance",
1736
- "name": "Glyph of Critical Chance",
1737
- "rune": {
1738
- "isRune": true,
1739
- "tier": "2",
1740
- "type": "blue"
1741
- }
1742
- },
1743
- "5177": {
1744
- "id": 5177,
1745
- "description": "+8.75 mana",
1746
- "name": "Glyph of Mana",
1747
- "rune": {
1748
- "isRune": true,
1749
- "tier": "2",
1750
- "type": "blue"
1751
- }
1752
- },
1753
- "5178": {
1754
- "id": 5178,
1755
- "description": "+1.1 mana per level (+19.8 at champion level 18)",
1756
- "name": "Glyph of Scaling Mana",
1757
- "rune": {
1758
- "isRune": true,
1759
- "tier": "2",
1760
- "type": "blue"
1761
- }
1762
- },
1763
- "5179": {
1764
- "id": 5179,
1765
- "description": "+0.26 mana regen / 5 sec.",
1766
- "name": "Glyph of Mana Regeneration",
1767
- "rune": {
1768
- "isRune": true,
1769
- "tier": "2",
1770
- "type": "blue"
1771
- }
1772
- },
1773
- "5173": {
1774
- "id": 5173,
1775
- "description": "-0.67% cooldowns",
1776
- "name": "Glyph of Cooldown Reduction",
1777
- "rune": {
1778
- "isRune": true,
1779
- "tier": "2",
1780
- "type": "blue"
1781
- }
1782
- },
1783
- "5174": {
1784
- "id": 5174,
1785
- "description": "-0.07% cooldowns per level (-1.3% at champion level 18)",
1786
- "name": "Glyph of Scaling Cooldown Reduction",
1787
- "rune": {
1788
- "isRune": true,
1789
- "tier": "2",
1790
- "type": "blue"
1791
- }
1792
- },
1793
- "5175": {
1794
- "id": 5175,
1795
- "description": "+0.92 ability power",
1796
- "name": "Glyph of Ability Power",
1797
- "rune": {
1798
- "isRune": true,
1799
- "tier": "2",
1800
- "type": "blue"
1801
- }
1802
- },
1803
- "5176": {
1804
- "id": 5176,
1805
- "description": "+0.13 ability power per level (+2.34 at champion level 18)",
1806
- "name": "Glyph of Scaling Ability Power",
1807
- "rune": {
1808
- "isRune": true,
1809
- "tier": "2",
1810
- "type": "blue"
1811
- }
1812
- },
1813
- "5031": {
1814
- "id": 5031,
1815
- "description": "+0.16 attack damage",
1816
- "name": "Lesser Glyph of Attack Damage",
1817
- "rune": {
1818
- "isRune": true,
1819
- "tier": "1",
1820
- "type": "blue"
1821
- }
1822
- },
1823
- "5032": {
1824
- "id": 5032,
1825
- "description": "+0.02 attack damage per level (+0.36 at champion level 18)",
1826
- "name": "Lesser Glyph of Scaling Attack Damage",
1827
- "rune": {
1828
- "isRune": true,
1829
- "tier": "1",
1830
- "type": "blue"
1831
- }
1832
- },
1833
- "5033": {
1834
- "id": 5033,
1835
- "description": "+0.35% attack speed",
1836
- "name": "Lesser Glyph of Attack Speed",
1837
- "rune": {
1838
- "isRune": true,
1839
- "tier": "1",
1840
- "type": "blue"
1841
- }
1842
- },
1843
- "5035": {
1844
- "id": 5035,
1845
- "description": "+0.31% critical damage",
1846
- "name": "Lesser Glyph of Critical Damage",
1847
- "rune": {
1848
- "isRune": true,
1849
- "tier": "1",
1850
- "type": "blue"
1851
- }
1852
- },
1853
- "5037": {
1854
- "id": 5037,
1855
- "description": "+0.15% critical chance",
1856
- "name": "Lesser Glyph of Critical Chance",
1857
- "rune": {
1858
- "isRune": true,
1859
- "tier": "1",
1860
- "type": "blue"
1861
- }
1862
- },
1863
- "10001": {
1864
- "id": 10001,
1865
- "description": "+2.23% critical damage",
1866
- "name": "Razer Mark of Precision",
1867
- "rune": {
1868
- "isRune": true,
1869
- "tier": "3",
1870
- "type": "red"
1871
- }
1872
- },
1873
- "5027": {
1874
- "id": 5027,
1875
- "description": "+0.15 mana regen / 5 sec.",
1876
- "name": "Lesser Mark of Mana Regeneration",
1877
- "rune": {
1878
- "isRune": true,
1879
- "tier": "1",
1880
- "type": "red"
1881
- }
1882
- },
1883
- "10002": {
1884
- "id": 10002,
1885
- "description": "+1.5% movement speed",
1886
- "name": "Razer Quintessence of Speed",
1887
- "rune": {
1888
- "isRune": true,
1889
- "tier": "3",
1890
- "type": "black"
1891
- }
1892
- },
1893
- "5029": {
1894
- "id": 5029,
1895
- "description": "+0.49 magic penetration",
1896
- "name": "Lesser Mark of Magic Penetration",
1897
- "rune": {
1898
- "isRune": true,
1899
- "tier": "1",
1900
- "type": "red"
1901
- }
1902
- },
1903
- "5418": {
1904
- "id": 5418,
1905
- "description": "+1.79 Armor Penetration / +1.4 Magic Penetration",
1906
- "name": "Greater Quintessence of Hybrid Penetration",
1907
- "rune": {
1908
- "isRune": true,
1909
- "tier": "3",
1910
- "type": "black"
1911
- }
1912
- },
1913
- "5143": {
1914
- "id": 5143,
1915
- "description": "-0.16% cooldowns",
1916
- "name": "Mark of Cooldown Reduction",
1917
- "rune": {
1918
- "isRune": true,
1919
- "tier": "2",
1920
- "type": "red"
1921
- }
1922
- },
1923
- "5416": {
1924
- "id": 5416,
1925
- "description": "+0.99 Armor Penetration / +0.78 Magic Penetration",
1926
- "name": "Lesser Quintessence of Hybrid Penetration",
1927
- "rune": {
1928
- "isRune": true,
1929
- "tier": "1",
1930
- "type": "black"
1931
- }
1932
- },
1933
- "5417": {
1934
- "id": 5417,
1935
- "description": "+1.39 Armor Penetration / +1.09 Magic Penetration",
1936
- "name": "Quintessence of Hybrid Penetration",
1937
- "rune": {
1938
- "isRune": true,
1939
- "tier": "2",
1940
- "type": "black"
1941
- }
1942
- },
1943
- "5146": {
1944
- "id": 5146,
1945
- "description": "+0.08 ability power per level (+1.44 at champion level 18)",
1946
- "name": "Mark of Scaling Ability Power",
1947
- "rune": {
1948
- "isRune": true,
1949
- "tier": "2",
1950
- "type": "red"
1951
- }
1952
- },
1953
- "5414": {
1954
- "id": 5414,
1955
- "description": "+0.39% Health.",
1956
- "name": "Seal of Percent Health",
1957
- "rune": {
1958
- "isRune": true,
1959
- "tier": "2",
1960
- "type": "yellow"
1961
- }
1962
- },
1963
- "5147": {
1964
- "id": 5147,
1965
- "description": "+4.59 mana",
1966
- "name": "Mark of Mana",
1967
- "rune": {
1968
- "isRune": true,
1969
- "tier": "2",
1970
- "type": "red"
1971
- }
1972
- },
1973
- "5415": {
1974
- "id": 5415,
1975
- "description": "+0.5% Health.",
1976
- "name": "Greater Seal of Percent Health",
1977
- "rune": {
1978
- "isRune": true,
1979
- "tier": "3",
1980
- "type": "yellow"
1981
- }
1982
- },
1983
- "5412": {
1984
- "id": 5412,
1985
- "description": "+1.5% Life Steal.",
1986
- "name": "Greater Quintessence of Life Steal",
1987
- "rune": {
1988
- "isRune": true,
1989
- "tier": "3",
1990
- "type": "black"
1991
- }
1992
- },
1993
- "5145": {
1994
- "id": 5145,
1995
- "description": "+0.46 ability power",
1996
- "name": "Mark of Ability Power",
1997
- "rune": {
1998
- "isRune": true,
1999
- "tier": "2",
2000
- "type": "red"
2001
- }
2002
- },
2003
- "5413": {
2004
- "id": 5413,
2005
- "description": "+0.28% Health.",
2006
- "name": "Lesser Seal of Percent Health",
2007
- "rune": {
2008
- "isRune": true,
2009
- "tier": "1",
2010
- "type": "yellow"
2011
- }
2012
- },
2013
- "5047": {
2014
- "id": 5047,
2015
- "description": "+0.15 health regen / 5 sec.",
2016
- "name": "Lesser Glyph of Health Regeneration",
2017
- "rune": {
2018
- "isRune": true,
2019
- "tier": "1",
2020
- "type": "blue"
2021
- }
2022
- },
2023
- "5045": {
2024
- "id": 5045,
2025
- "description": "+0.74 magic resist",
2026
- "name": "Lesser Glyph of Magic Resist",
2027
- "rune": {
2028
- "isRune": true,
2029
- "tier": "1",
2030
- "type": "blue"
2031
- }
2032
- },
2033
- "5046": {
2034
- "id": 5046,
2035
- "description": "+0.09 magic resist per level (+1.68 at champion level 18)",
2036
- "name": "Lesser Glyph of Scaling Magic Resist",
2037
- "rune": {
2038
- "isRune": true,
2039
- "tier": "1",
2040
- "type": "blue"
2041
- }
2042
- },
2043
- "5043": {
2044
- "id": 5043,
2045
- "description": "+0.39 armor",
2046
- "name": "Lesser Glyph of Armor",
2047
- "rune": {
2048
- "isRune": true,
2049
- "tier": "1",
2050
- "type": "blue"
2051
- }
2052
- },
2053
- "5041": {
2054
- "id": 5041,
2055
- "description": "+1.49 health",
2056
- "name": "Lesser Glyph of Health",
2057
- "rune": {
2058
- "isRune": true,
2059
- "tier": "1",
2060
- "type": "blue"
2061
- }
2062
- },
2063
- "5042": {
2064
- "id": 5042,
2065
- "description": "+0.3 health per level (+5.4 at champion level 18)",
2066
- "name": "Lesser Glyph of Scaling Health",
2067
- "rune": {
2068
- "isRune": true,
2069
- "tier": "1",
2070
- "type": "blue"
2071
- }
2072
- },
2073
- "5138": {
2074
- "id": 5138,
2075
- "description": "+0.06 magic resist per level (+1.08 at champion level 18)",
2076
- "name": "Mark of Scaling Magic Resist",
2077
- "rune": {
2078
- "isRune": true,
2079
- "tier": "2",
2080
- "type": "red"
2081
- }
2082
- },
2083
- "5137": {
2084
- "id": 5137,
2085
- "description": "+0.6 magic resist",
2086
- "name": "Mark of Magic Resist",
2087
- "rune": {
2088
- "isRune": true,
2089
- "tier": "2",
2090
- "type": "red"
2091
- }
2092
- },
2093
- "5151": {
2094
- "id": 5151,
2095
- "description": "+0.68 magic penetration",
2096
- "name": "Mark of Magic Penetration",
2097
- "rune": {
2098
- "isRune": true,
2099
- "tier": "2",
2100
- "type": "red"
2101
- }
2102
- },
2103
- "5153": {
2104
- "id": 5153,
2105
- "description": "+0.22 attack damage",
2106
- "name": "Glyph of Attack Damage",
2107
- "rune": {
2108
- "isRune": true,
2109
- "tier": "2",
2110
- "type": "blue"
2111
- }
2112
- },
2113
- "5051": {
2114
- "id": 5051,
2115
- "description": "-0.47% cooldowns",
2116
- "name": "Lesser Glyph of Cooldown Reduction",
2117
- "rune": {
2118
- "isRune": true,
2119
- "tier": "1",
2120
- "type": "blue"
2121
- }
2122
- },
2123
- "5154": {
2124
- "id": 5154,
2125
- "description": "+0.03 attack damage per level (+0.57 at champion level 18)",
2126
- "name": "Glyph of Scaling Attack Damage",
2127
- "rune": {
2128
- "isRune": true,
2129
- "tier": "2",
2130
- "type": "blue"
2131
- }
2132
- },
2133
- "5155": {
2134
- "id": 5155,
2135
- "description": "+0.5% attack speed",
2136
- "name": "Glyph of Attack Speed",
2137
- "rune": {
2138
- "isRune": true,
2139
- "tier": "2",
2140
- "type": "blue"
2141
- }
2142
- },
2143
- "5157": {
2144
- "id": 5157,
2145
- "description": "+0.43% critical damage",
2146
- "name": "Glyph of Critical Damage",
2147
- "rune": {
2148
- "isRune": true,
2149
- "tier": "2",
2150
- "type": "blue"
2151
- }
2152
- },
2153
- "5056": {
2154
- "id": 5056,
2155
- "description": "+0.79 mana per level (+14.22 at champion level 18)",
2156
- "name": "Lesser Glyph of Scaling Mana",
2157
- "rune": {
2158
- "isRune": true,
2159
- "tier": "1",
2160
- "type": "blue"
2161
- }
2162
- },
2163
- "5057": {
2164
- "id": 5057,
2165
- "description": "+0.19 mana regen / 5 sec.",
2166
- "name": "Lesser Glyph of Mana Regeneration",
2167
- "rune": {
2168
- "isRune": true,
2169
- "tier": "1",
2170
- "type": "blue"
2171
- }
2172
- },
2173
- "5058": {
2174
- "id": 5058,
2175
- "description": "+0.04 mana regen / 5 sec. per level (+0.67 at champion level 18)",
2176
- "name": "Lesser Glyph of Scaling Mana Regeneration",
2177
- "rune": {
2178
- "isRune": true,
2179
- "tier": "1",
2180
- "type": "blue"
2181
- }
2182
- },
2183
- "5059": {
2184
- "id": 5059,
2185
- "description": "+0.35 magic penetration",
2186
- "name": "Lesser Glyph of Magic Penetration",
2187
- "rune": {
2188
- "isRune": true,
2189
- "tier": "1",
2190
- "type": "blue"
2191
- }
2192
- },
2193
- "5052": {
2194
- "id": 5052,
2195
- "description": "-0.05% cooldowns per level (-0.93% at champion level 18)",
2196
- "name": "Lesser Glyph of Scaling Cooldown Reduction",
2197
- "rune": {
2198
- "isRune": true,
2199
- "tier": "1",
2200
- "type": "blue"
2201
- }
2202
- },
2203
- "5053": {
2204
- "id": 5053,
2205
- "description": "+0.66 ability power",
2206
- "name": "Lesser Glyph of Ability Power",
2207
- "rune": {
2208
- "isRune": true,
2209
- "tier": "1",
2210
- "type": "blue"
2211
- }
2212
- },
2213
- "5054": {
2214
- "id": 5054,
2215
- "description": "+0.1 ability power per level (+1.8 at champion level 18)",
2216
- "name": "Lesser Glyph of Scaling Ability Power",
2217
- "rune": {
2218
- "isRune": true,
2219
- "tier": "1",
2220
- "type": "blue"
2221
- }
2222
- },
2223
- "5055": {
2224
- "id": 5055,
2225
- "description": "+6.25 mana",
2226
- "name": "Lesser Glyph of Mana",
2227
- "rune": {
2228
- "isRune": true,
2229
- "tier": "1",
2230
- "type": "blue"
2231
- }
2232
- },
2233
- "5149": {
2234
- "id": 5149,
2235
- "description": "+0.2 mana regen / 5 sec.",
2236
- "name": "Mark of Mana Regeneration",
2237
- "rune": {
2238
- "isRune": true,
2239
- "tier": "2",
2240
- "type": "red"
2241
- }
2242
- },
2243
- "5148": {
2244
- "id": 5148,
2245
- "description": "+0.91 mana per level (+16.38 at champion level 18)",
2246
- "name": "Mark of Scaling Mana",
2247
- "rune": {
2248
- "isRune": true,
2249
- "tier": "2",
2250
- "type": "red"
2251
- }
2252
- },
2253
- "5065": {
2254
- "id": 5065,
2255
- "description": "+0.43% critical damage",
2256
- "name": "Lesser Seal of Critical Damage",
2257
- "rune": {
2258
- "isRune": true,
2259
- "tier": "1",
2260
- "type": "yellow"
2261
- }
2262
- },
2263
- "5259": {
2264
- "id": 5259,
2265
- "description": "+0.77 magic resist",
2266
- "name": "Greater Mark of Magic Resist",
2267
- "rune": {
2268
- "isRune": true,
2269
- "tier": "3",
2270
- "type": "red"
2271
- }
2272
- },
2273
- "5063": {
2274
- "id": 5063,
2275
- "description": "+0.42% attack speed",
2276
- "name": "Lesser Seal of Attack Speed",
2277
- "rune": {
2278
- "isRune": true,
2279
- "tier": "1",
2280
- "type": "yellow"
2281
- }
2282
- },
2283
- "5067": {
2284
- "id": 5067,
2285
- "description": "+0.23% critical chance",
2286
- "name": "Lesser Seal of Critical Chance",
2287
- "rune": {
2288
- "isRune": true,
2289
- "tier": "1",
2290
- "type": "yellow"
2291
- }
2292
- },
2293
- "5062": {
2294
- "id": 5062,
2295
- "description": "+0.03 attack damage per level (+0.61 at champion level 18)",
2296
- "name": "Lesser Seal of Scaling Attack Damage",
2297
- "rune": {
2298
- "isRune": true,
2299
- "tier": "1",
2300
- "type": "yellow"
2301
- }
2302
- },
2303
- "5061": {
2304
- "id": 5061,
2305
- "description": "+0.24 attack damage",
2306
- "name": "Lesser Seal of Attack Damage",
2307
- "rune": {
2308
- "isRune": true,
2309
- "tier": "1",
2310
- "type": "yellow"
2311
- }
2312
- },
2313
- "5260": {
2314
- "id": 5260,
2315
- "description": "+0.07 magic resist per level (+1.26 at champion level 18)",
2316
- "name": "Greater Mark of Scaling Magic Resist",
2317
- "rune": {
2318
- "isRune": true,
2319
- "tier": "3",
2320
- "type": "red"
2321
- }
2322
- },
2323
- "5267": {
2324
- "id": 5267,
2325
- "description": "+0.59 ability power",
2326
- "name": "Greater Mark of Ability Power",
2327
- "rune": {
2328
- "isRune": true,
2329
- "tier": "3",
2330
- "type": "red"
2331
- }
2332
- },
2333
- "5268": {
2334
- "id": 5268,
2335
- "description": "+0.1 ability power per level (+1.8 at champion level 18)",
2336
- "name": "Greater Mark of Scaling Ability Power",
2337
- "rune": {
2338
- "isRune": true,
2339
- "tier": "3",
2340
- "type": "red"
2341
- }
2342
- },
2343
- "5265": {
2344
- "id": 5265,
2345
- "description": "-0.2% cooldowns",
2346
- "name": "Greater Mark of Cooldown Reduction",
2347
- "rune": {
2348
- "isRune": true,
2349
- "tier": "3",
2350
- "type": "red"
2351
- }
2352
- },
2353
- "5075": {
2354
- "id": 5075,
2355
- "description": "+0.41 magic resist",
2356
- "name": "Lesser Seal of Magic Resist",
2357
- "rune": {
2358
- "isRune": true,
2359
- "tier": "1",
2360
- "type": "yellow"
2361
- }
2362
- },
2363
- "5074": {
2364
- "id": 5074,
2365
- "description": "+0.09 armor per level (+1.68 at champion level 18)",
2366
- "name": "Lesser Seal of Scaling Armor",
2367
- "rune": {
2368
- "isRune": true,
2369
- "tier": "1",
2370
- "type": "yellow"
2371
- }
2372
- },
2373
- "5269": {
2374
- "id": 5269,
2375
- "description": "+5.91 mana",
2376
- "name": "Greater Mark of Mana",
2377
- "rune": {
2378
- "isRune": true,
2379
- "tier": "3",
2380
- "type": "red"
2381
- }
2382
- },
2383
- "5077": {
2384
- "id": 5077,
2385
- "description": "+0.31 health regen / 5 sec.",
2386
- "name": "Lesser Seal of Health Regeneration",
2387
- "rune": {
2388
- "isRune": true,
2389
- "tier": "1",
2390
- "type": "yellow"
2391
- }
2392
- },
2393
- "5076": {
2394
- "id": 5076,
2395
- "description": "+0.05 magic resist per level (+0.9 at champion level 18)",
2396
- "name": "Lesser Seal of Scaling Magic Resist",
2397
- "rune": {
2398
- "isRune": true,
2399
- "tier": "1",
2400
- "type": "yellow"
2401
- }
2402
- },
2403
- "5078": {
2404
- "id": 5078,
2405
- "description": "+0.06 health regen / 5 sec. per level (+1.08 at champion level 18)",
2406
- "name": "Lesser Seal of Scaling Health Regeneration",
2407
- "rune": {
2408
- "isRune": true,
2409
- "tier": "1",
2410
- "type": "yellow"
2411
- }
2412
- },
2413
- "5071": {
2414
- "id": 5071,
2415
- "description": "+4.48 health",
2416
- "name": "Lesser Seal of Health",
2417
- "rune": {
2418
- "isRune": true,
2419
- "tier": "1",
2420
- "type": "yellow"
2421
- }
2422
- },
2423
- "5073": {
2424
- "id": 5073,
2425
- "description": "+0.56 armor",
2426
- "name": "Lesser Seal of Armor",
2427
- "rune": {
2428
- "isRune": true,
2429
- "tier": "1",
2430
- "type": "yellow"
2431
- }
2432
- },
2433
- "5072": {
2434
- "id": 5072,
2435
- "description": "+0.75 health per level (+13.44 at champion level 18)",
2436
- "name": "Lesser Seal of Scaling Health",
2437
- "rune": {
2438
- "isRune": true,
2439
- "tier": "1",
2440
- "type": "yellow"
2441
- }
2442
- },
2443
- "5270": {
2444
- "id": 5270,
2445
- "description": "+1.17 mana per level (+21.06 at champion level 18)",
2446
- "name": "Greater Mark of Scaling Mana",
2447
- "rune": {
2448
- "isRune": true,
2449
- "tier": "3",
2450
- "type": "red"
2451
- }
2452
- },
2453
- "5271": {
2454
- "id": 5271,
2455
- "description": "+0.26 mana regen / 5 sec.",
2456
- "name": "Greater Mark of Mana Regeneration",
2457
- "rune": {
2458
- "isRune": true,
2459
- "tier": "3",
2460
- "type": "red"
2461
- }
2462
- },
2463
- "5273": {
2464
- "id": 5273,
2465
- "description": "+0.87 magic penetration",
2466
- "name": "Greater Mark of Magic Penetration",
2467
- "rune": {
2468
- "isRune": true,
2469
- "tier": "3",
2470
- "type": "red"
2471
- }
2472
- },
2473
- "5275": {
2474
- "id": 5275,
2475
- "description": "+0.28 attack damage",
2476
- "name": "Greater Glyph of Attack Damage",
2477
- "rune": {
2478
- "isRune": true,
2479
- "tier": "3",
2480
- "type": "blue"
2481
- }
2482
- },
2483
- "5276": {
2484
- "id": 5276,
2485
- "description": "+0.04 attack damage per level (+0.73 at champion level 18)",
2486
- "name": "Greater Glyph of Scaling Attack Damage",
2487
- "rune": {
2488
- "isRune": true,
2489
- "tier": "3",
2490
- "type": "blue"
2491
- }
2492
- },
2493
- "5277": {
2494
- "id": 5277,
2495
- "description": "+0.64% attack speed",
2496
- "name": "Greater Glyph of Attack Speed",
2497
- "rune": {
2498
- "isRune": true,
2499
- "tier": "3",
2500
- "type": "blue"
2501
- }
2502
- },
2503
- "5279": {
2504
- "id": 5279,
2505
- "description": "+0.56% critical damage",
2506
- "name": "Greater Glyph of Critical Damage",
2507
- "rune": {
2508
- "isRune": true,
2509
- "tier": "3",
2510
- "type": "blue"
2511
- }
2512
- },
2513
- "5088": {
2514
- "id": 5088,
2515
- "description": "+0.036 mana regen / 5 sec. per level (+0.65 at champion level 18)",
2516
- "name": "Lesser Seal of Scaling Mana Regeneration",
2517
- "rune": {
2518
- "isRune": true,
2519
- "tier": "1",
2520
- "type": "yellow"
2521
- }
2522
- },
2523
- "5183": {
2524
- "id": 5183,
2525
- "description": "+0.33 attack damage",
2526
- "name": "Seal of Attack Damage",
2527
- "rune": {
2528
- "isRune": true,
2529
- "tier": "2",
2530
- "type": "yellow"
2531
- }
2532
- },
2533
- "5087": {
2534
- "id": 5087,
2535
- "description": "+0.23 mana regen / 5 sec.",
2536
- "name": "Lesser Seal of Mana Regeneration",
2537
- "rune": {
2538
- "isRune": true,
2539
- "tier": "1",
2540
- "type": "yellow"
2541
- }
2542
- },
2543
- "5086": {
2544
- "id": 5086,
2545
- "description": "+0.65 mana per level (+11.7 at champion level 18)",
2546
- "name": "Lesser Seal of Scaling Mana",
2547
- "rune": {
2548
- "isRune": true,
2549
- "tier": "1",
2550
- "type": "yellow"
2551
- }
2552
- },
2553
- "5181": {
2554
- "id": 5181,
2555
- "description": "+0.49 magic penetration",
2556
- "name": "Glyph of Magic Penetration",
2557
- "rune": {
2558
- "isRune": true,
2559
- "tier": "2",
2560
- "type": "blue"
2561
- }
2562
- },
2563
- "5085": {
2564
- "id": 5085,
2565
- "description": "+3.83 mana",
2566
- "name": "Lesser Seal of Mana",
2567
- "rune": {
2568
- "isRune": true,
2569
- "tier": "1",
2570
- "type": "yellow"
2571
- }
2572
- },
2573
- "5180": {
2574
- "id": 5180,
2575
- "description": "+0.05 mana regen / 5 sec. per level (+0.94 at champion level 18)",
2576
- "name": "Glyph of Scaling Mana Regeneration",
2577
- "rune": {
2578
- "isRune": true,
2579
- "tier": "2",
2580
- "type": "blue"
2581
- }
2582
- },
2583
- "5084": {
2584
- "id": 5084,
2585
- "description": "+0.06 ability power per level (+1.08 at champion level 18)",
2586
- "name": "Lesser Seal of Scaling Ability Power",
2587
- "rune": {
2588
- "isRune": true,
2589
- "tier": "1",
2590
- "type": "yellow"
2591
- }
2592
- },
2593
- "5187": {
2594
- "id": 5187,
2595
- "description": "+0.61% critical damage",
2596
- "name": "Seal of Critical Damage",
2597
- "rune": {
2598
- "isRune": true,
2599
- "tier": "2",
2600
- "type": "yellow"
2601
- }
2602
- },
2603
- "5083": {
2604
- "id": 5083,
2605
- "description": "+0.33 ability power",
2606
- "name": "Lesser Seal of Ability Power",
2607
- "rune": {
2608
- "isRune": true,
2609
- "tier": "1",
2610
- "type": "yellow"
2611
- }
2612
- },
2613
- "5185": {
2614
- "id": 5185,
2615
- "description": "+0.59% attack speed",
2616
- "name": "Seal of Attack Speed",
2617
- "rune": {
2618
- "isRune": true,
2619
- "tier": "2",
2620
- "type": "yellow"
2621
- }
2622
- },
2623
- "5081": {
2624
- "id": 5081,
2625
- "description": "-0.2% cooldowns",
2626
- "name": "Lesser Seal of Cooldown Reduction",
2627
- "rune": {
2628
- "isRune": true,
2629
- "tier": "1",
2630
- "type": "yellow"
2631
- }
2632
- },
2633
- "5184": {
2634
- "id": 5184,
2635
- "description": "+0.05 attack damage per level (+0.85 at champion level 18)",
2636
- "name": "Seal of Scaling Attack Damage",
2637
- "rune": {
2638
- "isRune": true,
2639
- "tier": "2",
2640
- "type": "yellow"
2641
- }
2642
- },
2643
- "5189": {
2644
- "id": 5189,
2645
- "description": "+0.32% critical chance",
2646
- "name": "Seal of Critical Chance",
2647
- "rune": {
2648
- "isRune": true,
2649
- "tier": "2",
2650
- "type": "yellow"
2651
- }
2652
- },
2653
- "5281": {
2654
- "id": 5281,
2655
- "description": "+0.28% critical chance",
2656
- "name": "Greater Glyph of Critical Chance",
2657
- "rune": {
2658
- "isRune": true,
2659
- "tier": "3",
2660
- "type": "blue"
2661
- }
2662
- },
2663
- "5289": {
2664
- "id": 5289,
2665
- "description": "+1.34 magic resist",
2666
- "name": "Greater Glyph of Magic Resist",
2667
- "rune": {
2668
- "isRune": true,
2669
- "tier": "3",
2670
- "type": "blue"
2671
- }
2672
- },
2673
- "5287": {
2674
- "id": 5287,
2675
- "description": "+0.7 armor",
2676
- "name": "Greater Glyph of Armor",
2677
- "rune": {
2678
- "isRune": true,
2679
- "tier": "3",
2680
- "type": "blue"
2681
- }
2682
- },
2683
- "5285": {
2684
- "id": 5285,
2685
- "description": "+2.67 health",
2686
- "name": "Greater Glyph of Health",
2687
- "rune": {
2688
- "isRune": true,
2689
- "tier": "3",
2690
- "type": "blue"
2691
- }
2692
- },
2693
- "5286": {
2694
- "id": 5286,
2695
- "description": "+0.54 health per level (+9.72 at champion level 18)",
2696
- "name": "Greater Glyph of Scaling Health",
2697
- "rune": {
2698
- "isRune": true,
2699
- "tier": "3",
2700
- "type": "blue"
2701
- }
2702
- },
2703
- "5097": {
2704
- "id": 5097,
2705
- "description": "+1.03% critical chance",
2706
- "name": "Lesser Quintessence of Critical Chance",
2707
- "rune": {
2708
- "isRune": true,
2709
- "tier": "1",
2710
- "type": "black"
2711
- }
2712
- },
2713
- "5099": {
2714
- "id": 5099,
2715
- "description": "+1.42 armor penetration",
2716
- "name": "Lesser Quintessence of Armor Penetration",
2717
- "rune": {
2718
- "isRune": true,
2719
- "tier": "1",
2720
- "type": "black"
2721
- }
2722
- },
2723
- "5194": {
2724
- "id": 5194,
2725
- "description": "+1.04 health per level (+18.72 at champion level 18)",
2726
- "name": "Seal of Scaling Health",
2727
- "rune": {
2728
- "isRune": true,
2729
- "tier": "2",
2730
- "type": "yellow"
2731
- }
2732
- },
2733
- "5193": {
2734
- "id": 5193,
2735
- "description": "+6.24 health",
2736
- "name": "Seal of Health",
2737
- "rune": {
2738
- "isRune": true,
2739
- "tier": "2",
2740
- "type": "yellow"
2741
- }
2742
- },
2743
- "5093": {
2744
- "id": 5093,
2745
- "description": "+2.52% attack speed",
2746
- "name": "Lesser Quintessence of Attack Speed",
2747
- "rune": {
2748
- "isRune": true,
2749
- "tier": "1",
2750
- "type": "black"
2751
- }
2752
- },
2753
- "5196": {
2754
- "id": 5196,
2755
- "description": "+0.13 armor per level (+2.34 at champion level 18)",
2756
- "name": "Seal of Scaling Armor",
2757
- "rune": {
2758
- "isRune": true,
2759
- "tier": "2",
2760
- "type": "yellow"
2761
- }
2762
- },
2763
- "5092": {
2764
- "id": 5092,
2765
- "description": "+0.14 attack damage per level (+2.52 at champion level 18)",
2766
- "name": "Lesser Quintessence of Scaling Attack Damage",
2767
- "rune": {
2768
- "isRune": true,
2769
- "tier": "1",
2770
- "type": "black"
2771
- }
2772
- },
2773
- "5195": {
2774
- "id": 5195,
2775
- "description": "+0.78 armor",
2776
- "name": "Seal of Armor",
2777
- "rune": {
2778
- "isRune": true,
2779
- "tier": "2",
2780
- "type": "yellow"
2781
- }
2782
- },
2783
- "5095": {
2784
- "id": 5095,
2785
- "description": "+2.48% critical damage",
2786
- "name": "Lesser Quintessence of Critical Damage",
2787
- "rune": {
2788
- "isRune": true,
2789
- "tier": "1",
2790
- "type": "black"
2791
- }
2792
- },
2793
- "5198": {
2794
- "id": 5198,
2795
- "description": "+0.08 magic resist per level (+1.44 at champion level 18)",
2796
- "name": "Seal of Scaling Magic Resist",
2797
- "rune": {
2798
- "isRune": true,
2799
- "tier": "2",
2800
- "type": "yellow"
2801
- }
2802
- },
2803
- "5197": {
2804
- "id": 5197,
2805
- "description": "+0.58 magic resist",
2806
- "name": "Seal of Magic Resist",
2807
- "rune": {
2808
- "isRune": true,
2809
- "tier": "2",
2810
- "type": "yellow"
2811
- }
2812
- },
2813
- "5199": {
2814
- "id": 5199,
2815
- "description": "+0.43 health regen / 5 sec.",
2816
- "name": "Seal of Health Regeneration",
2817
- "rune": {
2818
- "isRune": true,
2819
- "tier": "2",
2820
- "type": "yellow"
2821
- }
2822
- },
2823
- "5091": {
2824
- "id": 5091,
2825
- "description": "+1.25 attack damage",
2826
- "name": "Lesser Quintessence of Attack Damage",
2827
- "rune": {
2828
- "isRune": true,
2829
- "tier": "1",
2830
- "type": "black"
2831
- }
2832
- },
2833
- "5290": {
2834
- "id": 5290,
2835
- "description": "+0.16 magic resist per level (+3 at champion level 18)",
2836
- "name": "Greater Glyph of Scaling Magic Resist",
2837
- "rune": {
2838
- "isRune": true,
2839
- "tier": "3",
2840
- "type": "blue"
2841
- }
2842
- },
2843
- "5291": {
2844
- "id": 5291,
2845
- "description": "+0.27 health regen / 5 sec.",
2846
- "name": "Greater Glyph of Health Regeneration",
2847
- "rune": {
2848
- "isRune": true,
2849
- "tier": "3",
2850
- "type": "blue"
2851
- }
2852
- },
2853
- "8001": {
2854
- "id": 8001,
2855
- "description": "+2% critical damage",
2856
- "name": "Mark of the Crippling Candy Cane",
2857
- "rune": {
2858
- "isRune": true,
2859
- "tier": "2",
2860
- "type": "red"
2861
- }
2862
- },
2863
- "8002": {
2864
- "id": 8002,
2865
- "description": "+0.62% critical chance",
2866
- "name": "Lesser Mark of the Yuletide Tannenbaum ",
2867
- "rune": {
2868
- "isRune": true,
2869
- "tier": "1",
2870
- "type": "red"
2871
- }
2872
- },
2873
- "8003": {
2874
- "id": 8003,
2875
- "description": "-0.75% cooldowns",
2876
- "name": "Glyph of the Special Stocking",
2877
- "rune": {
2878
- "isRune": true,
2879
- "tier": "2",
2880
- "type": "blue"
2881
- }
2882
- },
2883
- "8005": {
2884
- "id": 8005,
2885
- "description": "+0.12 ability power per level (+2.16 at champion level 18)",
2886
- "name": "Lesser Glyph of the Gracious Gift",
2887
- "rune": {
2888
- "isRune": true,
2889
- "tier": "1",
2890
- "type": "blue"
2891
- }
2892
- },
2893
- "8006": {
2894
- "id": 8006,
2895
- "description": "+0.72 health per level (+12.96 at champion level 18)",
2896
- "name": "Lesser Seal of the Stout Snowman",
2897
- "rune": {
2898
- "isRune": true,
2899
- "tier": "1",
2900
- "type": "yellow"
2901
- }
2902
- },
2903
- "8007": {
2904
- "id": 8007,
2905
- "description": "+1.13% attack speed",
2906
- "name": "Lesser Mark of Alpine Attack Speed",
2907
- "rune": {
2908
- "isRune": true,
2909
- "tier": "1",
2910
- "type": "red"
2911
- }
2912
- },
2913
- "5298": {
2914
- "id": 5298,
2915
- "description": "+0.17 ability power per level (+3.06 at champion level 18)",
2916
- "name": "Greater Glyph of Scaling Ability Power",
2917
- "rune": {
2918
- "isRune": true,
2919
- "tier": "3",
2920
- "type": "blue"
2921
- }
2922
- },
2923
- "5299": {
2924
- "id": 5299,
2925
- "description": "+11.25 mana",
2926
- "name": "Greater Glyph of Mana",
2927
- "rune": {
2928
- "isRune": true,
2929
- "tier": "3",
2930
- "type": "blue"
2931
- }
2932
- },
2933
- "5295": {
2934
- "id": 5295,
2935
- "description": "-0.83% cooldowns",
2936
- "name": "Greater Glyph of Cooldown Reduction",
2937
- "rune": {
2938
- "isRune": true,
2939
- "tier": "3",
2940
- "type": "blue"
2941
- }
2942
- },
2943
- "5296": {
2944
- "id": 5296,
2945
- "description": "-0.09% cooldowns per level (-1.67% at champion level 18)",
2946
- "name": "Greater Glyph of Scaling Cooldown Reduction",
2947
- "rune": {
2948
- "isRune": true,
2949
- "tier": "3",
2950
- "type": "blue"
2951
- }
2952
- },
2953
- "5297": {
2954
- "id": 5297,
2955
- "description": "+1.19 ability power",
2956
- "name": "Greater Glyph of Ability Power",
2957
- "rune": {
2958
- "isRune": true,
2959
- "tier": "3",
2960
- "type": "blue"
2961
- }
2962
- }
2963
- },
2964
- "type": "rune",
2965
- "version": "4.6.3"
2966
- }