riot_games_api 0.0.2

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 (180) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +18 -0
  3. data/.rubocop.yml +28 -0
  4. data/.travis.yml +8 -0
  5. data/Gemfile +4 -0
  6. data/LICENSE.txt +22 -0
  7. data/README.md +192 -0
  8. data/Rakefile +5 -0
  9. data/lib/riot_games_api/lol/client.rb +57 -0
  10. data/lib/riot_games_api/lol/constant/champions.rb +125 -0
  11. data/lib/riot_games_api/lol/constant/items.rb +186 -0
  12. data/lib/riot_games_api/lol/model/champion/champion.rb +18 -0
  13. data/lib/riot_games_api/lol/model/champion.rb +10 -0
  14. data/lib/riot_games_api/lol/model/corecion/time.rb +16 -0
  15. data/lib/riot_games_api/lol/model/game/game.rb +27 -0
  16. data/lib/riot_games_api/lol/model/game/player.rb +15 -0
  17. data/lib/riot_games_api/lol/model/game/raw_stats.rb +88 -0
  18. data/lib/riot_games_api/lol/model/game/recent_game.rb +14 -0
  19. data/lib/riot_games_api/lol/model/game.rb +13 -0
  20. data/lib/riot_games_api/lol/model/league/league.rb +17 -0
  21. data/lib/riot_games_api/lol/model/league/league_item.rb +35 -0
  22. data/lib/riot_games_api/lol/model/league/mini_series.rb +17 -0
  23. data/lib/riot_games_api/lol/model/league.rb +12 -0
  24. data/lib/riot_games_api/lol/model/static_data/basic_data.rb +35 -0
  25. data/lib/riot_games_api/lol/model/static_data/basic_data_stats.rb +77 -0
  26. data/lib/riot_games_api/lol/model/static_data/block.rb +14 -0
  27. data/lib/riot_games_api/lol/model/static_data/block_item.rb +14 -0
  28. data/lib/riot_games_api/lol/model/static_data/champion.rb +29 -0
  29. data/lib/riot_games_api/lol/model/static_data/champion_list.rb +17 -0
  30. data/lib/riot_games_api/lol/model/static_data/champion_list_data_by_id.rb +11 -0
  31. data/lib/riot_games_api/lol/model/static_data/champion_spell.rb +32 -0
  32. data/lib/riot_games_api/lol/model/static_data/gold.rb +16 -0
  33. data/lib/riot_games_api/lol/model/static_data/group.rb +14 -0
  34. data/lib/riot_games_api/lol/model/static_data/image.rb +19 -0
  35. data/lib/riot_games_api/lol/model/static_data/info.rb +16 -0
  36. data/lib/riot_games_api/lol/model/static_data/item.rb +35 -0
  37. data/lib/riot_games_api/lol/model/static_data/item_list.rb +18 -0
  38. data/lib/riot_games_api/lol/model/static_data/item_tree.rb +14 -0
  39. data/lib/riot_games_api/lol/model/static_data/level_tip.rb +14 -0
  40. data/lib/riot_games_api/lol/model/static_data/mastery.rb +19 -0
  41. data/lib/riot_games_api/lol/model/static_data/mastery_list.rb +16 -0
  42. data/lib/riot_games_api/lol/model/static_data/mastery_tree.rb +15 -0
  43. data/lib/riot_games_api/lol/model/static_data/mastery_tree_item.rb +14 -0
  44. data/lib/riot_games_api/lol/model/static_data/mastery_tree_list.rb +13 -0
  45. data/lib/riot_games_api/lol/model/static_data/meta_data.rb +18 -0
  46. data/lib/riot_games_api/lol/model/static_data/passive.rb +16 -0
  47. data/lib/riot_games_api/lol/model/static_data/realm.rb +21 -0
  48. data/lib/riot_games_api/lol/model/static_data/recommended.rb +19 -0
  49. data/lib/riot_games_api/lol/model/static_data/rune.rb +35 -0
  50. data/lib/riot_games_api/lol/model/static_data/rune_list.rb +16 -0
  51. data/lib/riot_games_api/lol/model/static_data/skin.rb +15 -0
  52. data/lib/riot_games_api/lol/model/static_data/spell_vars.rb +16 -0
  53. data/lib/riot_games_api/lol/model/static_data/stats.rb +32 -0
  54. data/lib/riot_games_api/lol/model/static_data/summoner_spell.rb +35 -0
  55. data/lib/riot_games_api/lol/model/static_data/summoner_spell_list.rb +15 -0
  56. data/lib/riot_games_api/lol/model/static_data/summoner_spell_list_data_by_id.rb +11 -0
  57. data/lib/riot_games_api/lol/model/static_data.rb +47 -0
  58. data/lib/riot_games_api/lol/model/stats/aggregated_stats.rb +68 -0
  59. data/lib/riot_games_api/lol/model/stats/champion_stats.rb +14 -0
  60. data/lib/riot_games_api/lol/model/stats/player_stats_summary.rb +17 -0
  61. data/lib/riot_games_api/lol/model/stats/player_stats_summary_list.rb +14 -0
  62. data/lib/riot_games_api/lol/model/stats/ranked_stats.rb +15 -0
  63. data/lib/riot_games_api/lol/model/stats.rb +15 -0
  64. data/lib/riot_games_api/lol/model/summoner/mastery.rb +14 -0
  65. data/lib/riot_games_api/lol/model/summoner/mastery_page.rb +16 -0
  66. data/lib/riot_games_api/lol/model/summoner/mastery_page_list.rb +14 -0
  67. data/lib/riot_games_api/lol/model/summoner/rune_page.rb +16 -0
  68. data/lib/riot_games_api/lol/model/summoner/rune_page_list.rb +14 -0
  69. data/lib/riot_games_api/lol/model/summoner/rune_slot.rb +14 -0
  70. data/lib/riot_games_api/lol/model/summoner/summoner.rb +17 -0
  71. data/lib/riot_games_api/lol/model/summoner.rb +16 -0
  72. data/lib/riot_games_api/lol/model/team/match_history_summary.rb +23 -0
  73. data/lib/riot_games_api/lol/model/team/message_of_day.rb +15 -0
  74. data/lib/riot_games_api/lol/model/team/roster.rb +14 -0
  75. data/lib/riot_games_api/lol/model/team/team.rb +27 -0
  76. data/lib/riot_games_api/lol/model/team/team_member_info.rb +16 -0
  77. data/lib/riot_games_api/lol/model/team/team_stat_detail.rb +17 -0
  78. data/lib/riot_games_api/lol/model/team/team_stat_summary.rb +14 -0
  79. data/lib/riot_games_api/lol/model/team.rb +16 -0
  80. data/lib/riot_games_api/lol/model.rb +16 -0
  81. data/lib/riot_games_api/lol/resource/base.rb +22 -0
  82. data/lib/riot_games_api/lol/resource/champion.rb +39 -0
  83. data/lib/riot_games_api/lol/resource/game.rb +23 -0
  84. data/lib/riot_games_api/lol/resource/league.rb +65 -0
  85. data/lib/riot_games_api/lol/resource/static_data.rb +91 -0
  86. data/lib/riot_games_api/lol/resource/stats.rb +28 -0
  87. data/lib/riot_games_api/lol/resource/summoner.rb +52 -0
  88. data/lib/riot_games_api/lol/resource/team.rb +34 -0
  89. data/lib/riot_games_api/lol/resource.rb +15 -0
  90. data/lib/riot_games_api/version.rb +3 -0
  91. data/lib/riot_games_api.rb +15 -0
  92. data/riot_games_api.gemspec +34 -0
  93. data/spec/lol/resource/champion_spec.rb +27 -0
  94. data/spec/lol/resource/game_spec.rb +40 -0
  95. data/spec/lol/resource/league_spec.rb +93 -0
  96. data/spec/lol/resource/static_data_spec.rb +215 -0
  97. data/spec/lol/resource/stats_spec.rb +57 -0
  98. data/spec/lol/resource/summoner_spec.rb +80 -0
  99. data/spec/lol/resource/team_spec.rb +31 -0
  100. data/spec/spec_helper.rb +21 -0
  101. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Champion/_all/should_first_record_is_Aatrox.yml +44 -0
  102. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Champion/_by_champion_id/should_be_Teemo.yml +44 -0
  103. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Champion/_free/should_be_only_free_champions.yml +44 -0
  104. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Game/_recent/should_champinons_is_Talon_in_first_game_record.yml +44 -0
  105. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Game/_recent/should_first_fellow_player_s_team_is_blue.yml +44 -0
  106. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Game/_recent/should_first_game_is_win.yml +44 -0
  107. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Game/_recent/should_game_record_have_player_model.yml +44 -0
  108. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Game/_recent/should_game_record_have_raw_stats_model.yml +44 -0
  109. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Game/_recent/should_game_records_count_is_10.yml +44 -0
  110. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Game/_recent/should_have_summoner_id.yml +44 -0
  111. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_summoner_id/should_have_league_item_entries.yml +1497 -0
  112. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_summoner_id/should_phantoml0ad_is_in_league_which_name_is_Nasus_s_Agents.yml +1497 -0
  113. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_summoner_id_only_own_entry/should_ojarusang_is_in_series.yml +43 -0
  114. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_summoner_id_only_own_entry/should_ojarusang_s_tier_is_platinum.yml +43 -0
  115. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_team_id/should_have_league_item_entries.yml +864 -0
  116. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_team_id/should_rascal_jester_is_in_league_which_name_is_Nunu_s_Outriders.yml +864 -0
  117. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_team_id_only_own_entry/should_ffg_practice_is_not_in_series.yml +44 -0
  118. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_team_id_only_own_entry/should_ffg_practice_tier_is_challenger.yml +44 -0
  119. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_challenger_solo_5v5/should_queue_is_ranked_solo_5v5.yml +1281 -0
  120. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_challenger_solo_5v5/should_tier_is_challenger.yml +1281 -0
  121. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_challenger_team_3v3/should_queue_is_ranked_team_3v3.yml +123 -0
  122. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_challenger_team_3v3/should_tier_is_challenger.yml +123 -0
  123. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_challenger_team_5v5/should_queue_is_ranked_team_5v5.yml +61 -0
  124. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_challenger_team_5v5/should_tier_is_challenger.yml +61 -0
  125. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/_realm/should_have_data_cdn_is_cdn_url.yml +44 -0
  126. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/_realm/should_have_static_data_of_realm.yml +44 -0
  127. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/champion/_champion_all/key_by_id_is_false/should_have_inputed_data_version.yml +38011 -0
  128. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/champion/_champion_all/key_by_id_is_false/should_have_static_data_key_with_champion_name.yml +38011 -0
  129. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/champion/_champion_all/key_by_id_is_false/should_have_static_data_of_champions.yml +38011 -0
  130. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/champion/_champion_all/key_by_id_is_true/should_have_static_data_keys_is_champion_id.yml +38000 -0
  131. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/champion/_champion_all/key_by_id_is_true/should_have_static_data_of_champion.yml +38000 -0
  132. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/champion/_champion_by_id/should_have_data_key_is_shaco.yml +151 -0
  133. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/champion/_champion_by_id/should_have_static_data_of_champion.yml +151 -0
  134. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/item/_item_all/should_have_inputed_data_version.yml +2388 -0
  135. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/item/_item_all/should_have_static_data_of_items.yml +2388 -0
  136. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/item/_item_all/should_have_static_data_with_item_name.yml +2388 -0
  137. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/item/_item_by_id/should_have_data_name_is_biscuit.yml +46 -0
  138. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/item/_item_by_id/should_have_static_data_of_item.yml +46 -0
  139. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/mastery/_mastery_all/should_have_inputed_data_version.yml +240 -0
  140. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/mastery/_mastery_all/should_have_static_data_of_masterys.yml +240 -0
  141. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/mastery/_mastery_all/should_have_static_data_with_mastery_name.yml +240 -0
  142. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/mastery/_mastery_by_id/should_have_data_name_is_sorcery.yml +47 -0
  143. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/mastery/_mastery_by_id/should_have_static_data_of_mastery.yml +47 -0
  144. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/rune/_rune_all/should_have_inputed_data_version.yml +733 -0
  145. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/rune/_rune_all/should_have_static_data_of_runes.yml +733 -0
  146. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/rune/_rune_all/should_have_static_data_with_rune_name.yml +733 -0
  147. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/rune/_rune_by_id/should_have_data_name_is_rune_name.yml +45 -0
  148. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/rune/_rune_by_id/should_have_static_data_of_rune.yml +45 -0
  149. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/summoner_spell/_summoner_spell_all/key_by_id_is_false/should_have_inputed_data_version.yml +156 -0
  150. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/summoner_spell/_summoner_spell_all/key_by_id_is_false/should_have_static_data_key_with_summoner_spell_name.yml +156 -0
  151. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/summoner_spell/_summoner_spell_all/key_by_id_is_false/should_have_static_data_of_summoner_spell.yml +156 -0
  152. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/summoner_spell/_summoner_spell_all/key_by_id_is_true/should_have_static_data_keys_is_sumoner_spell_id.yml +156 -0
  153. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/summoner_spell/_summoner_spell_all/key_by_id_is_true/should_have_static_data_of_summoner_spell.yml +156 -0
  154. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/summoner_spell/_summoner_spell_by_id/should_have_data_name_is_teleport.yml +55 -0
  155. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/summoner_spell/_summoner_spell_by_id/should_have_static_data_of_summoner_spell.yml +55 -0
  156. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Stats/_ranked/latest_season/should_not_found_ranked_stats.yml +57 -0
  157. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Stats/_ranked/season3/should_have_champion_stats.yml +44 -0
  158. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Stats/_ranked/season3/should_have_modify_data_which_unixtime_milliseconds.yml +44 -0
  159. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Stats/_summary/latest_season/should_have_player_stat_summaries.yml +44 -0
  160. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Stats/_summary/latest_season/should_have_summoner_id_inputed.yml +44 -0
  161. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Stats/_summary/season3/should_have_player_stat_summaries.yml +44 -0
  162. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Stats/_summary/season3/should_have_summoner_id_inputed.yml +44 -0
  163. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_by_id/should_have_key_which_is_summoner_id.yml +44 -0
  164. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_by_id/should_have_summoner_model.yml +44 -0
  165. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_by_id/should_summoner_model_have_summoner_level.yml +44 -0
  166. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_by_name/should_have_key_which_is_summoner_name.yml +44 -0
  167. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_by_name/should_have_summoner_model.yml +44 -0
  168. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_by_name/should_summoner_model_have_summoner_level.yml +44 -0
  169. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_masteries/should_have_key_which_is_summoner_id.yml +52 -0
  170. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_masteries/should_have_mastery_page_list_model.yml +52 -0
  171. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_masteries/should_have_mastery_page_model.yml +52 -0
  172. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_name/should_have_summoner_name.yml +44 -0
  173. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_runes/should_have_key_which_is_summoner_id.yml +56 -0
  174. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_runes/should_have_rune_page_list_model.yml +56 -0
  175. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_runes/should_have_rune_page_model.yml +56 -0
  176. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Team/_by_summoner_id/should_have_focus_me_s_full_id.yml +314 -0
  177. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Team/_by_summoner_id/should_have_team_model.yml +314 -0
  178. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Team/_by_team_id/should_have_key_which_is_team_id.yml +165 -0
  179. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Team/_by_team_id/should_have_team_model.yml +165 -0
  180. metadata +484 -0
@@ -0,0 +1,2388 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://prod.api.pvp.net/api/lol/static-data/na/v1.2/item?api_key=test_key&itemListData=all&locale=en_US&version=4.5.4
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Faraday v0.8.9
12
+ Accept-Encoding:
13
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
14
+ Accept:
15
+ - "*/*"
16
+ response:
17
+ status:
18
+ code: 200
19
+ message: OK
20
+ headers:
21
+ Access-Control-Allow-Headers:
22
+ - Content-Type
23
+ Access-Control-Allow-Methods:
24
+ - GET, POST, DELETE, PUT
25
+ Access-Control-Allow-Origin:
26
+ - "*"
27
+ Content-Type:
28
+ - application/json; charset=UTF-8
29
+ Date:
30
+ - Thu, 17 Apr 2014 19:08:05 GMT
31
+ Server:
32
+ - Jetty(9.1.1.v20140108)
33
+ Vary:
34
+ - Accept-Encoding, User-Agent
35
+ Transfer-Encoding:
36
+ - chunked
37
+ Connection:
38
+ - keep-alive
39
+ body:
40
+ encoding: UTF-8
41
+ string: "{\"type\":\"item\",\"version\":\"4.5.4\",\"basic\":{\"id\":0,\"gold\":{\"base\":0,\"total\":0,\"sell\":0,\"purchasable\":false},\"consumed\":false,\"stacks\":1,\"depth\":1,\"consumeOnFull\":false,\"specialRecipe\":0,\"inStore\":true,\"hideFromAll\":false,\"maps\":{\"10\":true,\"1\":true,\"8\":true,\"12\":true},\"stats\":{\"rFlatArmorModPerLevel\":0.0,\"rFlatArmorPenetrationMod\":0.0,\"rFlatArmorPenetrationModPerLevel\":0.0,\"rFlatCritChanceModPerLevel\":0.0,\"rFlatCritDamageModPerLevel\":0.0,\"rFlatEnergyRegenModPerLevel\":0.0,\"rFlatDodgeMod\":0.0,\"rFlatDodgeModPerLevel\":0.0,\"rFlatGoldPer10Mod\":0.0,\"rFlatHPModPerLevel\":0.0,\"rFlatHPRegenModPerLevel\":0.0,\"rFlatMPRegenModPerLevel\":0.0,\"rFlatMagicDamageModPerLevel\":0.0,\"rFlatMagicPenetrationMod\":0.0,\"rFlatMagicPenetrationModPerLevel\":0.0,\"rFlatMPModPerLevel\":0.0,\"rFlatEnergyModPerLevel\":0.0,\"rFlatMovementSpeedModPerLevel\":0.0,\"rFlatPhysicalDamageModPerLevel\":0.0,\"rFlatSpellBlockModPerLevel\":0.0,\"rFlatTimeDeadMod\":0.0,\"rFlatTimeDeadModPerLevel\":0.0,\"rPercentArmorPenetrationMod\":0.0,\"rPercentArmorPenetrationModPerLevel\":0.0,\"rPercentAttackSpeedModPerLevel\":0.0,\"rPercentCooldownMod\":0.0,\"rPercentCooldownModPerLevel\":0.0,\"rPercentMagicPenetrationMod\":0.0,\"rPercentMagicPenetrationModPerLevel\":0.0,\"rPercentMovementSpeedModPerLevel\":0.0,\"rPercentTimeDeadMod\":0.0,\"rPercentTimeDeadModPerLevel\":0.0,\"FlatArmorMod\":0.0,\"FlatAttackSpeedMod\":0.0,\"FlatBlockMod\":0.0,\"FlatCritChanceMod\":0.0,\"FlatCritDamageMod\":0.0,\"FlatEnergyRegenMod\":0.0,\"FlatEnergyPoolMod\":0.0,\"FlatEXPBonus\":0.0,\"FlatHPPoolMod\":0.0,\"FlatHPRegenMod\":0.0,\"FlatMPPoolMod\":0.0,\"FlatMPRegenMod\":0.0,\"FlatMagicDamageMod\":0.0,\"FlatMovementSpeedMod\":0.0,\"FlatPhysicalDamageMod\":0.0,\"FlatSpellBlockMod\":0.0,\"PercentArmorMod\":0.0,\"PercentAttackSpeedMod\":0.0,\"PercentBlockMod\":0.0,\"PercentCritChanceMod\":0.0,\"PercentCritDamageMod\":0.0,\"PercentDodgeMod\":0.0,\"PercentEXPBonus\":0.0,\"PercentHPPoolMod\":0.0,\"PercentHPRegenMod\":0.0,\"PercentMPPoolMod\":0.0,\"PercentMPRegenMod\":0.0,\"PercentMagicDamageMod\":0.0,\"PercentMovementSpeedMod\":0.0,\"PercentPhysicalDamageMod\":0.0,\"PercentSpellBlockMod\":0.0,\"PercentSpellVampMod\":0.0,\"PercentLifeStealMod\":0.0},\"rune\":{\"isRune\":false,\"tier\":\"1\",\"type\":\"red\"}},\"data\":{\"2009\":{\"id\":2009,\"name\":\"Total
42
+ Biscuit of Rejuvenation\",\"gold\":{\"base\":0,\"total\":0,\"sell\":0,\"purchasable\":false},\"description\":\"<consumable>Click
43
+ to Consume:</consumable> Restores 80 Health and 50 Mana over 10 seconds.\",\"sanitizedDescription\":\"Click
44
+ to Consume: Restores 80 Health and 50 Mana over 10 seconds.\",\"consumed\":true,\"inStore\":false,\"image\":{\"full\":\"2009.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":0,\"y\":144,\"w\":48,\"h\":48},\"stats\":{}},\"3089\":{\"id\":3089,\"name\":\"Rabadon's
45
+ Deathcap\",\"gold\":{\"base\":840,\"total\":3300,\"sell\":2310,\"purchasable\":true},\"description\":\"<stats>+120
46
+ Ability Power </stats><br><br><unique>UNIQUE Passive:</unique> Increases
47
+ Ability Power by 30%.\",\"sanitizedDescription\":\"+120 Ability Power UNIQUE
48
+ Passive: Increases Ability Power by 30%.\",\"colloq\":\"dc;banksys;hat\",\"plaintext\":\"Massively
49
+ increases Ability Power\",\"depth\":2,\"from\":[\"1026\",\"1058\"],\"tags\":[\"SpellDamage\"],\"maps\":{\"10\":false,\"8\":false},\"image\":{\"full\":\"3089.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":240,\"y\":432,\"w\":48,\"h\":48},\"stats\":{\"FlatMagicDamageMod\":120.0}},\"3087\":{\"id\":3087,\"name\":\"Statikk
50
+ Shiv\",\"gold\":{\"base\":525,\"total\":2500,\"sell\":1750,\"purchasable\":true},\"description\":\"<stats>+40%
51
+ Attack Speed<br>+20% Critical Strike Chance<br>+6% Movement Speed</stats><br><br><unique>UNIQUE
52
+ Passive:</unique> Grants Static Charges upon moving or attacking. At 100 Charges,
53
+ basic attacking expends all Charges to deal 100 bonus magic damage to up to
54
+ 4 targets on hit (this damage can critically strike).\",\"sanitizedDescription\":\"+40%
55
+ Attack Speed +20% Critical Strike Chance +6% Movement Speed UNIQUE Passive:
56
+ Grants Static Charges upon moving or attacking. At 100 Charges, basic attacking
57
+ expends all Charges to deal 100 bonus magic damage to up to 4 targets on hit
58
+ (this damage can critically strike).\",\"plaintext\":\"Movement builds charges
59
+ that release chain lightning on basic attack\",\"depth\":3,\"from\":[\"3086\",\"3093\"],\"tags\":[\"Damage\",\"CriticalStrike\",\"AttackSpeed\",\"Movement\",\"NonbootsMovement\",\"OnHit\"],\"image\":{\"full\":\"3087.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":192,\"y\":432,\"w\":48,\"h\":48},\"stats\":{\"FlatCritChanceMod\":0.2,\"PercentAttackSpeedMod\":0.4,\"PercentMovementSpeedMod\":0.06}},\"2004\":{\"id\":2004,\"name\":\"Mana
60
+ Potion\",\"gold\":{\"base\":35,\"total\":35,\"sell\":14,\"purchasable\":true},\"group\":\"ManaPotion\",\"description\":\"<groupLimit>Limited
61
+ to 5 at one time.</groupLimit><br><br><consumable>Click to Consume:</consumable>
62
+ Restores 100 Mana over 15 seconds.\",\"sanitizedDescription\":\"Limited to
63
+ 5 at one time. Click to Consume: Restores 100 Mana over 15 seconds.\",\"plaintext\":\"Consume
64
+ to restore Mana over time\",\"consumed\":true,\"stacks\":5,\"tags\":[\"Consumable\"],\"image\":{\"full\":\"2004.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":432,\"y\":96,\"w\":48,\"h\":48},\"stats\":{}},\"3086\":{\"id\":3086,\"name\":\"Zeal\",\"gold\":{\"base\":375,\"total\":1175,\"sell\":823,\"purchasable\":true},\"description\":\"<stats>+18%
65
+ Attack Speed<br>+10% Critical Strike Chance<br>+5% Movement Speed</stats>\",\"sanitizedDescription\":\"+18%
66
+ Attack Speed +10% Critical Strike Chance +5% Movement Speed\",\"plaintext\":\"Slight
67
+ bonuses to Critical Strike Chance, Movement Speed and Attack Speed\",\"depth\":2,\"from\":[\"1051\",\"1042\"],\"into\":[\"3046\",\"3078\",\"3087\"],\"tags\":[\"CriticalStrike\",\"AttackSpeed\",\"Movement\",\"NonbootsMovement\"],\"image\":{\"full\":\"3086.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":144,\"y\":432,\"w\":48,\"h\":48},\"stats\":{\"FlatCritChanceMod\":0.1,\"PercentAttackSpeedMod\":0.18,\"PercentMovementSpeedMod\":0.05}},\"3085\":{\"id\":3085,\"name\":\"Runaan's
68
+ Hurricane (Ranged Only)\",\"gold\":{\"base\":700,\"total\":2400,\"sell\":1680,\"purchasable\":true},\"description\":\"<stats>+70%
69
+ Attack Speed</stats><br><br><unique>UNIQUE Passive:</unique> When basic attacking,
70
+ bolts are fired at up to 2 enemies near the target, each dealing 10 (+50%
71
+ of Attack Damage) physical damage. These bolts apply on-hit effects.\",\"sanitizedDescription\":\"+70%
72
+ Attack Speed UNIQUE Passive: When basic attacking, bolts are fired at up to
73
+ 2 enemies near the target, each dealing 10 (+50% of Attack Damage) physical
74
+ damage. These bolts apply on-hit effects.\",\"plaintext\":\"Ranged attacks
75
+ fire two bolts at nearby enemies\",\"depth\":2,\"from\":[\"1042\",\"1043\",\"1042\"],\"tags\":[\"AttackSpeed\",\"OnHit\"],\"image\":{\"full\":\"3085.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":96,\"y\":432,\"w\":48,\"h\":48},\"stats\":{\"PercentAttackSpeedMod\":0.7}},\"3280\":{\"id\":3280,\"name\":\"Enchantment:
76
+ Homeguard\",\"gold\":{\"base\":475,\"total\":1475,\"sell\":1033,\"purchasable\":true},\"group\":\"BootsHomeguard\",\"description\":\"<groupLimit>Limited
77
+ to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Homeguard
78
+ bonus.<br><br><unique>UNIQUE Passive - Homeguard:</unique> Visiting the shop
79
+ vastly increases Health and Mana regeneration and grants 200% bonus Movement
80
+ Speed that decays over 8 seconds. Bonus Movement Speed and Regeneration are
81
+ disabled for 6 seconds upon dealing or taking damage.<br><br><i>(Unique Passives
82
+ with the same name don't stack.)</i>\",\"sanitizedDescription\":\"Limited
83
+ to 1 of each enchantment type. Enchants boots to have Homeguard bonus. UNIQUE
84
+ Passive - Homeguard: Visiting the shop vastly increases Health and Mana regeneration
85
+ and grants 200% bonus Movement Speed that decays over 8 seconds. Bonus Movement
86
+ Speed and Regeneration are disabled for 6 seconds upon dealing or taking damage.
87
+ (Unique Passives with the same name don't stack.)\",\"depth\":3,\"from\":[\"3009\"],\"hideFromAll\":true,\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3280.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":384,\"y\":432,\"w\":48,\"h\":48},\"stats\":{\"FlatMovementSpeedMod\":60.0}},\"3084\":{\"id\":3084,\"name\":\"Overlord's
88
+ Bloodmail\",\"gold\":{\"base\":1055,\"total\":2455,\"sell\":1719,\"purchasable\":true},\"description\":\"<stats>+850
89
+ Health</stats><br><br><unique>UNIQUE Passive:</unique> Upon champion kill
90
+ or assist, restores 200 Health over 5 seconds.\",\"sanitizedDescription\":\"+850
91
+ Health UNIQUE Passive: Upon champion kill or assist, restores 200 Health over
92
+ 5 seconds.\",\"plaintext\":\"Restores Health on kill or assist\",\"depth\":2,\"from\":[\"1011\",\"1028\"],\"tags\":[\"Health\",\"HealthRegen\"],\"maps\":{\"1\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3084.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":48,\"y\":432,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":850.0}},\"2003\":{\"id\":2003,\"name\":\"Health
93
+ Potion\",\"gold\":{\"base\":35,\"total\":35,\"sell\":14,\"purchasable\":true},\"group\":\"HealthPotion\",\"description\":\"<groupLimit>Limited
94
+ to 5 at one time.</groupLimit><br><br><consumable>Click to Consume:</consumable>
95
+ Restores 150 Health over 15 seconds.\",\"sanitizedDescription\":\"Limited
96
+ to 5 at one time. Click to Consume: Restores 150 Health over 15 seconds.\",\"plaintext\":\"Consume
97
+ to restore Health over time\",\"consumed\":true,\"stacks\":5,\"tags\":[\"Consumable\"],\"image\":{\"full\":\"2003.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":384,\"y\":96,\"w\":48,\"h\":48},\"stats\":{}},\"3083\":{\"id\":3083,\"name\":\"Warmog's
98
+ Armor\",\"gold\":{\"base\":1070,\"total\":2830,\"sell\":1981,\"purchasable\":true},\"description\":\"<stats>+1000
99
+ Health</stats><br><br><unique>UNIQUE Passive:</unique> Restores 1% of maximum
100
+ Health every 5 seconds.\",\"sanitizedDescription\":\"+1000 Health UNIQUE Passive:
101
+ Restores 1% of maximum Health every 5 seconds.\",\"plaintext\":\"Grants massive
102
+ Health and Health Regen\",\"depth\":2,\"from\":[\"1011\",\"1028\",\"1006\",\"1006\"],\"tags\":[\"Health\",\"HealthRegen\"],\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3083.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":0,\"y\":432,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":1000.0}},\"3282\":{\"id\":3282,\"name\":\"Enchantment:
103
+ Furor\",\"gold\":{\"base\":475,\"total\":1475,\"sell\":1033,\"purchasable\":true},\"group\":\"BootsFuror\",\"description\":\"<groupLimit>Limited
104
+ to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Furor
105
+ bonus.<br><br><unique>UNIQUE Passive - Furor:</unique> Upon dealing damage
106
+ with a single target spell or attack (on hit), grants +12% Movement Speed
107
+ that decays over 2 seconds.<br><br><i>(Unique Passives with the same name
108
+ don't stack.)</i>\",\"sanitizedDescription\":\"Limited to 1 of each enchantment
109
+ type. Enchants boots to have Furor bonus. UNIQUE Passive - Furor: Upon dealing
110
+ damage with a single target spell or attack (on hit), grants +12% Movement
111
+ Speed that decays over 2 seconds. (Unique Passives with the same name don't
112
+ stack.)\",\"depth\":3,\"from\":[\"3009\"],\"hideFromAll\":true,\"image\":{\"full\":\"3282.png\",\"sprite\":\"item2.png\",\"group\":\"item\",\"x\":0,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatMovementSpeedMod\":60.0}},\"3082\":{\"id\":3082,\"name\":\"Warden's
113
+ Mail\",\"gold\":{\"base\":280,\"total\":1000,\"sell\":700,\"purchasable\":true},\"description\":\"<stats>+50
114
+ Armor</stats><br><br><unique>UNIQUE Passive - Cold Steel:</unique> When hit
115
+ by basic attacks, reduces the attacker's Attack Speed by 15% for 1 seconds.<br><br><i>(Unique
116
+ Passives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"+50
117
+ Armor UNIQUE Passive - Cold Steel: When hit by basic attacks, reduces the
118
+ attacker's Attack Speed by 15% for 1 seconds. (Unique Passives with the same
119
+ name don't stack.)\",\"plaintext\":\"Slows Attack Speed of enemy champions
120
+ when receiving basic attacks\",\"depth\":2,\"from\":[\"1031\"],\"into\":[\"3110\",\"3143\"],\"tags\":[\"Armor\",\"Slow\"],\"image\":{\"full\":\"3082.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":432,\"y\":384,\"w\":48,\"h\":48},\"stats\":{\"FlatArmorMod\":50.0}},\"3281\":{\"id\":3281,\"name\":\"Enchantment:
121
+ Captain\",\"gold\":{\"base\":600,\"total\":1600,\"sell\":1120,\"purchasable\":true},\"group\":\"BootsCaptain\",\"description\":\"<groupLimit>Limited
122
+ to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Captain
123
+ bonus.<br><br><unique>UNIQUE Passive - Captain:</unique> Grants +10% Movement
124
+ Speed to nearby approaching allied champions. Grants nearby minions +20% Movement
125
+ Speed.<br><br><i>(Unique Passives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"Limited
126
+ to 1 of each enchantment type. Enchants boots to have Captain bonus. UNIQUE
127
+ Passive - Captain: Grants +10% Movement Speed to nearby approaching allied
128
+ champions. Grants nearby minions +20% Movement Speed. (Unique Passives with
129
+ the same name don't stack.)\",\"depth\":3,\"from\":[\"3009\"],\"hideFromAll\":true,\"image\":{\"full\":\"3281.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":432,\"y\":432,\"w\":48,\"h\":48},\"stats\":{\"FlatMovementSpeedMod\":60.0}},\"3284\":{\"id\":3284,\"name\":\"Enchantment:
130
+ Alacrity\",\"gold\":{\"base\":475,\"total\":1475,\"sell\":1033,\"purchasable\":true},\"group\":\"BootsAlacrity\",\"description\":\"<groupLimit>Limited
131
+ to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Alacrity
132
+ bonus. <br><br><unique>UNIQUE Passive - Alacrity:</unique> +20 Movement Speed<br><br><i>(Unique
133
+ Passives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"Limited
134
+ to 1 of each enchantment type. Enchants boots to have Alacrity bonus. UNIQUE
135
+ Passive - Alacrity: +20 Movement Speed (Unique Passives with the same name
136
+ don't stack.)\",\"depth\":3,\"from\":[\"3009\"],\"hideFromAll\":true,\"image\":{\"full\":\"3284.png\",\"sprite\":\"item2.png\",\"group\":\"item\",\"x\":96,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatMovementSpeedMod\":80.0}},\"3283\":{\"id\":3283,\"name\":\"Enchantment:
137
+ Distortion\",\"gold\":{\"base\":475,\"total\":1475,\"sell\":1033,\"purchasable\":true},\"group\":\"BootsDistortion\",\"description\":\"<groupLimit>Limited
138
+ to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Distortion
139
+ bonus.<br><br><unique>UNIQUE Passive - Distortion:</unique> Teleport, Flash,
140
+ and Ghost summoner spell cooldowns are reduced by 20% and are granted additional
141
+ mobility: <br><br><font color='#FFDD00'>Ghost:</font> Grants 40% Movement
142
+ Speed from 27%.<br><font color='#FFDD00'>Flash:</font> 20% Movement Speed
143
+ bonus for 1 second after cast.<br><font color='#FFDD00'>Teleport:</font> 30%
144
+ Movement Speed bonus for 3 seconds after use.<br><br><i>(Unique Passives with
145
+ the same name don't stack.)</i>\",\"sanitizedDescription\":\"Limited to 1
146
+ of each enchantment type. Enchants boots to have Distortion bonus. UNIQUE
147
+ Passive - Distortion: Teleport, Flash, and Ghost summoner spell cooldowns
148
+ are reduced by 20% and are granted additional mobility: Ghost: Grants 40%
149
+ Movement Speed from 27%. Flash: 20% Movement Speed bonus for 1 second after
150
+ cast. Teleport: 30% Movement Speed bonus for 3 seconds after use. (Unique
151
+ Passives with the same name don't stack.)\",\"depth\":3,\"from\":[\"3009\"],\"hideFromAll\":true,\"image\":{\"full\":\"3283.png\",\"sprite\":\"item2.png\",\"group\":\"item\",\"x\":48,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatMovementSpeedMod\":60.0}},\"3278\":{\"id\":3278,\"name\":\"Enchantment:
152
+ Distortion\",\"gold\":{\"base\":475,\"total\":1475,\"sell\":1033,\"purchasable\":true},\"group\":\"BootsDistortion\",\"description\":\"<groupLimit>Limited
153
+ to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Distortion
154
+ bonus.<br><br><unique>UNIQUE Passive - Distortion:</unique> Teleport, Flash,
155
+ and Ghost summoner spell cooldowns are reduced by 20% and are granted additional
156
+ mobility: <br><br><font color='#FFDD00'>Ghost:</font> Grants 40% Movement
157
+ Speed from 27%.<br><font color='#FFDD00'>Flash:</font> 20% Movement Speed
158
+ bonus for 1 second after cast.<br><font color='#FFDD00'>Teleport:</font> 30%
159
+ Movement Speed bonus for 3 seconds after use.<br><br><i>(Unique Passives with
160
+ the same name don't stack.)</i>\",\"sanitizedDescription\":\"Limited to 1
161
+ of each enchantment type. Enchants boots to have Distortion bonus. UNIQUE
162
+ Passive - Distortion: Teleport, Flash, and Ghost summoner spell cooldowns
163
+ are reduced by 20% and are granted additional mobility: Ghost: Grants 40%
164
+ Movement Speed from 27%. Flash: 20% Movement Speed bonus for 1 second after
165
+ cast. Teleport: 30% Movement Speed bonus for 3 seconds after use. (Unique
166
+ Passives with the same name don't stack.)\",\"depth\":3,\"from\":[\"3158\"],\"hideFromAll\":true,\"image\":{\"full\":\"3278.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":288,\"y\":432,\"w\":48,\"h\":48},\"stats\":{\"FlatMovementSpeedMod\":45.0}},\"3279\":{\"id\":3279,\"name\":\"Enchantment:
167
+ Alacrity\",\"gold\":{\"base\":475,\"total\":1475,\"sell\":1033,\"purchasable\":true},\"group\":\"BootsAlacrity\",\"description\":\"<groupLimit>Limited
168
+ to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Alacrity
169
+ bonus. <br><br><unique>UNIQUE Passive - Alacrity:</unique> +20 Movement Speed<br><br><i>(Unique
170
+ Passives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"Limited
171
+ to 1 of each enchantment type. Enchants boots to have Alacrity bonus. UNIQUE
172
+ Passive - Alacrity: +20 Movement Speed (Unique Passives with the same name
173
+ don't stack.)\",\"depth\":3,\"from\":[\"3158\"],\"hideFromAll\":true,\"image\":{\"full\":\"3279.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":336,\"y\":432,\"w\":48,\"h\":48},\"stats\":{\"FlatMovementSpeedMod\":65.0}},\"2010\":{\"id\":2010,\"name\":\"Total
174
+ Biscuit of Rejuvenation\",\"gold\":{\"base\":35,\"total\":35,\"sell\":14,\"purchasable\":false},\"group\":\"HealthPotion\",\"description\":\"<consumable>Click
175
+ to Consume:</consumable> Restores 20 health and 10 mana immediately and then
176
+ 150 Health over 15 seconds.\",\"sanitizedDescription\":\"Click to Consume:
177
+ Restores 20 health and 10 mana immediately and then 150 Health over 15 seconds.\",\"consumed\":true,\"stacks\":5,\"inStore\":false,\"image\":{\"full\":\"2010.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":48,\"y\":144,\"w\":48,\"h\":48},\"stats\":{}},\"3098\":{\"id\":3098,\"name\":\"Frostfang\",\"gold\":{\"base\":500,\"total\":865,\"sell\":346,\"purchasable\":true},\"group\":\"GoldBase\",\"description\":\"<stats>+10
178
+ Ability Power<br>+5 Mana Regen per 5 seconds<br>+4 Gold per 10 seconds</stats><br><br><unique>UNIQUE
179
+ Passive - Tribute:</unique> Spells and basic attacks against champions or
180
+ buildings deal 15 additional damage and grant 10 Gold. This can occur up to
181
+ three times every 30 seconds. Killing a minion disables this passive for 12
182
+ seconds.<br><br><groupLimit>Limited to 1 Gold Income item</groupLimit></i>\",\"sanitizedDescription\":\"+10
183
+ Ability Power +5 Mana Regen per 5 seconds +4 Gold per 10 seconds UNIQUE Passive
184
+ - Tribute: Spells and basic attacks against champions or buildings deal 15
185
+ additional damage and grant 10 Gold. This can occur up to three times every
186
+ 30 seconds. Killing a minion disables this passive for 12 seconds. Limited
187
+ to 1 Gold Income item\",\"plaintext\":\"Grants gold when you damage an enemy
188
+ with a Spell or Attack\",\"depth\":2,\"from\":[\"3303\"],\"into\":[\"3092\"],\"tags\":[\"SpellDamage\",\"ManaRegen\",\"GoldPer\",\"Active\"],\"image\":{\"full\":\"3098.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":96,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatMPRegenMod\":1.0,\"FlatMagicDamageMod\":10.0}},\"1080\":{\"id\":1080,\"name\":\"Spirit
189
+ Stone\",\"gold\":{\"base\":40,\"total\":700,\"sell\":490,\"purchasable\":true},\"description\":\"<unique>UNIQUE
190
+ Passive - Butcher:</unique> Against monsters, deal 20% bonus damage and restore
191
+ 6% of damage dealt as Health and 3% as Mana.<br><br><i>(Unique Passives or
192
+ Actives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"UNIQUE
193
+ Passive - Butcher: Against monsters, deal 20% bonus damage and restore 6%
194
+ of damage dealt as Health and 3% as Mana. (Unique Passives or Actives with
195
+ the same name don't stack.)\",\"plaintext\":\"Moderately increases damage
196
+ dealt to neutral monsters\",\"depth\":2,\"from\":[\"1039\",\"1004\",\"1006\"],\"into\":[\"3206\",\"3207\",\"3209\"],\"maps\":{\"8\":false},\"image\":{\"full\":\"1080.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":336,\"y\":96,\"w\":48,\"h\":48},\"stats\":{}},\"3290\":{\"id\":3290,\"name\":\"Twin
197
+ Shadows\",\"gold\":{\"base\":630,\"total\":2400,\"sell\":1680,\"purchasable\":true},\"description\":\"<stats>+80
198
+ Ability Power<br>+10% Cooldown Reduction<br>+6% Movement Speed</stats><br><br><active>UNIQUE
199
+ Active - Hunt:</active> Summons up to 2 invulnerable ghosts that seek out
200
+ the two nearest enemy champions for 5 seconds. If a ghost reaches its target,
201
+ it reveals the target and reduces their Movement Speed by 40% for 2.5 seconds.<br><br>If
202
+ a ghost cannot find a target, it tries to return to the caster. Ghosts that
203
+ successfully return in this way reduce the item's cooldown by 20 seconds (60
204
+ second cooldown).\",\"sanitizedDescription\":\"+80 Ability Power +10% Cooldown
205
+ Reduction +6% Movement Speed UNIQUE Active - Hunt: Summons up to 2 invulnerable
206
+ ghosts that seek out the two nearest enemy champions for 5 seconds. If a ghost
207
+ reaches its target, it reveals the target and reduces their Movement Speed
208
+ by 40% for 2.5 seconds. If a ghost cannot find a target, it tries to return
209
+ to the caster. Ghosts that successfully return in this way reduce the item's
210
+ cooldown by 20 seconds (60 second cooldown).\",\"colloq\":\"spooky ghosts\",\"plaintext\":\"Summon
211
+ wraiths to slow and reveal enemy champions\",\"depth\":3,\"from\":[\"3108\",\"3113\"],\"tags\":[\"SpellDamage\",\"Movement\",\"NonbootsMovement\",\"CooldownReduction\",\"Slow\",\"Active\"],\"maps\":{\"1\":false,\"12\":false},\"image\":{\"full\":\"3290.png\",\"sprite\":\"item2.png\",\"group\":\"item\",\"x\":144,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatMagicDamageMod\":80.0,\"PercentMovementSpeedMod\":0.06}},\"3097\":{\"id\":3097,\"name\":\"Targon's
212
+ Brace\",\"gold\":{\"base\":500,\"total\":865,\"sell\":346,\"purchasable\":true},\"group\":\"GoldBase\",\"description\":\"<stats>+175
213
+ Health<br>+8 Health Regen per 5 seconds</stats><br><br><unique>UNIQUE Passive
214
+ - Spoils of War:</unique> Melee basic attacks execute minions below 200 Health.
215
+ Killing a minion heals you and the nearest allied champion for 50 Health and
216
+ grants them kill Gold.<br><br>These effects require a nearby allied champion.
217
+ Recharges every 30 seconds. Max 3 charges.<br><br><groupLimit>Limited to 1
218
+ Gold Income item</groupLimit>\",\"sanitizedDescription\":\"+175 Health +8
219
+ Health Regen per 5 seconds UNIQUE Passive - Spoils of War: Melee basic attacks
220
+ execute minions below 200 Health. Killing a minion heals you and the nearest
221
+ allied champion for 50 Health and grants them kill Gold. These effects require
222
+ a nearby allied champion. Recharges every 30 seconds. Max 3 charges. Limited
223
+ to 1 Gold Income item\",\"plaintext\":\"Periodically kill enemy minions to
224
+ heal and grant gold to a nearby ally\",\"depth\":2,\"from\":[\"3302\"],\"into\":[\"3401\"],\"tags\":[\"Health\",\"HealthRegen\",\"Aura\",\"GoldPer\"],\"image\":{\"full\":\"3097.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":48,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":175.0,\"FlatHPRegenMod\":1.6}},\"3096\":{\"id\":3096,\"name\":\"Nomad's
225
+ Medallion\",\"gold\":{\"base\":500,\"total\":865,\"sell\":346,\"purchasable\":true},\"group\":\"GoldBase\",\"description\":\"<stats>+7
226
+ Mana Regen per 5 seconds<br>+5 Health Regen per 5 seconds<br>+2 Gold per 10
227
+ seconds</stats><br><br><unique>UNIQUE Passive - Favor:</unique> Being near
228
+ a minion death without dealing the killing blow grants 3 Gold and 5 Health.<br><br><groupLimit>Limited
229
+ to 1 Gold Income item</groupLimit><br><br><i><font color='#447777'>''The medallion
230
+ shines with the glory of a thousand voices when exposed to the sun.'' - Historian
231
+ Shurelya, 22 June, 24 CLE</font></i><br><br>\",\"sanitizedDescription\":\"+7
232
+ Mana Regen per 5 seconds +5 Health Regen per 5 seconds +2 Gold per 10 seconds
233
+ UNIQUE Passive - Favor: Being near a minion death without dealing the killing
234
+ blow grants 3 Gold and 5 Health. Limited to 1 Gold Income item ''The medallion
235
+ shines with the glory of a thousand voices when exposed to the sun.'' - Historian
236
+ Shurelya, 22 June, 24 CLE\",\"plaintext\":\"Grants gold when nearby enemy
237
+ minions die, Health Regen and Mana Regen\",\"depth\":2,\"from\":[\"3301\"],\"into\":[\"3069\"],\"tags\":[\"HealthRegen\",\"ManaRegen\",\"Movement\",\"GoldPer\",\"Active\"],\"image\":{\"full\":\"3096.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":0,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatHPRegenMod\":1.0,\"FlatMPRegenMod\":1.4}},\"3091\":{\"id\":3091,\"name\":\"Wit's
238
+ End\",\"gold\":{\"base\":700,\"total\":2400,\"sell\":1680,\"purchasable\":true},\"description\":\"<stats>+42%
239
+ Attack Speed<br>+25 Magic Resist</stats><br><br><unique>UNIQUE Passive:</unique>
240
+ Basic attacks deal 42 bonus magic damage on hit.<br><unique>UNIQUE Passive:</unique>
241
+ Basic attacks steal 5 Magic Resist from the target on hit (stacks up to 5
242
+ times.)\",\"sanitizedDescription\":\"+42% Attack Speed +25 Magic Resist UNIQUE
243
+ Passive: Basic attacks deal 42 bonus magic damage on hit. UNIQUE Passive:
244
+ Basic attacks steal 5 Magic Resist from the target on hit (stacks up to 5
245
+ times.)\",\"plaintext\":\"Deals bonus magic damage on basic attacks\",\"depth\":2,\"from\":[\"1043\",\"1033\",\"1042\"],\"tags\":[\"SpellBlock\",\"Damage\",\"AttackSpeed\",\"OnHit\"],\"image\":{\"full\":\"3091.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":336,\"y\":432,\"w\":48,\"h\":48},\"stats\":{\"FlatSpellBlockMod\":25.0,\"PercentAttackSpeedMod\":0.42}},\"3090\":{\"id\":3090,\"name\":\"Wooglet's
246
+ Witchcap\",\"gold\":{\"base\":1045,\"total\":3500,\"sell\":2450,\"purchasable\":true},\"description\":\"<stats>+100
247
+ Ability Power<br>+45 Armor </stats><br><br><unique>UNIQUE Passive:</unique>
248
+ Increases Ability Power by 25%<br><active>UNIQUE Active:</active> Champion
249
+ becomes invulnerable and untargetable for 2.5 seconds, but is unable to move,
250
+ attack, cast spells, or use items during this time (90 second cooldown).\",\"sanitizedDescription\":\"+100
251
+ Ability Power +45 Armor UNIQUE Passive: Increases Ability Power by 25% UNIQUE
252
+ Active: Champion becomes invulnerable and untargetable for 2.5 seconds, but
253
+ is unable to move, attack, cast spells, or use items during this time (90
254
+ second cooldown).\",\"colloq\":\"hat\",\"plaintext\":\"Massively increases
255
+ Ability Power and can be activated to enter stasis\",\"depth\":3,\"from\":[\"3191\",\"1026\",\"1052\"],\"tags\":[\"Armor\",\"SpellDamage\",\"Active\"],\"maps\":{\"1\":false,\"12\":false},\"image\":{\"full\":\"3090.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":288,\"y\":432,\"w\":48,\"h\":48},\"stats\":{\"FlatArmorMod\":45.0,\"FlatMagicDamageMod\":100.0}},\"3093\":{\"id\":3093,\"name\":\"Avarice
256
+ Blade\",\"gold\":{\"base\":400,\"total\":800,\"sell\":320,\"purchasable\":true},\"description\":\"<stats>+10%
257
+ Critical Strike Chance</stats><br><br><unique>UNIQUE Passive - Avarice:</unique>
258
+ +3 Gold per 10 seconds<br><unique>UNIQUE Passive - Greed:</unique> Grants
259
+ 2 Gold upon killing a unit.<br><br><groupLimit>May be bought with another
260
+ Gold Income item</groupLimit>\",\"sanitizedDescription\":\"+10% Critical Strike
261
+ Chance UNIQUE Passive - Avarice: +3 Gold per 10 seconds UNIQUE Passive - Greed:
262
+ Grants 2 Gold upon killing a unit. May be bought with another Gold Income
263
+ item\",\"plaintext\":\"Grants gold over time and additional gold on kill\",\"depth\":2,\"from\":[\"1051\"],\"into\":[\"3142\",\"3005\",\"3087\",\"3123\"],\"tags\":[\"CriticalStrike\",\"GoldPer\"],\"image\":{\"full\":\"3093.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":432,\"y\":432,\"w\":48,\"h\":48},\"stats\":{\"FlatCritChanceMod\":0.1}},\"3092\":{\"id\":3092,\"name\":\"Frost
264
+ Queen's Claim\",\"gold\":{\"base\":515,\"total\":2200,\"sell\":880,\"purchasable\":true},\"group\":\"GoldBase\",\"description\":\"<stats>+50
265
+ Ability Power<br>+10 Mana Regen per 5 seconds<br>+10% Cooldown Reduction<br>+4
266
+ Gold per 10 seconds</stats><br><br><unique>UNIQUE Passive - Tribute:</unique>
267
+ Spells and basic attacks against champions or buildings deal 15 additional
268
+ damage and grant 10 Gold. This can occur up to three times every 30 seconds.<br><active>UNIQUE
269
+ Active:</active> Fires an ice lance that explodes dealing 50 (+5 per champion
270
+ level) magic damage to nearby enemies and slowing their Movement Speed by
271
+ 80%, decaying over 2 seconds. (60 second cooldown.)<br><br><groupLimit>Limited
272
+ to 1 Gold Income item</groupLimit></i>\",\"sanitizedDescription\":\"+50 Ability
273
+ Power +10 Mana Regen per 5 seconds +10% Cooldown Reduction +4 Gold per 10
274
+ seconds UNIQUE Passive - Tribute: Spells and basic attacks against champions
275
+ or buildings deal 15 additional damage and grant 10 Gold. This can occur up
276
+ to three times every 30 seconds. UNIQUE Active: Fires an ice lance that explodes
277
+ dealing 50 (+5 per champion level) magic damage to nearby enemies and slowing
278
+ their Movement Speed by 80%, decaying over 2 seconds. (60 second cooldown.)
279
+ Limited to 1 Gold Income item\",\"plaintext\":\"Chills target area, damaging
280
+ and slowing enemies caught in the path or explosion\",\"depth\":3,\"from\":[\"3098\",\"3108\"],\"tags\":[\"SpellDamage\",\"ManaRegen\",\"CooldownReduction\",\"Slow\",\"GoldPer\",\"Active\"],\"image\":{\"full\":\"3092.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":384,\"y\":432,\"w\":48,\"h\":48},\"stats\":{\"FlatMPRegenMod\":2.0,\"FlatMagicDamageMod\":50.0}},\"1063\":{\"id\":1063,\"name\":\"Prospector's
281
+ Ring\",\"gold\":{\"base\":950,\"total\":950,\"sell\":380,\"purchasable\":true},\"description\":\"<stats>+35
282
+ Ability Power<br>+6 Mana Regeneration</stats><br><br><unique>UNIQUE Passive
283
+ - Prospector:</unique> +150 Health<br><br><i>(Unique Passives with the same
284
+ name don't stack.)</i>\",\"sanitizedDescription\":\"+35 Ability Power +6 Mana
285
+ Regeneration UNIQUE Passive - Prospector: +150 Health (Unique Passives with
286
+ the same name don't stack.)\",\"plaintext\":\"Good starting item for casters\",\"tags\":[\"Health\",\"SpellDamage\",\"ManaRegen\"],\"maps\":{\"1\":false,\"10\":false,\"12\":false},\"image\":{\"full\":\"1063.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":288,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatMPRegenMod\":1.2,\"FlatMagicDamageMod\":35.0}},\"1062\":{\"id\":1062,\"name\":\"Prospector's
287
+ Blade\",\"gold\":{\"base\":950,\"total\":950,\"sell\":380,\"purchasable\":true},\"description\":\"<stats>+16
288
+ Attack Damage<br>+15% Attack Speed </stats><br><br><unique>UNIQUE Passive
289
+ - Prospector:</unique> +150 Health<br><br><i>(Unique Passives with the same
290
+ name don't stack.)</i>\",\"sanitizedDescription\":\"+16 Attack Damage +15%
291
+ Attack Speed UNIQUE Passive - Prospector: +150 Health (Unique Passives with
292
+ the same name don't stack.)\",\"plaintext\":\"Good starting item for attackers\",\"tags\":[\"Health\",\"Damage\",\"AttackSpeed\"],\"maps\":{\"1\":false,\"10\":false,\"12\":false},\"image\":{\"full\":\"1062.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":240,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatPhysicalDamageMod\":16.0,\"PercentAttackSpeedMod\":0.15}},\"1058\":{\"id\":1058,\"name\":\"Needlessly
293
+ Large Rod\",\"gold\":{\"base\":1600,\"total\":1600,\"sell\":1120,\"purchasable\":true},\"description\":\"<stats>+80
294
+ Ability Power</stats>\",\"sanitizedDescription\":\"+80 Ability Power\",\"colloq\":\"nlr\",\"plaintext\":\"Greatly
295
+ increases Ability Power\",\"into\":[\"3089\",\"3157\",\"3128\"],\"tags\":[\"SpellDamage\"],\"maps\":{\"10\":false,\"8\":false},\"image\":{\"full\":\"1058.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":192,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatMagicDamageMod\":80.0}},\"1056\":{\"id\":1056,\"name\":\"Doran's
296
+ Ring\",\"gold\":{\"base\":400,\"total\":400,\"sell\":160,\"purchasable\":true},\"description\":\"<stats>+60
297
+ Health<br>+15 Ability Power<br>+3 Mana Regen per 5 seconds</stats><br><br><passive>Passive:</passive>
298
+ Restores 4 Mana upon killing a unit.\",\"sanitizedDescription\":\"+60 Health
299
+ +15 Ability Power +3 Mana Regen per 5 seconds Passive: Restores 4 Mana upon
300
+ killing a unit.\",\"colloq\":\"dring\",\"plaintext\":\"Good starting item
301
+ for casters\",\"tags\":[\"Health\",\"SpellDamage\",\"ManaRegen\"],\"maps\":{\"8\":false},\"image\":{\"full\":\"1056.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":96,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":60.0,\"FlatMPRegenMod\":0.6,\"FlatMagicDamageMod\":15.0}},\"1057\":{\"id\":1057,\"name\":\"Negatron
302
+ Cloak\",\"gold\":{\"base\":720,\"total\":720,\"sell\":504,\"purchasable\":true},\"description\":\"<stats>+40
303
+ Magic Resist</stats>\",\"sanitizedDescription\":\"+40 Magic Resist\",\"plaintext\":\"Moderately
304
+ increases Magic Resist\",\"into\":[\"3001\",\"3140\",\"3180\",\"3112\",\"3026\",\"3211\",\"3105\",\"3170\"],\"tags\":[\"SpellBlock\"],\"image\":{\"full\":\"1057.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":144,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatSpellBlockMod\":40.0}},\"3110\":{\"id\":3110,\"name\":\"Frozen
305
+ Heart\",\"gold\":{\"base\":650,\"total\":2600,\"sell\":1820,\"purchasable\":true},\"description\":\"<stats>+100
306
+ Armor<br>+400 Mana<br>+20% Cooldown Reduction</stats><br><br><aura>UNIQUE
307
+ Aura:</aura> Reduces the Attack Speed of nearby enemies by 15%.\",\"sanitizedDescription\":\"+100
308
+ Armor +400 Mana +20% Cooldown Reduction UNIQUE Aura: Reduces the Attack Speed
309
+ of nearby enemies by 15%.\",\"colloq\":\"fh\",\"plaintext\":\"Massively increases
310
+ Armor and slows enemy basic attacks\",\"depth\":3,\"from\":[\"3082\",\"3024\"],\"tags\":[\"Armor\",\"Mana\",\"CooldownReduction\",\"Aura\"],\"image\":{\"full\":\"3110.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":0,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatArmorMod\":100.0,\"FlatMPPoolMod\":400.0}},\"3111\":{\"id\":3111,\"name\":\"Mercury's
311
+ Treads\",\"gold\":{\"base\":475,\"total\":1200,\"sell\":840,\"purchasable\":true},\"description\":\"<stats>+25
312
+ Magic Resist</stats><br><br><unique>UNIQUE Passive - Enhanced Movement:</unique>
313
+ +45 Movement Speed<br><unique>UNIQUE Passive - Tenacity:</unique> Reduces
314
+ the duration of stuns, slows, taunts, fears, silences, blinds, polymorphs,
315
+ and immobilizes by 35%.<br><br><i>(Unique Passives with the same name don't
316
+ stack.)</i>\",\"sanitizedDescription\":\"+25 Magic Resist UNIQUE Passive -
317
+ Enhanced Movement: +45 Movement Speed UNIQUE Passive - Tenacity: Reduces the
318
+ duration of stuns, slows, taunts, fears, silences, blinds, polymorphs, and
319
+ immobilizes by 35%. (Unique Passives with the same name don't stack.)\",\"plaintext\":\"Increases
320
+ Movement Speed and reduces duration of disabling effects\",\"depth\":2,\"from\":[\"1001\",\"1033\"],\"into\":[\"3269\",\"3268\",\"3267\",\"3266\",\"3265\"],\"tags\":[\"SpellBlock\",\"Movement\",\"Boots\",\"Tenacity\"],\"image\":{\"full\":\"3111.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":48,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatMovementSpeedMod\":45.0,\"FlatSpellBlockMod\":25.0}},\"3112\":{\"id\":3112,\"name\":\"Orb
321
+ of Winter\",\"gold\":{\"base\":1000,\"total\":2080,\"sell\":1456,\"purchasable\":true},\"description\":\"<stats>+70
322
+ Magic Resist<br>+20 Health Regen per 5 seconds</stats><br><br><unique>UNIQUE
323
+ Passive:</unique> Grants a shield that absorbs up to 30 (+10 per level) damage.
324
+ The shield will refresh after 9 seconds without receiving damage.\",\"sanitizedDescription\":\"+70
325
+ Magic Resist +20 Health Regen per 5 seconds UNIQUE Passive: Grants a shield
326
+ that absorbs up to 30 (+10 per level) damage. The shield will refresh after
327
+ 9 seconds without receiving damage.\",\"plaintext\":\"Grants a shield when
328
+ out of combat\",\"depth\":2,\"from\":[\"1006\",\"1006\",\"1057\"],\"tags\":[\"SpellBlock\",\"HealthRegen\",\"Movement\"],\"maps\":{\"1\":false,\"10\":false,\"8\":false},\"image\":{\"full\":\"3112.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":96,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatHPRegenMod\":4.0,\"FlatSpellBlockMod\":70.0}},\"3106\":{\"id\":3106,\"name\":\"Madred's
329
+ Razors\",\"gold\":{\"base\":50,\"total\":750,\"sell\":525,\"purchasable\":true},\"description\":\"<stats>+15%
330
+ Attack Speed</stats><br><br><unique>UNIQUE Passive - Maim:</unique> Basic
331
+ attacks against monsters deal 60 bonus magic damage and heal 8 Health on hit.<br><br><i>(Unique
332
+ Passives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"+15%
333
+ Attack Speed UNIQUE Passive - Maim: Basic attacks against monsters deal 60
334
+ bonus magic damage and heal 8 Health on hit. (Unique Passives with the same
335
+ name don't stack.)\",\"plaintext\":\"Basic attacks kill minions and monsters
336
+ quickly\",\"depth\":2,\"from\":[\"1042\",\"1039\"],\"into\":[\"3154\"],\"tags\":[\"Damage\",\"AttackSpeed\",\"OnHit\"],\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3106.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":384,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"PercentAttackSpeedMod\":0.15}},\"3108\":{\"id\":3108,\"name\":\"Fiendish
337
+ Codex\",\"gold\":{\"base\":385,\"total\":820,\"sell\":574,\"purchasable\":true},\"description\":\"<stats>+30
338
+ Ability Power</stats><br><br><unique>UNIQUE Passive:</unique> +10% Cooldown
339
+ Reduction\",\"sanitizedDescription\":\"+30 Ability Power UNIQUE Passive: +10%
340
+ Cooldown Reduction\",\"plaintext\":\"Increases Ability Power and Cooldown
341
+ Reduction\",\"depth\":2,\"from\":[\"1052\"],\"into\":[\"3115\",\"3174\",\"3165\",\"3128\",\"3060\",\"3188\",\"3187\",\"3206\",\"3290\",\"3023\",\"3092\",\"3152\"],\"tags\":[\"SpellDamage\",\"CooldownReduction\"],\"image\":{\"full\":\"3108.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":432,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatMagicDamageMod\":30.0}},\"3102\":{\"id\":3102,\"name\":\"Banshee's
342
+ Veil\",\"gold\":{\"base\":950,\"total\":2750,\"sell\":1925,\"purchasable\":true},\"description\":\"<stats>+450
343
+ Health<br>+55 Magic Resist</stats><br><br><unique>UNIQUE Passive:</unique>
344
+ Grants a spell shield that blocks the next enemy ability. This shield refreshes
345
+ after no damage is taken from enemy champions for 25 seconds.<br><unique>UNIQUE
346
+ Passive:</unique> Grants 45 Health Regen per 5 for up to 10 seconds after
347
+ taking damage from an enemy champion or when the spell shield breaks.\",\"sanitizedDescription\":\"+450
348
+ Health +55 Magic Resist UNIQUE Passive: Grants a spell shield that blocks
349
+ the next enemy ability. This shield refreshes after no damage is taken from
350
+ enemy champions for 25 seconds. UNIQUE Passive: Grants 45 Health Regen per
351
+ 5 for up to 10 seconds after taking damage from an enemy champion or when
352
+ the spell shield breaks.\",\"colloq\":\"bv\",\"plaintext\":\"Periodically
353
+ blocks enemy abilities\",\"depth\":3,\"from\":[\"3211\",\"1028\"],\"tags\":[\"Health\",\"SpellBlock\",\"HealthRegen\"],\"maps\":{\"8\":false},\"image\":{\"full\":\"3102.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":240,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":450.0,\"FlatSpellBlockMod\":55.0}},\"3105\":{\"id\":3105,\"name\":\"Aegis
354
+ of the Legion\",\"gold\":{\"base\":600,\"total\":1900,\"sell\":1330,\"purchasable\":true},\"description\":\"<stats>+200
355
+ Health<br>+20 Magic Resistance</stats><br><br><aura>UNIQUE Aura - Legion:</aura>
356
+ Grants nearby allies +20 Magic Resist and +10 Health Regen per 5 seconds.<br><br><i>(Unique
357
+ Auras with the same name don't stack.)</i>\",\"sanitizedDescription\":\"+200
358
+ Health +20 Magic Resistance UNIQUE Aura - Legion: Grants nearby allies +20
359
+ Magic Resist and +10 Health Regen per 5 seconds. (Unique Auras with the same
360
+ name don't stack.)\",\"plaintext\":\"Improves defenses for nearby allies\",\"depth\":2,\"from\":[\"1028\",\"1057\",\"1006\"],\"into\":[\"3190\"],\"tags\":[\"Health\",\"SpellBlock\",\"HealthRegen\",\"Aura\"],\"image\":{\"full\":\"3105.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":336,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":200.0,\"FlatSpellBlockMod\":20.0}},\"3104\":{\"id\":3104,\"name\":\"Lord
361
+ Van Damm's Pillager\",\"gold\":{\"base\":995,\"total\":3800,\"sell\":2660,\"purchasable\":true},\"description\":\"<stats>+70
362
+ Attack Damage<br>+25% Critical Strike Chance</stats><br><br><unique>UNIQUE
363
+ Passive:</unique> Critical strikes deal 250% damage instead of 200%.\",\"sanitizedDescription\":\"+70
364
+ Attack Damage +25% Critical Strike Chance UNIQUE Passive: Critical strikes
365
+ deal 250% damage instead of 200%.\",\"colloq\":\"ie\",\"plaintext\":\"Massively
366
+ enhances critical strikes\",\"depth\":3,\"from\":[\"3122\",\"1037\",\"1018\"],\"tags\":[\"Damage\",\"CriticalStrike\"],\"maps\":{\"1\":false,\"12\":false},\"image\":{\"full\":\"3104.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":288,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatCritChanceMod\":0.25,\"FlatPhysicalDamageMod\":70.0}},\"3100\":{\"id\":3100,\"name\":\"Lich
367
+ Bane\",\"gold\":{\"base\":850,\"total\":3000,\"sell\":2100,\"purchasable\":true},\"description\":\"<stats>+80
368
+ Ability Power<br>+250 Mana<br>+5% Movement Speed</stats><br><br><unique>UNIQUE
369
+ Passive - Spellblade:</unique> After using an ability, the next basic attack
370
+ deals 75% Base Attack Damage (+50% of Ability Power) bonus magic damage on
371
+ hit (2 second cooldown).<br><br><i>(Unique Passives with the same name don't
372
+ stack.)</i>\",\"sanitizedDescription\":\"+80 Ability Power +250 Mana +5% Movement
373
+ Speed UNIQUE Passive - Spellblade: After using an ability, the next basic
374
+ attack deals 75% Base Attack Damage (+50% of Ability Power) bonus magic damage
375
+ on hit (2 second cooldown). (Unique Passives with the same name don't stack.)\",\"plaintext\":\"Grants
376
+ a bonus to next attack after spell cast\",\"depth\":3,\"from\":[\"3057\",\"3113\"],\"tags\":[\"SpellDamage\",\"Mana\",\"Movement\",\"NonbootsMovement\"],\"image\":{\"full\":\"3100.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":144,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatMPPoolMod\":250.0,\"FlatMagicDamageMod\":80.0,\"PercentMovementSpeedMod\":0.05}},\"3250\":{\"id\":3250,\"name\":\"Enchantment:
377
+ Homeguard\",\"gold\":{\"base\":475,\"total\":1375,\"sell\":962,\"purchasable\":true},\"group\":\"BootsHomeguard\",\"description\":\"<groupLimit>Limited
378
+ to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Homeguard
379
+ bonus.<br><br><unique>UNIQUE Passive - Homeguard:</unique> Visiting the shop
380
+ vastly increases Health and Mana regeneration and grants 200% bonus Movement
381
+ Speed that decays over 8 seconds. Bonus Movement Speed and Regeneration are
382
+ disabled for 6 seconds upon dealing or taking damage.<br><br><i>(Unique Passives
383
+ with the same name don't stack.)</i>\",\"sanitizedDescription\":\"Limited
384
+ to 1 of each enchantment type. Enchants boots to have Homeguard bonus. UNIQUE
385
+ Passive - Homeguard: Visiting the shop vastly increases Health and Mana regeneration
386
+ and grants 200% bonus Movement Speed that decays over 8 seconds. Bonus Movement
387
+ Speed and Regeneration are disabled for 6 seconds upon dealing or taking damage.
388
+ (Unique Passives with the same name don't stack.)\",\"depth\":3,\"from\":[\"3006\"],\"hideFromAll\":true,\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3250.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":384,\"y\":288,\"w\":48,\"h\":48},\"stats\":{\"FlatMovementSpeedMod\":45.0,\"PercentAttackSpeedMod\":0.2}},\"3101\":{\"id\":3101,\"name\":\"Stinger\",\"gold\":{\"base\":450,\"total\":1250,\"sell\":875,\"purchasable\":true},\"description\":\"<stats>+40%
389
+ Attack Speed</stats><br><br><unique>UNIQUE Passive:</unique> +10% Cooldown
390
+ Reduction\",\"sanitizedDescription\":\"+40% Attack Speed UNIQUE Passive: +10%
391
+ Cooldown Reduction\",\"plaintext\":\"Increased Attack Speed and Cooldown Reduction\",\"depth\":2,\"from\":[\"1042\",\"1042\"],\"into\":[\"3115\",\"3172\",\"3137\"],\"tags\":[\"AttackSpeed\",\"CooldownReduction\"],\"image\":{\"full\":\"3101.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":192,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"PercentAttackSpeedMod\":0.4}},\"3251\":{\"id\":3251,\"name\":\"Enchantment:
392
+ Captain\",\"gold\":{\"base\":600,\"total\":1500,\"sell\":1050,\"purchasable\":true},\"group\":\"BootsCaptain\",\"description\":\"<groupLimit>Limited
393
+ to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Captain
394
+ bonus.<br><br><unique>UNIQUE Passive - Captain:</unique> Grants +10% Movement
395
+ Speed to nearby approaching allied champions. Grants nearby minions +20% Movement
396
+ Speed.<br><br><i>(Unique Passives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"Limited
397
+ to 1 of each enchantment type. Enchants boots to have Captain bonus. UNIQUE
398
+ Passive - Captain: Grants +10% Movement Speed to nearby approaching allied
399
+ champions. Grants nearby minions +20% Movement Speed. (Unique Passives with
400
+ the same name don't stack.)\",\"depth\":3,\"from\":[\"3006\"],\"hideFromAll\":true,\"image\":{\"full\":\"3251.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":432,\"y\":288,\"w\":48,\"h\":48},\"stats\":{\"FlatMovementSpeedMod\":45.0,\"PercentAttackSpeedMod\":0.2}},\"3254\":{\"id\":3254,\"name\":\"Enchantment:
401
+ Alacrity\",\"gold\":{\"base\":475,\"total\":1375,\"sell\":962,\"purchasable\":true},\"group\":\"BootsAlacrity\",\"description\":\"<groupLimit>Limited
402
+ to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Alacrity
403
+ bonus. <br><br><unique>UNIQUE Passive - Alacrity:</unique> +20 Movement Speed<br><br><i>(Unique
404
+ Passives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"Limited
405
+ to 1 of each enchantment type. Enchants boots to have Alacrity bonus. UNIQUE
406
+ Passive - Alacrity: +20 Movement Speed (Unique Passives with the same name
407
+ don't stack.)\",\"depth\":3,\"from\":[\"3006\"],\"hideFromAll\":true,\"image\":{\"full\":\"3254.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":96,\"y\":336,\"w\":48,\"h\":48},\"stats\":{\"FlatMovementSpeedMod\":65.0,\"PercentAttackSpeedMod\":0.2}},\"3255\":{\"id\":3255,\"name\":\"Enchantment:
408
+ Homeguard\",\"gold\":{\"base\":475,\"total\":1575,\"sell\":1103,\"purchasable\":true},\"group\":\"BootsHomeguard\",\"description\":\"<groupLimit>Limited
409
+ to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Homeguard
410
+ bonus.<br><br><unique>UNIQUE Passive - Homeguard:</unique> Visiting the shop
411
+ vastly increases Health and Mana regeneration and grants 200% bonus Movement
412
+ Speed that decays over 8 seconds. Bonus Movement Speed and Regeneration are
413
+ disabled for 6 seconds upon dealing or taking damage.<br><br><i>(Unique Passives
414
+ with the same name don't stack.)</i>\",\"sanitizedDescription\":\"Limited
415
+ to 1 of each enchantment type. Enchants boots to have Homeguard bonus. UNIQUE
416
+ Passive - Homeguard: Visiting the shop vastly increases Health and Mana regeneration
417
+ and grants 200% bonus Movement Speed that decays over 8 seconds. Bonus Movement
418
+ Speed and Regeneration are disabled for 6 seconds upon dealing or taking damage.
419
+ (Unique Passives with the same name don't stack.)\",\"depth\":3,\"from\":[\"3020\"],\"hideFromAll\":true,\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3255.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":144,\"y\":336,\"w\":48,\"h\":48},\"stats\":{\"FlatMovementSpeedMod\":45.0}},\"3252\":{\"id\":3252,\"name\":\"Enchantment:
420
+ Furor\",\"gold\":{\"base\":475,\"total\":1375,\"sell\":962,\"purchasable\":true},\"group\":\"BootsFuror\",\"description\":\"<groupLimit>Limited
421
+ to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Furor
422
+ bonus.<br><br><unique>UNIQUE Passive - Furor:</unique> Upon dealing damage
423
+ with a single target spell or attack (on hit), grants +12% Movement Speed
424
+ that decays over 2 seconds.<br><br><i>(Unique Passives with the same name
425
+ don't stack.)</i>\",\"sanitizedDescription\":\"Limited to 1 of each enchantment
426
+ type. Enchants boots to have Furor bonus. UNIQUE Passive - Furor: Upon dealing
427
+ damage with a single target spell or attack (on hit), grants +12% Movement
428
+ Speed that decays over 2 seconds. (Unique Passives with the same name don't
429
+ stack.)\",\"depth\":3,\"from\":[\"3006\"],\"hideFromAll\":true,\"image\":{\"full\":\"3252.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":0,\"y\":336,\"w\":48,\"h\":48},\"stats\":{\"FlatMovementSpeedMod\":45.0,\"PercentAttackSpeedMod\":0.2}},\"3253\":{\"id\":3253,\"name\":\"Enchantment:
430
+ Distortion\",\"gold\":{\"base\":475,\"total\":1375,\"sell\":962,\"purchasable\":true},\"group\":\"BootsDistortion\",\"description\":\"<groupLimit>Limited
431
+ to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Distortion
432
+ bonus.<br><br><unique>UNIQUE Passive - Distortion:</unique> Teleport, Flash,
433
+ and Ghost summoner spell cooldowns are reduced by 20% and are granted additional
434
+ mobility: <br><br><font color='#FFDD00'>Ghost:</font> Grants 40% Movement
435
+ Speed from 27%.<br><font color='#FFDD00'>Flash:</font> 20% Movement Speed
436
+ bonus for 1 second after cast.<br><font color='#FFDD00'>Teleport:</font> 30%
437
+ Movement Speed bonus for 3 seconds after use.<br><br><i>(Unique Passives with
438
+ the same name don't stack.)</i>\",\"sanitizedDescription\":\"Limited to 1
439
+ of each enchantment type. Enchants boots to have Distortion bonus. UNIQUE
440
+ Passive - Distortion: Teleport, Flash, and Ghost summoner spell cooldowns
441
+ are reduced by 20% and are granted additional mobility: Ghost: Grants 40%
442
+ Movement Speed from 27%. Flash: 20% Movement Speed bonus for 1 second after
443
+ cast. Teleport: 30% Movement Speed bonus for 3 seconds after use. (Unique
444
+ Passives with the same name don't stack.)\",\"depth\":3,\"from\":[\"3006\"],\"hideFromAll\":true,\"image\":{\"full\":\"3253.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":48,\"y\":336,\"w\":48,\"h\":48},\"stats\":{\"FlatMovementSpeedMod\":45.0,\"PercentAttackSpeedMod\":0.2}},\"3263\":{\"id\":3263,\"name\":\"Enchantment:
445
+ Distortion\",\"gold\":{\"base\":475,\"total\":1475,\"sell\":1033,\"purchasable\":true},\"group\":\"BootsDistortion\",\"description\":\"<groupLimit>Limited
446
+ to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Distortion
447
+ bonus.<br><br><unique>UNIQUE Passive - Distortion:</unique> Teleport, Flash,
448
+ and Ghost summoner spell cooldowns are reduced by 20% and are granted additional
449
+ mobility: <br><br><font color='#FFDD00'>Ghost:</font> Grants 40% Movement
450
+ Speed from 27%.<br><font color='#FFDD00'>Flash:</font> 20% Movement Speed
451
+ bonus for 1 second after cast.<br><font color='#FFDD00'>Teleport:</font> 30%
452
+ Movement Speed bonus for 3 seconds after use.<br><br><i>(Unique Passives with
453
+ the same name don't stack.)</i>\",\"sanitizedDescription\":\"Limited to 1
454
+ of each enchantment type. Enchants boots to have Distortion bonus. UNIQUE
455
+ Passive - Distortion: Teleport, Flash, and Ghost summoner spell cooldowns
456
+ are reduced by 20% and are granted additional mobility: Ghost: Grants 40%
457
+ Movement Speed from 27%. Flash: 20% Movement Speed bonus for 1 second after
458
+ cast. Teleport: 30% Movement Speed bonus for 3 seconds after use. (Unique
459
+ Passives with the same name don't stack.)\",\"depth\":3,\"from\":[\"3047\"],\"hideFromAll\":true,\"image\":{\"full\":\"3263.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":48,\"y\":384,\"w\":48,\"h\":48},\"stats\":{\"FlatArmorMod\":25.0,\"FlatMovementSpeedMod\":45.0}},\"3264\":{\"id\":3264,\"name\":\"Enchantment:
460
+ Alacrity\",\"gold\":{\"base\":475,\"total\":1475,\"sell\":1033,\"purchasable\":true},\"group\":\"BootsAlacrity\",\"description\":\"<groupLimit>Limited
461
+ to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Alacrity
462
+ bonus. <br><br><unique>UNIQUE Passive - Alacrity:</unique> +20 Movement Speed<br><br><i>(Unique
463
+ Passives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"Limited
464
+ to 1 of each enchantment type. Enchants boots to have Alacrity bonus. UNIQUE
465
+ Passive - Alacrity: +20 Movement Speed (Unique Passives with the same name
466
+ don't stack.)\",\"depth\":3,\"from\":[\"3047\"],\"hideFromAll\":true,\"image\":{\"full\":\"3264.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":96,\"y\":384,\"w\":48,\"h\":48},\"stats\":{\"FlatArmorMod\":25.0,\"FlatMovementSpeedMod\":65.0}},\"3265\":{\"id\":3265,\"name\":\"Enchantment:
467
+ Homeguard\",\"gold\":{\"base\":475,\"total\":1675,\"sell\":1173,\"purchasable\":true},\"group\":\"BootsHomeguard\",\"description\":\"<groupLimit>Limited
468
+ to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Homeguard
469
+ bonus.<br><br><unique>UNIQUE Passive - Homeguard:</unique> Visiting the shop
470
+ vastly increases Health and Mana regeneration and grants 200% bonus Movement
471
+ Speed that decays over 8 seconds. Bonus Movement Speed and Regeneration are
472
+ disabled for 6 seconds upon dealing or taking damage.<br><br><i>(Unique Passives
473
+ with the same name don't stack.)</i>\",\"sanitizedDescription\":\"Limited
474
+ to 1 of each enchantment type. Enchants boots to have Homeguard bonus. UNIQUE
475
+ Passive - Homeguard: Visiting the shop vastly increases Health and Mana regeneration
476
+ and grants 200% bonus Movement Speed that decays over 8 seconds. Bonus Movement
477
+ Speed and Regeneration are disabled for 6 seconds upon dealing or taking damage.
478
+ (Unique Passives with the same name don't stack.)\",\"depth\":3,\"from\":[\"3111\"],\"hideFromAll\":true,\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3265.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":144,\"y\":384,\"w\":48,\"h\":48},\"stats\":{\"FlatMovementSpeedMod\":45.0,\"FlatSpellBlockMod\":25.0}},\"3266\":{\"id\":3266,\"name\":\"Enchantment:
479
+ Captain\",\"gold\":{\"base\":600,\"total\":1800,\"sell\":1260,\"purchasable\":true},\"group\":\"BootsCaptain\",\"description\":\"<groupLimit>Limited
480
+ to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Captain
481
+ bonus.<br><br><unique>UNIQUE Passive - Captain:</unique> Grants +10% Movement
482
+ Speed to nearby approaching allied champions. Grants nearby minions +20% Movement
483
+ Speed.<br><br><i>(Unique Passives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"Limited
484
+ to 1 of each enchantment type. Enchants boots to have Captain bonus. UNIQUE
485
+ Passive - Captain: Grants +10% Movement Speed to nearby approaching allied
486
+ champions. Grants nearby minions +20% Movement Speed. (Unique Passives with
487
+ the same name don't stack.)\",\"depth\":3,\"from\":[\"3111\"],\"hideFromAll\":true,\"image\":{\"full\":\"3266.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":192,\"y\":384,\"w\":48,\"h\":48},\"stats\":{\"FlatMovementSpeedMod\":45.0,\"FlatSpellBlockMod\":25.0}},\"3260\":{\"id\":3260,\"name\":\"Enchantment:
488
+ Homeguard\",\"gold\":{\"base\":475,\"total\":1475,\"sell\":1033,\"purchasable\":true},\"group\":\"BootsHomeguard\",\"description\":\"<groupLimit>Limited
489
+ to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Homeguard
490
+ bonus.<br><br><unique>UNIQUE Passive - Homeguard:</unique> Visiting the shop
491
+ vastly increases Health and Mana regeneration and grants 200% bonus Movement
492
+ Speed that decays over 8 seconds. Bonus Movement Speed and Regeneration are
493
+ disabled for 6 seconds upon dealing or taking damage.<br><br><i>(Unique Passives
494
+ with the same name don't stack.)</i>\",\"sanitizedDescription\":\"Limited
495
+ to 1 of each enchantment type. Enchants boots to have Homeguard bonus. UNIQUE
496
+ Passive - Homeguard: Visiting the shop vastly increases Health and Mana regeneration
497
+ and grants 200% bonus Movement Speed that decays over 8 seconds. Bonus Movement
498
+ Speed and Regeneration are disabled for 6 seconds upon dealing or taking damage.
499
+ (Unique Passives with the same name don't stack.)\",\"depth\":3,\"from\":[\"3047\"],\"hideFromAll\":true,\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3260.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":384,\"y\":336,\"w\":48,\"h\":48},\"stats\":{\"FlatArmorMod\":25.0,\"FlatMovementSpeedMod\":45.0}},\"3261\":{\"id\":3261,\"name\":\"Enchantment:
500
+ Captain\",\"gold\":{\"base\":600,\"total\":1600,\"sell\":1120,\"purchasable\":true},\"group\":\"BootsCaptain\",\"description\":\"<groupLimit>Limited
501
+ to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Captain
502
+ bonus.<br><br><unique>UNIQUE Passive - Captain:</unique> Grants +10% Movement
503
+ Speed to nearby approaching allied champions. Grants nearby minions +20% Movement
504
+ Speed.<br><br><i>(Unique Passives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"Limited
505
+ to 1 of each enchantment type. Enchants boots to have Captain bonus. UNIQUE
506
+ Passive - Captain: Grants +10% Movement Speed to nearby approaching allied
507
+ champions. Grants nearby minions +20% Movement Speed. (Unique Passives with
508
+ the same name don't stack.)\",\"depth\":3,\"from\":[\"3047\"],\"hideFromAll\":true,\"image\":{\"full\":\"3261.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":432,\"y\":336,\"w\":48,\"h\":48},\"stats\":{\"FlatArmorMod\":25.0,\"FlatMovementSpeedMod\":45.0}},\"3262\":{\"id\":3262,\"name\":\"Enchantment:
509
+ Furor\",\"gold\":{\"base\":475,\"total\":1475,\"sell\":1033,\"purchasable\":true},\"group\":\"BootsFuror\",\"description\":\"<groupLimit>Limited
510
+ to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Furor
511
+ bonus.<br><br><unique>UNIQUE Passive - Furor:</unique> Upon dealing damage
512
+ with a single target spell or attack (on hit), grants +12% Movement Speed
513
+ that decays over 2 seconds.<br><br><i>(Unique Passives with the same name
514
+ don't stack.)</i>\",\"sanitizedDescription\":\"Limited to 1 of each enchantment
515
+ type. Enchants boots to have Furor bonus. UNIQUE Passive - Furor: Upon dealing
516
+ damage with a single target spell or attack (on hit), grants +12% Movement
517
+ Speed that decays over 2 seconds. (Unique Passives with the same name don't
518
+ stack.)\",\"depth\":3,\"from\":[\"3047\"],\"hideFromAll\":true,\"image\":{\"full\":\"3262.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":0,\"y\":384,\"w\":48,\"h\":48},\"stats\":{\"FlatArmorMod\":25.0,\"FlatMovementSpeedMod\":45.0}},\"3361\":{\"id\":3361,\"name\":\"Greater
519
+ Stealth Totem (Trinket)\",\"gold\":{\"base\":475,\"total\":475,\"sell\":333,\"purchasable\":true},\"group\":\"RelicBase\",\"description\":\"<groupLimit>Limited
520
+ to 1 Trinket.</groupLimit><stats> Level 9+ required to upgrade.</stats><br><br><unique>UNIQUE
521
+ Active:</unique> Places an invisible ward that reveals the surrounding area
522
+ for 180 seconds (120 second cooldown). Limit 3 <font color='#BBFFFF'>Stealth
523
+ Ward</font> on the map per player.<br><br><i>(Trinkets cannot be used in the
524
+ first 120 seconds of a game. Selling a Trinket will disable Trinket use for
525
+ 120 seconds.)</i>\",\"sanitizedDescription\":\"Limited to 1 Trinket. Level
526
+ 9+ required to upgrade. UNIQUE Active: Places an invisible ward that reveals
527
+ the surrounding area for 180 seconds (120 second cooldown). Limit 3 Stealth
528
+ Ward on the map per player. (Trinkets cannot be used in the first 120 seconds
529
+ of a game. Selling a Trinket will disable Trinket use for 120 seconds.)\",\"plaintext\":\"Periodically
530
+ place a Stealth Ward\",\"depth\":2,\"from\":[\"3340\"],\"tags\":[\"Active\",\"Vision\",\"Trinket\"],\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3361.png\",\"sprite\":\"item2.png\",\"group\":\"item\",\"x\":144,\"y\":48,\"w\":48,\"h\":48},\"stats\":{}},\"3362\":{\"id\":3362,\"name\":\"Greater
531
+ Vision Totem (Trinket)\",\"gold\":{\"base\":475,\"total\":475,\"sell\":333,\"purchasable\":true},\"group\":\"RelicBase\",\"description\":\"<groupLimit>Limited
532
+ to 1 Trinket.</groupLimit><stats> Level 9+ required to upgrade.</stats><br><br><unique>UNIQUE
533
+ Active:</unique> Places a visible ward that reveals the surrounding area and
534
+ invisible units in the area until killed (180 second cooldown). Limit 1 <font
535
+ color='#BBFFFF'>Vision Ward</font> on the map per player.<br><br><i>(Trinkets
536
+ cannot be used in the first 120 seconds of a game. Selling a Trinket will
537
+ disable Trinket use for 120 seconds.)</i>\",\"sanitizedDescription\":\"Limited
538
+ to 1 Trinket. Level 9+ required to upgrade. UNIQUE Active: Places a visible
539
+ ward that reveals the surrounding area and invisible units in the area until
540
+ killed (180 second cooldown). Limit 1 Vision Ward on the map per player. (Trinkets
541
+ cannot be used in the first 120 seconds of a game. Selling a Trinket will
542
+ disable Trinket use for 120 seconds.)\",\"plaintext\":\"Periodically place
543
+ a Vision Ward\",\"depth\":2,\"from\":[\"3340\"],\"tags\":[\"Active\",\"Vision\",\"Trinket\"],\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3362.png\",\"sprite\":\"item2.png\",\"group\":\"item\",\"x\":192,\"y\":48,\"w\":48,\"h\":48},\"stats\":{}},\"3363\":{\"id\":3363,\"name\":\"Farsight
544
+ Orb (Trinket)\",\"gold\":{\"base\":475,\"total\":475,\"sell\":333,\"purchasable\":true},\"group\":\"RelicBase\",\"description\":\"<groupLimit>Limited
545
+ to 1 Trinket.</groupLimit><stats> Level 9+ required to upgrade.</stats><br><br><unique>UNIQUE
546
+ Active:</unique> Reveals an area up to 4000 units away for 1 second. Enemy
547
+ champions found will be revealed for 5 seconds (90 second cooldown).<br><br><i>(Trinkets
548
+ cannot be used in the first 120 seconds of a game. Selling a Trinket will
549
+ disable Trinket use for 120 seconds.)</i>\",\"sanitizedDescription\":\"Limited
550
+ to 1 Trinket. Level 9+ required to upgrade. UNIQUE Active: Reveals an area
551
+ up to 4000 units away for 1 second. Enemy champions found will be revealed
552
+ for 5 seconds (90 second cooldown). (Trinkets cannot be used in the first
553
+ 120 seconds of a game. Selling a Trinket will disable Trinket use for 120
554
+ seconds.)\",\"plaintext\":\"Briefly reveals a targeted area\",\"depth\":2,\"from\":[\"3342\"],\"tags\":[\"Active\",\"Vision\",\"Trinket\"],\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3363.png\",\"sprite\":\"item2.png\",\"group\":\"item\",\"x\":240,\"y\":48,\"w\":48,\"h\":48},\"stats\":{}},\"3364\":{\"id\":3364,\"name\":\"Oracle's
555
+ Lens (Trinket)\",\"gold\":{\"base\":475,\"total\":475,\"sell\":333,\"purchasable\":true},\"group\":\"RelicBase\",\"description\":\"<groupLimit>Limited
556
+ to 1 Trinket.</groupLimit><stats> Level 9+ required to upgrade.</stats><br><br><unique>UNIQUE
557
+ Active:</unique> Reveals and disables nearby invisible traps, devices and
558
+ wards for 6 seconds in a medium radius and grants detection of nearby invisible
559
+ units for 10 seconds (60 second cooldown.)<br><br><i>(Trinkets cannot be used
560
+ in the first 120 seconds of a game. Selling a Trinket will disable Trinket
561
+ use for 120 seconds.)</i>\",\"sanitizedDescription\":\"Limited to 1 Trinket.
562
+ Level 9+ required to upgrade. UNIQUE Active: Reveals and disables nearby invisible
563
+ traps, devices and wards for 6 seconds in a medium radius and grants detection
564
+ of nearby invisible units for 10 seconds (60 second cooldown.) (Trinkets cannot
565
+ be used in the first 120 seconds of a game. Selling a Trinket will disable
566
+ Trinket use for 120 seconds.)\",\"plaintext\":\"Disables nearby invisible
567
+ wards and trap and grants true sight briefly\",\"depth\":2,\"from\":[\"3341\"],\"tags\":[\"Active\",\"Vision\",\"Trinket\"],\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3364.png\",\"sprite\":\"item2.png\",\"group\":\"item\",\"x\":288,\"y\":48,\"w\":48,\"h\":48},\"stats\":{}},\"3257\":{\"id\":3257,\"name\":\"Enchantment:
568
+ Furor\",\"gold\":{\"base\":475,\"total\":1575,\"sell\":1103,\"purchasable\":true},\"group\":\"BootsFuror\",\"description\":\"<groupLimit>Limited
569
+ to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Furor
570
+ bonus.<br><br><unique>UNIQUE Passive - Furor:</unique> Upon dealing damage
571
+ with a single target spell or attack (on hit), grants +12% Movement Speed
572
+ that decays over 2 seconds.<br><br><i>(Unique Passives with the same name
573
+ don't stack.)</i>\",\"sanitizedDescription\":\"Limited to 1 of each enchantment
574
+ type. Enchants boots to have Furor bonus. UNIQUE Passive - Furor: Upon dealing
575
+ damage with a single target spell or attack (on hit), grants +12% Movement
576
+ Speed that decays over 2 seconds. (Unique Passives with the same name don't
577
+ stack.)\",\"depth\":3,\"from\":[\"3020\"],\"hideFromAll\":true,\"image\":{\"full\":\"3257.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":240,\"y\":336,\"w\":48,\"h\":48},\"stats\":{\"FlatMovementSpeedMod\":45.0}},\"3256\":{\"id\":3256,\"name\":\"Enchantment:
578
+ Captain\",\"gold\":{\"base\":600,\"total\":1700,\"sell\":1190,\"purchasable\":true},\"group\":\"BootsCaptain\",\"description\":\"<groupLimit>Limited
579
+ to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Captain
580
+ bonus.<br><br><unique>UNIQUE Passive - Captain:</unique> Grants +10% Movement
581
+ Speed to nearby approaching allied champions. Grants nearby minions +20% Movement
582
+ Speed.<br><br><i>(Unique Passives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"Limited
583
+ to 1 of each enchantment type. Enchants boots to have Captain bonus. UNIQUE
584
+ Passive - Captain: Grants +10% Movement Speed to nearby approaching allied
585
+ champions. Grants nearby minions +20% Movement Speed. (Unique Passives with
586
+ the same name don't stack.)\",\"depth\":3,\"from\":[\"3020\"],\"hideFromAll\":true,\"image\":{\"full\":\"3256.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":192,\"y\":336,\"w\":48,\"h\":48},\"stats\":{\"FlatMovementSpeedMod\":45.0}},\"3259\":{\"id\":3259,\"name\":\"Enchantment:
587
+ Alacrity\",\"gold\":{\"base\":475,\"total\":1575,\"sell\":1103,\"purchasable\":true},\"group\":\"BootsAlacrity\",\"description\":\"<groupLimit>Limited
588
+ to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Alacrity
589
+ bonus. <br><br><unique>UNIQUE Passive - Alacrity:</unique> +20 Movement Speed<br><br><i>(Unique
590
+ Passives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"Limited
591
+ to 1 of each enchantment type. Enchants boots to have Alacrity bonus. UNIQUE
592
+ Passive - Alacrity: +20 Movement Speed (Unique Passives with the same name
593
+ don't stack.)\",\"depth\":3,\"from\":[\"3020\"],\"hideFromAll\":true,\"image\":{\"full\":\"3259.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":336,\"y\":336,\"w\":48,\"h\":48},\"stats\":{\"FlatMovementSpeedMod\":65.0}},\"3258\":{\"id\":3258,\"name\":\"Enchantment:
594
+ Distortion\",\"gold\":{\"base\":475,\"total\":1575,\"sell\":1103,\"purchasable\":true},\"group\":\"BootsDistortion\",\"description\":\"<groupLimit>Limited
595
+ to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Distortion
596
+ bonus.<br><br><unique>UNIQUE Passive - Distortion:</unique> Teleport, Flash,
597
+ and Ghost summoner spell cooldowns are reduced by 20% and are granted additional
598
+ mobility: <br><br><font color='#FFDD00'>Ghost:</font> Grants 40% Movement
599
+ Speed from 27%.<br><font color='#FFDD00'>Flash:</font> 20% Movement Speed
600
+ bonus for 1 second after cast.<br><font color='#FFDD00'>Teleport:</font> 30%
601
+ Movement Speed bonus for 3 seconds after use.<br><br><i>(Unique Passives with
602
+ the same name don't stack.)</i>\",\"sanitizedDescription\":\"Limited to 1
603
+ of each enchantment type. Enchants boots to have Distortion bonus. UNIQUE
604
+ Passive - Distortion: Teleport, Flash, and Ghost summoner spell cooldowns
605
+ are reduced by 20% and are granted additional mobility: Ghost: Grants 40%
606
+ Movement Speed from 27%. Flash: 20% Movement Speed bonus for 1 second after
607
+ cast. Teleport: 30% Movement Speed bonus for 3 seconds after use. (Unique
608
+ Passives with the same name don't stack.)\",\"depth\":3,\"from\":[\"3020\"],\"hideFromAll\":true,\"image\":{\"full\":\"3258.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":288,\"y\":336,\"w\":48,\"h\":48},\"stats\":{\"FlatMovementSpeedMod\":45.0}},\"3276\":{\"id\":3276,\"name\":\"Enchantment:
609
+ Captain\",\"gold\":{\"base\":600,\"total\":1600,\"sell\":1120,\"purchasable\":true},\"group\":\"BootsCaptain\",\"description\":\"<groupLimit>Limited
610
+ to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Captain
611
+ bonus.<br><br><unique>UNIQUE Passive - Captain:</unique> Grants +10% Movement
612
+ Speed to nearby approaching allied champions. Grants nearby minions +20% Movement
613
+ Speed.<br><br><i>(Unique Passives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"Limited
614
+ to 1 of each enchantment type. Enchants boots to have Captain bonus. UNIQUE
615
+ Passive - Captain: Grants +10% Movement Speed to nearby approaching allied
616
+ champions. Grants nearby minions +20% Movement Speed. (Unique Passives with
617
+ the same name don't stack.)\",\"depth\":3,\"from\":[\"3158\"],\"hideFromAll\":true,\"image\":{\"full\":\"3276.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":192,\"y\":432,\"w\":48,\"h\":48},\"stats\":{\"FlatMovementSpeedMod\":45.0}},\"3277\":{\"id\":3277,\"name\":\"Enchantment:
618
+ Furor\",\"gold\":{\"base\":475,\"total\":1475,\"sell\":1033,\"purchasable\":true},\"group\":\"BootsFuror\",\"description\":\"<groupLimit>Limited
619
+ to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Furor
620
+ bonus.<br><br><unique>UNIQUE Passive - Furor:</unique> Upon dealing damage
621
+ with a single target spell or attack (on hit), grants +12% Movement Speed
622
+ that decays over 2 seconds.<br><br><i>(Unique Passives with the same name
623
+ don't stack.)</i>\",\"sanitizedDescription\":\"Limited to 1 of each enchantment
624
+ type. Enchants boots to have Furor bonus. UNIQUE Passive - Furor: Upon dealing
625
+ damage with a single target spell or attack (on hit), grants +12% Movement
626
+ Speed that decays over 2 seconds. (Unique Passives with the same name don't
627
+ stack.)\",\"depth\":3,\"from\":[\"3158\"],\"hideFromAll\":true,\"image\":{\"full\":\"3277.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":240,\"y\":432,\"w\":48,\"h\":48},\"stats\":{\"FlatMovementSpeedMod\":45.0}},\"3274\":{\"id\":3274,\"name\":\"Enchantment:
628
+ Alacrity\",\"gold\":{\"base\":475,\"total\":1275,\"sell\":893,\"purchasable\":true},\"group\":\"BootsAlacrity\",\"description\":\"<groupLimit>Limited
629
+ to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Alacrity
630
+ bonus. <br><br><unique>UNIQUE Passive - Alacrity:</unique> +20 Movement Speed<br><br><i>(Unique
631
+ Passives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"Limited
632
+ to 1 of each enchantment type. Enchants boots to have Alacrity bonus. UNIQUE
633
+ Passive - Alacrity: +20 Movement Speed (Unique Passives with the same name
634
+ don't stack.)\",\"depth\":3,\"from\":[\"3117\"],\"hideFromAll\":true,\"image\":{\"full\":\"3274.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":96,\"y\":432,\"w\":48,\"h\":48},\"stats\":{\"FlatMovementSpeedMod\":125.0}},\"3275\":{\"id\":3275,\"name\":\"Enchantment:
635
+ Homeguard\",\"gold\":{\"base\":475,\"total\":1475,\"sell\":1033,\"purchasable\":true},\"group\":\"BootsHomeguard\",\"description\":\"<groupLimit>Limited
636
+ to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Homeguard
637
+ bonus.<br><br><unique>UNIQUE Passive - Homeguard:</unique> Visiting the shop
638
+ vastly increases Health and Mana regeneration and grants 200% bonus Movement
639
+ Speed that decays over 8 seconds. Bonus Movement Speed and Regeneration are
640
+ disabled for 6 seconds upon dealing or taking damage.<br><br><i>(Unique Passives
641
+ with the same name don't stack.)</i>\",\"sanitizedDescription\":\"Limited
642
+ to 1 of each enchantment type. Enchants boots to have Homeguard bonus. UNIQUE
643
+ Passive - Homeguard: Visiting the shop vastly increases Health and Mana regeneration
644
+ and grants 200% bonus Movement Speed that decays over 8 seconds. Bonus Movement
645
+ Speed and Regeneration are disabled for 6 seconds upon dealing or taking damage.
646
+ (Unique Passives with the same name don't stack.)\",\"depth\":3,\"from\":[\"3158\"],\"hideFromAll\":true,\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3275.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":144,\"y\":432,\"w\":48,\"h\":48},\"stats\":{\"FlatMovementSpeedMod\":45.0}},\"3272\":{\"id\":3272,\"name\":\"Enchantment:
647
+ Furor\",\"gold\":{\"base\":475,\"total\":1275,\"sell\":893,\"purchasable\":true},\"group\":\"BootsFuror\",\"description\":\"<groupLimit>Limited
648
+ to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Furor
649
+ bonus.<br><br><unique>UNIQUE Passive - Furor:</unique> Upon dealing damage
650
+ with a single target spell or attack (on hit), grants +12% Movement Speed
651
+ that decays over 2 seconds.<br><br><i>(Unique Passives with the same name
652
+ don't stack.)</i>\",\"sanitizedDescription\":\"Limited to 1 of each enchantment
653
+ type. Enchants boots to have Furor bonus. UNIQUE Passive - Furor: Upon dealing
654
+ damage with a single target spell or attack (on hit), grants +12% Movement
655
+ Speed that decays over 2 seconds. (Unique Passives with the same name don't
656
+ stack.)\",\"depth\":3,\"from\":[\"3117\"],\"hideFromAll\":true,\"image\":{\"full\":\"3272.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":0,\"y\":432,\"w\":48,\"h\":48},\"stats\":{\"FlatMovementSpeedMod\":105.0}},\"3273\":{\"id\":3273,\"name\":\"Enchantment:
657
+ Distortion\",\"gold\":{\"base\":475,\"total\":1275,\"sell\":893,\"purchasable\":true},\"group\":\"BootsDistortion\",\"description\":\"<groupLimit>Limited
658
+ to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Distortion
659
+ bonus.<br><br><unique>UNIQUE Passive - Distortion:</unique> Teleport, Flash,
660
+ and Ghost summoner spell cooldowns are reduced by 20% and are granted additional
661
+ mobility: <br><br><font color='#FFDD00'>Ghost:</font> Grants 40% Movement
662
+ Speed from 27%.<br><font color='#FFDD00'>Flash:</font> 20% Movement Speed
663
+ bonus for 1 second after cast.<br><font color='#FFDD00'>Teleport:</font> 30%
664
+ Movement Speed bonus for 3 seconds after use.<br><br><i>(Unique Passives with
665
+ the same name don't stack.)</i>\",\"sanitizedDescription\":\"Limited to 1
666
+ of each enchantment type. Enchants boots to have Distortion bonus. UNIQUE
667
+ Passive - Distortion: Teleport, Flash, and Ghost summoner spell cooldowns
668
+ are reduced by 20% and are granted additional mobility: Ghost: Grants 40%
669
+ Movement Speed from 27%. Flash: 20% Movement Speed bonus for 1 second after
670
+ cast. Teleport: 30% Movement Speed bonus for 3 seconds after use. (Unique
671
+ Passives with the same name don't stack.)\",\"depth\":3,\"from\":[\"3117\"],\"hideFromAll\":true,\"image\":{\"full\":\"3273.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":48,\"y\":432,\"w\":48,\"h\":48},\"stats\":{\"FlatMovementSpeedMod\":105.0}},\"3270\":{\"id\":3270,\"name\":\"Enchantment:
672
+ Homeguard\",\"gold\":{\"base\":475,\"total\":1275,\"sell\":893,\"purchasable\":true},\"group\":\"BootsHomeguard\",\"description\":\"<groupLimit>Limited
673
+ to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Homeguard
674
+ bonus.<br><br><unique>UNIQUE Passive - Homeguard:</unique> Visiting the shop
675
+ vastly increases Health and Mana regeneration and grants 200% bonus Movement
676
+ Speed that decays over 8 seconds. Bonus Movement Speed and Regeneration are
677
+ disabled for 6 seconds upon dealing or taking damage.<br><br><i>(Unique Passives
678
+ with the same name don't stack.)</i>\",\"sanitizedDescription\":\"Limited
679
+ to 1 of each enchantment type. Enchants boots to have Homeguard bonus. UNIQUE
680
+ Passive - Homeguard: Visiting the shop vastly increases Health and Mana regeneration
681
+ and grants 200% bonus Movement Speed that decays over 8 seconds. Bonus Movement
682
+ Speed and Regeneration are disabled for 6 seconds upon dealing or taking damage.
683
+ (Unique Passives with the same name don't stack.)\",\"depth\":3,\"from\":[\"3117\"],\"hideFromAll\":true,\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3270.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":384,\"y\":384,\"w\":48,\"h\":48},\"stats\":{\"FlatMovementSpeedMod\":105.0}},\"3271\":{\"id\":3271,\"name\":\"Enchantment:
684
+ Captain\",\"gold\":{\"base\":600,\"total\":1400,\"sell\":980,\"purchasable\":true},\"group\":\"BootsCaptain\",\"description\":\"<groupLimit>Limited
685
+ to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Captain
686
+ bonus.<br><br><unique>UNIQUE Passive - Captain:</unique> Grants +10% Movement
687
+ Speed to nearby approaching allied champions. Grants nearby minions +20% Movement
688
+ Speed.<br><br><i>(Unique Passives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"Limited
689
+ to 1 of each enchantment type. Enchants boots to have Captain bonus. UNIQUE
690
+ Passive - Captain: Grants +10% Movement Speed to nearby approaching allied
691
+ champions. Grants nearby minions +20% Movement Speed. (Unique Passives with
692
+ the same name don't stack.)\",\"depth\":3,\"from\":[\"3117\"],\"hideFromAll\":true,\"image\":{\"full\":\"3271.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":432,\"y\":384,\"w\":48,\"h\":48},\"stats\":{\"FlatMovementSpeedMod\":105.0}},\"3269\":{\"id\":3269,\"name\":\"Enchantment:
693
+ Alacrity\",\"gold\":{\"base\":475,\"total\":1675,\"sell\":1173,\"purchasable\":true},\"group\":\"BootsAlacrity\",\"description\":\"<groupLimit>Limited
694
+ to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Alacrity
695
+ bonus. <br><br><unique>UNIQUE Passive - Alacrity:</unique> +20 Movement Speed<br><br><i>(Unique
696
+ Passives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"Limited
697
+ to 1 of each enchantment type. Enchants boots to have Alacrity bonus. UNIQUE
698
+ Passive - Alacrity: +20 Movement Speed (Unique Passives with the same name
699
+ don't stack.)\",\"depth\":3,\"from\":[\"3111\"],\"hideFromAll\":true,\"image\":{\"full\":\"3269.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":336,\"y\":384,\"w\":48,\"h\":48},\"stats\":{\"FlatMovementSpeedMod\":60.0,\"FlatSpellBlockMod\":25.0}},\"3268\":{\"id\":3268,\"name\":\"Enchantment:
700
+ Distortion\",\"gold\":{\"base\":475,\"total\":1675,\"sell\":1173,\"purchasable\":true},\"group\":\"BootsDistortion\",\"description\":\"<groupLimit>Limited
701
+ to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Distortion
702
+ bonus.<br><br><unique>UNIQUE Passive - Distortion:</unique> Teleport, Flash,
703
+ and Ghost summoner spell cooldowns are reduced by 20% and are granted additional
704
+ mobility: <br><br><font color='#FFDD00'>Ghost:</font> Grants 40% Movement
705
+ Speed from 27%.<br><font color='#FFDD00'>Flash:</font> 20% Movement Speed
706
+ bonus for 1 second after cast.<br><font color='#FFDD00'>Teleport:</font> 30%
707
+ Movement Speed bonus for 3 seconds after use.<br><br><i>(Unique Passives with
708
+ the same name don't stack.)</i>\",\"sanitizedDescription\":\"Limited to 1
709
+ of each enchantment type. Enchants boots to have Distortion bonus. UNIQUE
710
+ Passive - Distortion: Teleport, Flash, and Ghost summoner spell cooldowns
711
+ are reduced by 20% and are granted additional mobility: Ghost: Grants 40%
712
+ Movement Speed from 27%. Flash: 20% Movement Speed bonus for 1 second after
713
+ cast. Teleport: 30% Movement Speed bonus for 3 seconds after use. (Unique
714
+ Passives with the same name don't stack.)\",\"depth\":3,\"from\":[\"3111\"],\"hideFromAll\":true,\"image\":{\"full\":\"3268.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":288,\"y\":384,\"w\":48,\"h\":48},\"stats\":{\"FlatMovementSpeedMod\":45.0,\"FlatSpellBlockMod\":25.0}},\"3267\":{\"id\":3267,\"name\":\"Enchantment:
715
+ Furor\",\"gold\":{\"base\":475,\"total\":1675,\"sell\":1173,\"purchasable\":true},\"group\":\"BootsFuror\",\"description\":\"<groupLimit>Limited
716
+ to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Furor
717
+ bonus.<br><br><unique>UNIQUE Passive - Furor:</unique> Upon dealing damage
718
+ with a single target spell or attack (on hit), grants +12% Movement Speed
719
+ that decays over 2 seconds.<br><br><i>(Unique Passives with the same name
720
+ don't stack.)</i>\",\"sanitizedDescription\":\"Limited to 1 of each enchantment
721
+ type. Enchants boots to have Furor bonus. UNIQUE Passive - Furor: Upon dealing
722
+ damage with a single target spell or attack (on hit), grants +12% Movement
723
+ Speed that decays over 2 seconds. (Unique Passives with the same name don't
724
+ stack.)\",\"depth\":3,\"from\":[\"3111\"],\"hideFromAll\":true,\"image\":{\"full\":\"3267.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":240,\"y\":384,\"w\":48,\"h\":48},\"stats\":{\"FlatMovementSpeedMod\":45.0,\"FlatSpellBlockMod\":25.0}},\"1004\":{\"id\":1004,\"name\":\"Faerie
725
+ Charm\",\"gold\":{\"base\":180,\"total\":180,\"sell\":126,\"purchasable\":true},\"description\":\"<stats>+3
726
+ Mana Regen per 5 seconds</stats>\",\"sanitizedDescription\":\"+3 Mana Regen
727
+ per 5 seconds\",\"plaintext\":\"Slightly increases Mana Regen\",\"into\":[\"3152\",\"3028\",\"3070\",\"3073\",\"1080\",\"3114\"],\"tags\":[\"ManaRegen\"],\"image\":{\"full\":\"1004.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":48,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatMPRegenMod\":0.6}},\"1001\":{\"id\":1001,\"name\":\"Boots
728
+ of Speed\",\"gold\":{\"base\":325,\"total\":325,\"sell\":227,\"purchasable\":true},\"group\":\"BootsNormal\",\"description\":\"<groupLimit>Limited
729
+ to 1.</groupLimit><br><br><unique>UNIQUE Passive - Enhanced Movement:</unique>
730
+ +25 Movement Speed<br><br><i>(Unique Passives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"Limited
731
+ to 1. UNIQUE Passive - Enhanced Movement: +25 Movement Speed (Unique Passives
732
+ with the same name don't stack.)\",\"plaintext\":\"Slightly increases Movement
733
+ Speed\",\"into\":[\"3006\",\"3047\",\"3020\",\"3158\",\"3111\",\"3117\",\"3009\"],\"tags\":[\"Movement\",\"Boots\"],\"image\":{\"full\":\"1001.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":0,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatMovementSpeedMod\":25.0}},\"3146\":{\"id\":3146,\"name\":\"Hextech
734
+ Gunblade\",\"gold\":{\"base\":800,\"total\":3400,\"sell\":2380,\"purchasable\":true},\"description\":\"<stats>+45
735
+ Attack Damage<br>+65 Ability Power<br>+12% Life Steal</stats><br><br><unique>UNIQUE
736
+ Passive:</unique> +20% Spell Vamp<br><unique>UNIQUE Passive:</unique> Basic
737
+ attacks (on hit) and single-target spells against champions reduce the cooldown
738
+ of this item by 3 seconds.<br><active>UNIQUE Active:</active> Deals 150 (+40%
739
+ of Ability Power) magic damage and slows the target champion's Movement Speed
740
+ by 40% for 2 seconds (60 second cooldown).<br><br><i>(Spell Vamp: Abilities
741
+ heal for a percentage of the damage they deal. Area of Effect spells only
742
+ grant one-third of the healing from Spell Vamp.)</i>\",\"sanitizedDescription\":\"+45
743
+ Attack Damage +65 Ability Power +12% Life Steal UNIQUE Passive: +20% Spell
744
+ Vamp UNIQUE Passive: Basic attacks (on hit) and single-target spells against
745
+ champions reduce the cooldown of this item by 3 seconds. UNIQUE Active: Deals
746
+ 150 (+40% of Ability Power) magic damage and slows the target champion's Movement
747
+ Speed by 40% for 2 seconds (60 second cooldown). (Spell Vamp: Abilities heal
748
+ for a percentage of the damage they deal. Area of Effect spells only grant
749
+ one-third of the healing from Spell Vamp.)\",\"plaintext\":\"Increases Attack
750
+ Damage and Ability Power, activate to slow a target\",\"depth\":4,\"from\":[\"3144\",\"3145\"],\"tags\":[\"Damage\",\"LifeSteal\",\"SpellDamage\",\"SpellVamp\",\"Slow\",\"Active\"],\"image\":{\"full\":\"3146.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":48,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"FlatMagicDamageMod\":65.0,\"FlatPhysicalDamageMod\":45.0,\"PercentLifeStealMod\":0.12}},\"1006\":{\"id\":1006,\"name\":\"Rejuvenation
751
+ Bead\",\"gold\":{\"base\":180,\"total\":180,\"sell\":126,\"purchasable\":true},\"description\":\"<stats>+5
752
+ Health Regen per 5 seconds</stats>\",\"sanitizedDescription\":\"+5 Health
753
+ Regen per 5 seconds\",\"plaintext\":\"Slightly increases Health Regen\",\"into\":[\"3077\",\"3097\",\"3112\",\"3083\",\"1080\",\"2051\",\"3105\"],\"tags\":[\"HealthRegen\"],\"image\":{\"full\":\"1006.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":96,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatHPRegenMod\":1.0}},\"3005\":{\"id\":3005,\"name\":\"Atma's
754
+ Impaler\",\"gold\":{\"base\":780,\"total\":2300,\"sell\":1610,\"purchasable\":true},\"description\":\"<stats>+45
755
+ Armor<br>+15% Critical Strike Chance</stats><br><br><unique>UNIQUE Passive:</unique>
756
+ Grants bonus Attack Damage equal to 1.5% of maximum Health.\",\"sanitizedDescription\":\"+45
757
+ Armor +15% Critical Strike Chance UNIQUE Passive: Grants bonus Attack Damage
758
+ equal to 1.5% of maximum Health.\",\"plaintext\":\"Increases Attack Damage
759
+ based on maximum Health\",\"depth\":3,\"from\":[\"1031\",\"3093\"],\"tags\":[\"Armor\",\"Damage\",\"CriticalStrike\"],\"image\":{\"full\":\"3005.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":384,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatArmorMod\":45.0,\"FlatCritChanceMod\":0.15}},\"3006\":{\"id\":3006,\"name\":\"Berserker's
760
+ Greaves\",\"gold\":{\"base\":175,\"total\":900,\"sell\":630,\"purchasable\":true},\"description\":\"<stats>
761
+ +20% Attack Speed</stats><br><br><unique>UNIQUE Passive - Enhanced Movement:</unique>
762
+ +45 Movement Speed<br><br><i>(Unique Passives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"+20%
763
+ Attack Speed UNIQUE Passive - Enhanced Movement: +45 Movement Speed (Unique
764
+ Passives with the same name don't stack.)\",\"plaintext\":\"Enhances Movement
765
+ Speed and Attack Speed\",\"depth\":2,\"from\":[\"1001\",\"1042\"],\"into\":[\"3254\",\"3253\",\"3252\",\"3251\",\"3250\"],\"tags\":[\"AttackSpeed\",\"Movement\",\"Boots\"],\"image\":{\"full\":\"3006.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":432,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatMovementSpeedMod\":45.0,\"PercentAttackSpeedMod\":0.2}},\"3003\":{\"id\":3003,\"name\":\"Archangel's
766
+ Staff\",\"gold\":{\"base\":1140,\"total\":2700,\"sell\":1890,\"purchasable\":true},\"description\":\"<stats>+250
767
+ Mana<br>+60 Ability Power<br>+10 Mana Regen per 5 seconds</stats><br><br><unique>UNIQUE
768
+ Passive - Insight:</unique> Grants Ability Power equal to 3% of maximum Mana.<br><unique>UNIQUE
769
+ Passive - Mana Charge:</unique> Grants +8 maximum Mana (max +750 Mana) for
770
+ each spell cast and Mana expenditure (occurs up to 2 times every 8 seconds).
771
+ Transforms into Seraph's Embrace at +750 Mana.<br><br><i>(Unique Passives
772
+ with the same name don't stack.)</i>\",\"sanitizedDescription\":\"+250 Mana
773
+ +60 Ability Power +10 Mana Regen per 5 seconds UNIQUE Passive - Insight: Grants
774
+ Ability Power equal to 3% of maximum Mana. UNIQUE Passive - Mana Charge: Grants
775
+ +8 maximum Mana (max +750 Mana) for each spell cast and Mana expenditure (occurs
776
+ up to 2 times every 8 seconds). Transforms into Seraph's Embrace at +750 Mana.
777
+ (Unique Passives with the same name don't stack.)\",\"colloq\":\"aa\",\"plaintext\":\"Increases
778
+ Ability Power based on maximum Mana\",\"depth\":3,\"from\":[\"3070\",\"1026\"],\"into\":[\"3040\"],\"tags\":[\"SpellDamage\",\"Mana\",\"ManaRegen\"],\"maps\":{\"8\":false},\"image\":{\"full\":\"3003.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":288,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatMPPoolMod\":250.0,\"FlatMPRegenMod\":2.0,\"FlatMagicDamageMod\":60.0}},\"3004\":{\"id\":3004,\"name\":\"Manamune\",\"gold\":{\"base\":1040,\"total\":2100,\"sell\":1470,\"purchasable\":true},\"description\":\"<stats>+250
779
+ Mana<br>+20 Attack Damage<br>+7 Mana Regen per 5 seconds </stats><br><br><unique>UNIQUE
780
+ Passive - Awe:</unique> Grants bonus Attack Damage equal to 2% of maximum
781
+ Mana.<br><unique>UNIQUE Passive - Mana Charge:</unique> Grants +4 maximum
782
+ Mana (max +750 Mana) for each basic attack, spell cast, and Mana expenditure
783
+ (occurs up to 2 times every 8 seconds).<br><br>Transforms into Muramana at
784
+ +750 Mana.<br><br><i>(Unique Passives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"+250
785
+ Mana +20 Attack Damage +7 Mana Regen per 5 seconds UNIQUE Passive - Awe: Grants
786
+ bonus Attack Damage equal to 2% of maximum Mana. UNIQUE Passive - Mana Charge:
787
+ Grants +4 maximum Mana (max +750 Mana) for each basic attack, spell cast,
788
+ and Mana expenditure (occurs up to 2 times every 8 seconds). Transforms into
789
+ Muramana at +750 Mana. (Unique Passives with the same name don't stack.)\",\"plaintext\":\"Increases
790
+ Attack Damage based on maximum Mana\",\"depth\":3,\"from\":[\"3070\",\"1036\"],\"into\":[\"3042\"],\"tags\":[\"Damage\",\"Mana\",\"ManaRegen\",\"OnHit\"],\"maps\":{\"8\":false},\"image\":{\"full\":\"3004.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":336,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatMPPoolMod\":250.0,\"FlatMPRegenMod\":1.42,\"FlatPhysicalDamageMod\":20.0}},\"3009\":{\"id\":3009,\"name\":\"Boots
791
+ of Swiftness\",\"gold\":{\"base\":675,\"total\":1000,\"sell\":700,\"purchasable\":true},\"description\":\"<unique>UNIQUE
792
+ Passive - Enhanced Movement:</unique> +60 Movement Speed<br><unique>UNIQUE
793
+ Passive - Slow Resist:</unique> Movement slowing effects are reduced by 25%.<br><br><i>(Unique
794
+ Passives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"UNIQUE
795
+ Passive - Enhanced Movement: +60 Movement Speed UNIQUE Passive - Slow Resist:
796
+ Movement slowing effects are reduced by 25%. (Unique Passives with the same
797
+ name don't stack.)\",\"plaintext\":\"Enhances Movement Speed and reduces the
798
+ effect of slows\",\"depth\":2,\"from\":[\"1001\"],\"into\":[\"3284\",\"3283\",\"3282\",\"3281\",\"3280\"],\"tags\":[\"Movement\",\"Boots\"],\"image\":{\"full\":\"3009.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":96,\"y\":240,\"w\":48,\"h\":48},\"stats\":{\"FlatMovementSpeedMod\":60.0}},\"3007\":{\"id\":3007,\"name\":\"Archangel's
799
+ Staff (Crystal Scar)\",\"gold\":{\"base\":1140,\"total\":2700,\"sell\":1890,\"purchasable\":true},\"description\":\"<stats>+250
800
+ Mana<br>+60 Ability Power<br>+10 Mana Regen per 5 seconds</stats><br><br><unique>UNIQUE
801
+ Passive - Insight:</unique> Grants Ability Power equal to 3% of maximum Mana.<br><unique>UNIQUE
802
+ Passive - Mana Charge:</unique> Grants +10 maximum Mana (max +750 Mana) for
803
+ each spell cast and Mana expenditure (occurs up to 2 times every 6 seconds).
804
+ Transforms into Seraph's Embrace at +750 Mana.<br><br><i>(Unique Passives
805
+ with the same name don't stack.)</i>\",\"sanitizedDescription\":\"+250 Mana
806
+ +60 Ability Power +10 Mana Regen per 5 seconds UNIQUE Passive - Insight: Grants
807
+ Ability Power equal to 3% of maximum Mana. UNIQUE Passive - Mana Charge: Grants
808
+ +10 maximum Mana (max +750 Mana) for each spell cast and Mana expenditure
809
+ (occurs up to 2 times every 6 seconds). Transforms into Seraph's Embrace at
810
+ +750 Mana. (Unique Passives with the same name don't stack.)\",\"colloq\":\"aa\",\"plaintext\":\"Increases
811
+ Ability Power based on maximum Mana\",\"depth\":3,\"from\":[\"3073\",\"1026\"],\"into\":[\"3048\"],\"tags\":[\"SpellDamage\",\"Mana\",\"ManaRegen\"],\"maps\":{\"1\":false,\"10\":false,\"12\":false},\"image\":{\"full\":\"3007.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":0,\"y\":240,\"w\":48,\"h\":48},\"stats\":{\"FlatMPPoolMod\":250.0,\"FlatMPRegenMod\":2.0,\"FlatMagicDamageMod\":60.0}},\"3008\":{\"id\":3008,\"name\":\"Manamune
812
+ (Crystal Scar)\",\"gold\":{\"base\":1000,\"total\":2060,\"sell\":1442,\"purchasable\":true},\"description\":\"<stats>+250
813
+ Mana<br>+20 Attack Damage<br>+7 Mana Regen per 5 seconds </stats><br><br><unique>UNIQUE
814
+ Passive - Awe:</unique> Grants bonus Attack Damage equal to 2% of maximum
815
+ Mana.<br><unique>UNIQUE Passive - Mana Charge:</unique> Grants +8 maximum
816
+ Mana (max +750 Mana) for each basic attack, spell cast, and Mana expenditure
817
+ (occurs up to 2 times every 6 seconds).<br><br>Transforms into Muramana at
818
+ +750 Mana.<br><br><i>(Unique Passives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"+250
819
+ Mana +20 Attack Damage +7 Mana Regen per 5 seconds UNIQUE Passive - Awe: Grants
820
+ bonus Attack Damage equal to 2% of maximum Mana. UNIQUE Passive - Mana Charge:
821
+ Grants +8 maximum Mana (max +750 Mana) for each basic attack, spell cast,
822
+ and Mana expenditure (occurs up to 2 times every 6 seconds). Transforms into
823
+ Muramana at +750 Mana. (Unique Passives with the same name don't stack.)\",\"plaintext\":\"Increases
824
+ Attack Damage based on maximum Mana\",\"depth\":3,\"from\":[\"3073\",\"1036\"],\"into\":[\"3043\"],\"tags\":[\"Damage\",\"Mana\",\"ManaRegen\",\"OnHit\"],\"maps\":{\"1\":false,\"10\":false,\"12\":false},\"image\":{\"full\":\"3008.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":48,\"y\":240,\"w\":48,\"h\":48},\"stats\":{\"FlatMPPoolMod\":250.0,\"FlatMPRegenMod\":1.42,\"FlatPhysicalDamageMod\":20.0}},\"3342\":{\"id\":3342,\"name\":\"Scrying
825
+ Orb (Trinket)\",\"gold\":{\"base\":0,\"total\":0,\"sell\":0,\"purchasable\":true},\"group\":\"RelicBase\",\"description\":\"<groupLimit>Limited
826
+ to 1 Trinket.</groupLimit><br><br><unique>Active:</unique> Reveals a small
827
+ location within 2500 range for 1 second. Enemy champions found will be revealed
828
+ for 5 seconds (120 second cooldown).<br><br>At level 9, cast range increases
829
+ to 3500.<br><br><i>(Trinkets cannot be used in the first 120 seconds of a
830
+ game. Selling a Trinket will disable Trinket use for 120 seconds.)</i>\",\"sanitizedDescription\":\"Limited
831
+ to 1 Trinket. Active: Reveals a small location within 2500 range for 1 second.
832
+ Enemy champions found will be revealed for 5 seconds (120 second cooldown).
833
+ At level 9, cast range increases to 3500. (Trinkets cannot be used in the
834
+ first 120 seconds of a game. Selling a Trinket will disable Trinket use for
835
+ 120 seconds.)\",\"plaintext\":\"Briefly reveals a nearby targeted area\",\"into\":[\"3363\"],\"tags\":[\"Active\",\"Vision\",\"Trinket\"],\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3342.png\",\"sprite\":\"item2.png\",\"group\":\"item\",\"x\":432,\"y\":0,\"w\":48,\"h\":48},\"stats\":{}},\"3341\":{\"id\":3341,\"name\":\"Sweeping
836
+ Lens (Trinket)\",\"gold\":{\"base\":0,\"total\":0,\"sell\":0,\"purchasable\":true},\"group\":\"RelicBase\",\"description\":\"<groupLimit>Limited
837
+ to 1 Trinket.</groupLimit><br><br><unique>Active:</unique> Reveals and disables
838
+ nearby invisible traps and invisible wards for 6 seconds in a small radius
839
+ (120 second cooldown.)<br><br>At level 9, cast range and sweep radius increase
840
+ by 50% each and the cooldown is reduced to 60 seconds.<br><br><i>(Trinkets
841
+ cannot be used in the first 120 seconds of a game. Selling a Trinket will
842
+ disable Trinket use for 120 seconds.)</i>\",\"sanitizedDescription\":\"Limited
843
+ to 1 Trinket. Active: Reveals and disables nearby invisible traps and invisible
844
+ wards for 6 seconds in a small radius (120 second cooldown.) At level 9, cast
845
+ range and sweep radius increase by 50% each and the cooldown is reduced to
846
+ 60 seconds. (Trinkets cannot be used in the first 120 seconds of a game. Selling
847
+ a Trinket will disable Trinket use for 120 seconds.)\",\"plaintext\":\"Detects
848
+ and disables nearby invisible wards and traps\",\"into\":[\"3364\"],\"tags\":[\"Active\",\"Vision\",\"Trinket\"],\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3341.png\",\"sprite\":\"item2.png\",\"group\":\"item\",\"x\":384,\"y\":0,\"w\":48,\"h\":48},\"stats\":{}},\"3340\":{\"id\":3340,\"name\":\"Warding
849
+ Totem (Trinket)\",\"gold\":{\"base\":0,\"total\":0,\"sell\":0,\"purchasable\":true},\"group\":\"RelicBase\",\"description\":\"<groupLimit>Limited
850
+ to 1 Trinket.</groupLimit><br><br><unique>Active:</unique> Places a <font
851
+ color='#BBFFFF'>Stealth Ward</font> that lasts 60 seconds (120 second cooldown).<br><br>At
852
+ level 9, this ward's duration increases to 120 seconds.<br><br>Limit 3 <font
853
+ color='#BBFFFF'>Stealth Wards</font> on the map per player.<br><br><i>(Trinkets
854
+ cannot be used in the first 120 seconds of a game. Selling a Trinket will
855
+ disable Trinket use for 120 seconds.)</i>\",\"sanitizedDescription\":\"Limited
856
+ to 1 Trinket. Active: Places a Stealth Ward that lasts 60 seconds (120 second
857
+ cooldown). At level 9, this ward's duration increases to 120 seconds. Limit
858
+ 3 Stealth Wards on the map per player. (Trinkets cannot be used in the first
859
+ 120 seconds of a game. Selling a Trinket will disable Trinket use for 120
860
+ seconds.)\",\"plaintext\":\"Periodically place a Stealth Ward\",\"into\":[\"3361\",\"3362\"],\"tags\":[\"Active\",\"Vision\",\"Trinket\"],\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3340.png\",\"sprite\":\"item2.png\",\"group\":\"item\",\"x\":336,\"y\":0,\"w\":48,\"h\":48},\"stats\":{}},\"3010\":{\"id\":3010,\"name\":\"Catalyst
861
+ the Protector\",\"gold\":{\"base\":400,\"total\":1200,\"sell\":840,\"purchasable\":true},\"description\":\"<stats>+200
862
+ Health<br>+300 Mana</stats><br><br><unique>UNIQUE Passive - Valor's Reward:</unique>
863
+ Upon leveling up, restores 150 Health and 200 Mana over 8 seconds.<br><br><i>(Unique
864
+ Passives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"+200
865
+ Health +300 Mana UNIQUE Passive - Valor's Reward: Upon leveling up, restores
866
+ 150 Health and 200 Mana over 8 seconds. (Unique Passives with the same name
867
+ don't stack.)\",\"plaintext\":\"Restores Health and Mana upon leveling up\",\"depth\":2,\"from\":[\"1028\",\"1027\"],\"into\":[\"3027\",\"3029\",\"3180\"],\"tags\":[\"Health\",\"HealthRegen\",\"Mana\",\"ManaRegen\"],\"image\":{\"full\":\"3010.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":144,\"y\":240,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":200.0,\"FlatMPPoolMod\":300.0}},\"3156\":{\"id\":3156,\"name\":\"Maw
868
+ of Malmortius\",\"gold\":{\"base\":975,\"total\":3200,\"sell\":2240,\"purchasable\":true},\"description\":\"<stats>+60
869
+ Attack Damage<br>+40 Magic Resist</stats><br><br><unique>UNIQUE Passive:</unique>
870
+ Grants +1 Attack Damage for every 2% of missing Health, up to a maximum of
871
+ 35 Attack Damage.<br><unique>UNIQUE Passive - Lifeline:</unique> Upon taking
872
+ magic damage that would reduce Health below 30%, grants a shield that absorbs
873
+ 400 magic damage for 5 seconds (90 second cooldown).<br><br><i>(Unique Passives
874
+ with the same name don't stack.)</i>\",\"sanitizedDescription\":\"+60 Attack
875
+ Damage +40 Magic Resist UNIQUE Passive: Grants +1 Attack Damage for every
876
+ 2% of missing Health, up to a maximum of 35 Attack Damage. UNIQUE Passive
877
+ - Lifeline: Upon taking magic damage that would reduce Health below 30%, grants
878
+ a shield that absorbs 400 magic damage for 5 seconds (90 second cooldown).
879
+ (Unique Passives with the same name don't stack.)\",\"plaintext\":\"Grants
880
+ bonus Attack Damage when Health is low\",\"stacks\":0,\"depth\":3,\"from\":[\"3155\",\"1037\"],\"tags\":[\"SpellBlock\",\"Damage\"],\"image\":{\"full\":\"3156.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":336,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"FlatPhysicalDamageMod\":60.0,\"FlatSpellBlockMod\":40.0}},\"3155\":{\"id\":3155,\"name\":\"Hexdrinker\",\"gold\":{\"base\":590,\"total\":1350,\"sell\":945,\"purchasable\":true},\"description\":\"<stats>+25
881
+ Attack Damage<br>+25 Magic Resist</stats><br><br><unique>UNIQUE Passive -
882
+ Lifeline:</unique> Upon taking magic damage that would reduce Health below
883
+ 30%, grants a shield that absorbs 250 magic damage for 5 seconds (90 second
884
+ cooldown).<br><br><i>(Unique Passives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"+25
885
+ Attack Damage +25 Magic Resist UNIQUE Passive - Lifeline: Upon taking magic
886
+ damage that would reduce Health below 30%, grants a shield that absorbs 250
887
+ magic damage for 5 seconds (90 second cooldown). (Unique Passives with the
888
+ same name don't stack.)\",\"plaintext\":\"Increases Attack Damage and Magic
889
+ Resist\",\"stacks\":0,\"depth\":2,\"from\":[\"1036\",\"1033\"],\"into\":[\"3156\"],\"tags\":[\"SpellBlock\",\"Damage\"],\"image\":{\"full\":\"3155.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":288,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"FlatPhysicalDamageMod\":25.0,\"FlatSpellBlockMod\":25.0}},\"3154\":{\"id\":3154,\"name\":\"Wriggle's
890
+ Lantern\",\"gold\":{\"base\":140,\"total\":1650,\"sell\":660,\"purchasable\":true},\"group\":\"GoldBase\",\"description\":\"<stats>+12
891
+ Attack Damage<br>+30% Attack Speed</stats><br><br><unique>UNIQUE Passive -
892
+ Maim:</unique> Basic attacks against monsters deal 100 bonus magic damage
893
+ and heal 10 Health on hit.<br><unique>UNIQUE Passive:</unique> Gain 30% increased
894
+ Gold from monsters.<br><active>UNIQUE Active:</active> Places a <font color='#BBFFFF'>Stealth
895
+ Ward</font> that reveals the surrounding area for 180 seconds (180 second
896
+ cooldown).<br><br>Transforms into Feral Flare at 25 large monster kills.<br><i>(Monsters
897
+ killed with Hunter's Machete and Madred's Razors count toward the transformation)</i><br><br><groupLimit>Limited
898
+ to 1 Gold Income item</groupLimit>\",\"sanitizedDescription\":\"+12 Attack
899
+ Damage +30% Attack Speed UNIQUE Passive - Maim: Basic attacks against monsters
900
+ deal 100 bonus magic damage and heal 10 Health on hit. UNIQUE Passive: Gain
901
+ 30% increased Gold from monsters. UNIQUE Active: Places a Stealth Ward that
902
+ reveals the surrounding area for 180 seconds (180 second cooldown). Transforms
903
+ into Feral Flare at 25 large monster kills. (Monsters killed with Hunter's
904
+ Machete and Madred's Razors count toward the transformation) Limited to 1
905
+ Gold Income item\",\"plaintext\":\"Kills monsters quickly and gain more gold,
906
+ activate to place a ward\",\"depth\":3,\"from\":[\"3106\",\"1036\",\"1042\"],\"into\":[\"3160\"],\"tags\":[\"Damage\",\"AttackSpeed\",\"Active\",\"OnHit\",\"Vision\",\"GoldPer\"],\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3154.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":240,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"FlatPhysicalDamageMod\":12.0,\"PercentAttackSpeedMod\":0.3}},\"3153\":{\"id\":3153,\"name\":\"Blade
907
+ of the Ruined King\",\"gold\":{\"base\":1000,\"total\":3200,\"sell\":2240,\"purchasable\":true},\"description\":\"<stats>+25
908
+ Attack Damage<br>+40% Attack Speed<br>+15% Life Steal</stats><br><br><unique>UNIQUE
909
+ Passive:</unique> Basic attacks deal 5% of the target's current Health in
910
+ bonus physical damage (max 60 vs. monsters and minions) on hit.<br><active>UNIQUE
911
+ Active:</active> Deals 15% of target champion's maximum Health (min. 100)
912
+ as physical damage, heals for the same amount, and steals 30% of the target's
913
+ Movement Speed for 3 seconds (90 second cooldown).\",\"sanitizedDescription\":\"+25
914
+ Attack Damage +40% Attack Speed +15% Life Steal UNIQUE Passive: Basic attacks
915
+ deal 5% of the target's current Health in bonus physical damage (max 60 vs.
916
+ monsters and minions) on hit. UNIQUE Active: Deals 15% of target champion's
917
+ maximum Health (min. 100) as physical damage, heals for the same amount, and
918
+ steals 30% of the target's Movement Speed for 3 seconds (90 second cooldown).\",\"colloq\":\"brk;bork;bork;bork;botrk\",\"plaintext\":\"Deals
919
+ damage based on target's Health, can steal Health and Movement Speed\",\"depth\":4,\"from\":[\"1042\",\"3144\",\"1042\"],\"tags\":[\"Damage\",\"AttackSpeed\",\"LifeSteal\",\"Movement\",\"NonbootsMovement\",\"Active\",\"OnHit\"],\"image\":{\"full\":\"3153.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":192,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"FlatPhysicalDamageMod\":25.0,\"PercentAttackSpeedMod\":0.4,\"PercentLifeStealMod\":0.15}},\"1011\":{\"id\":1011,\"name\":\"Giant's
920
+ Belt\",\"gold\":{\"base\":1000,\"total\":1000,\"sell\":700,\"purchasable\":true},\"description\":\"<stats>+380
921
+ Health</stats>\",\"sanitizedDescription\":\"+380 Health\",\"plaintext\":\"Greatly
922
+ increases Health\",\"into\":[\"3083\",\"3022\",\"3068\",\"3116\",\"3084\",\"3143\"],\"tags\":[\"Health\"],\"image\":{\"full\":\"1011.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":144,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":380.0}},\"3152\":{\"id\":3152,\"name\":\"Will
923
+ of the Ancients\",\"gold\":{\"base\":480,\"total\":2500,\"sell\":1750,\"purchasable\":true},\"description\":\"<stats>+80
924
+ Ability Power<br>+10% Cooldown Reduction</stats><br><br><unique>UNIQUE Passive:</unique>
925
+ +20% Spell Vamp<br><br><i>(Spell Vamp: Abilities heal for a percentage of
926
+ the damage they deal. Area of Effect spells only grant one-third of the healing
927
+ from Spell Vamp.)</i>\",\"sanitizedDescription\":\"+80 Ability Power +10%
928
+ Cooldown Reduction UNIQUE Passive: +20% Spell Vamp (Spell Vamp: Abilities
929
+ heal for a percentage of the damage they deal. Area of Effect spells only
930
+ grant one-third of the healing from Spell Vamp.)\",\"colloq\":\"wota\",\"plaintext\":\"Grants
931
+ Spell Vamp and Ability Power\",\"depth\":3,\"from\":[\"3145\",\"3108\"],\"tags\":[\"SpellDamage\",\"CooldownReduction\",\"SpellVamp\"],\"image\":{\"full\":\"3152.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":144,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"FlatMagicDamageMod\":80.0}},\"3200\":{\"id\":3200,\"name\":\"The
932
+ Hex Core\",\"gold\":{\"base\":0,\"total\":0,\"sell\":0,\"purchasable\":false},\"description\":\"<stats>+3
933
+ Ability Power per level</stats><br><br><i>(This item can be upgraded into
934
+ one of three augments that enhance Viktor's basic abilities. Click the item
935
+ in the store to discover its upgrades.)</i>\",\"sanitizedDescription\":\"+3
936
+ Ability Power per level (This item can be upgraded into one of three augments
937
+ that enhance Viktor's basic abilities. Click the item in the store to discover
938
+ its upgrades.)\",\"colloq\":\"viktor\",\"plaintext\":\"Increases Ability Power
939
+ and can be upgraded to improve Viktor's abilities\",\"into\":[\"3196\",\"3197\",\"3198\"],\"specialRecipe\":1,\"inStore\":false,\"requiredChampion\":\"Viktor\",\"image\":{\"full\":\"3200.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":96,\"y\":288,\"w\":48,\"h\":48},\"stats\":{}},\"3151\":{\"id\":3151,\"name\":\"Liandry's
940
+ Torment\",\"gold\":{\"base\":980,\"total\":2900,\"sell\":2030,\"purchasable\":true},\"description\":\"<stats>+50
941
+ Ability Power<br>+300 Health</stats><br><br><unique>UNIQUE Passive - Eyes
942
+ of Pain:</unique> +15 Magic Penetration<br><unique>UNIQUE Passive:</unique>
943
+ Dealing spell damage applies a damage-over-time effect for 3 seconds that
944
+ deals bonus magic damage equal to 2% of the target's current Health per second.
945
+ This bonus damage is doubled against movement-impaired units and capped at
946
+ 100 damage per second vs. monsters.<br><br><i>(A unit is movement-impaired
947
+ if it is slowed, stunned, taunted, feared, or immobilized.)</i><br><br><i>(Magic
948
+ Penetration: Magic damage is increased by ignoring an amount of the target's
949
+ Magic Resist equal to Magic Penetration.)</i><br><br><i>(Unique Passives with
950
+ the same name don't stack.)</i>\",\"sanitizedDescription\":\"+50 Ability Power
951
+ +300 Health UNIQUE Passive - Eyes of Pain: +15 Magic Penetration UNIQUE Passive:
952
+ Dealing spell damage applies a damage-over-time effect for 3 seconds that
953
+ deals bonus magic damage equal to 2% of the target's current Health per second.
954
+ This bonus damage is doubled against movement-impaired units and capped at
955
+ 100 damage per second vs. monsters. (A unit is movement-impaired if it is
956
+ slowed, stunned, taunted, feared, or immobilized.) (Magic Penetration: Magic
957
+ damage is increased by ignoring an amount of the target's Magic Resist equal
958
+ to Magic Penetration.) (Unique Passives with the same name don't stack.)\",\"colloq\":\"mask\",\"plaintext\":\"Spell
959
+ damage burns enemies for a portion of their Health\",\"stacks\":0,\"depth\":3,\"from\":[\"3136\",\"1052\"],\"tags\":[\"Health\",\"SpellDamage\",\"MagicPenetration\"],\"image\":{\"full\":\"3151.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":96,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":300.0,\"FlatMagicDamageMod\":50.0}},\"3139\":{\"id\":3139,\"name\":\"Mercurial
960
+ Scimitar\",\"gold\":{\"base\":600,\"total\":3700,\"sell\":2590,\"purchasable\":true},\"description\":\"<stats>+60
961
+ Attack Damage<br>+45 Magic Resist</stats><br><br><active>UNIQUE Active - Quicksilver:</active>
962
+ Removes all debuffs, and if champion is melee, also grants +50% bonus Movement
963
+ Speed for 1 second (90 second cooldown).\",\"sanitizedDescription\":\"+60
964
+ Attack Damage +45 Magic Resist UNIQUE Active - Quicksilver: Removes all debuffs,
965
+ and if champion is melee, also grants +50% bonus Movement Speed for 1 second
966
+ (90 second cooldown).\",\"plaintext\":\"Activate to remove all debuffs and
967
+ grant massive Movement Speed\",\"depth\":3,\"from\":[\"3140\",\"1038\"],\"tags\":[\"SpellBlock\",\"Damage\",\"Movement\",\"NonbootsMovement\",\"Active\"],\"maps\":{\"10\":false,\"8\":false},\"image\":{\"full\":\"3139.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":192,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatPhysicalDamageMod\":60.0,\"FlatSpellBlockMod\":45.0}},\"3135\":{\"id\":3135,\"name\":\"Void
968
+ Staff\",\"gold\":{\"base\":1000,\"total\":2295,\"sell\":1607,\"purchasable\":true},\"description\":\"<stats>+70
969
+ Ability Power</stats><br><br><unique>UNIQUE Passive:</unique> Magic damage
970
+ ignores 35% of the target's Magic Resist (applies before Magic Penetration).\",\"sanitizedDescription\":\"+70
971
+ Ability Power UNIQUE Passive: Magic damage ignores 35% of the target's Magic
972
+ Resist (applies before Magic Penetration).\",\"plaintext\":\"Increases magic
973
+ damage\",\"depth\":2,\"from\":[\"1026\",\"1052\"],\"tags\":[\"SpellDamage\",\"MagicPenetration\"],\"image\":{\"full\":\"3135.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":96,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatMagicDamageMod\":70.0}},\"3136\":{\"id\":3136,\"name\":\"Haunting
974
+ Guise\",\"gold\":{\"base\":650,\"total\":1485,\"sell\":1040,\"purchasable\":true},\"description\":\"<stats>+25
975
+ Ability Power<br>+200 Health</stats><br><br><unique>UNIQUE Passive - Eyes
976
+ of Pain:</unique> +15 Magic Penetration<br><br><i>(Magic Penetration: Magic
977
+ damage is increased by ignoring an amount of the target's Magic Resist equal
978
+ to Magic Penetration.)</i><br><br><i>(Unique Passives with the same name do
979
+ not stack.)</i>\",\"sanitizedDescription\":\"+25 Ability Power +200 Health
980
+ UNIQUE Passive - Eyes of Pain: +15 Magic Penetration (Magic Penetration: Magic
981
+ damage is increased by ignoring an amount of the target's Magic Resist equal
982
+ to Magic Penetration.) (Unique Passives with the same name do not stack.)\",\"colloq\":\"mask\",\"plaintext\":\"Increases
983
+ magic damage\",\"stacks\":0,\"depth\":2,\"from\":[\"1028\",\"1052\"],\"into\":[\"3151\"],\"tags\":[\"Health\",\"SpellDamage\",\"MagicPenetration\"],\"image\":{\"full\":\"3136.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":144,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":200.0,\"FlatMagicDamageMod\":25.0}},\"3206\":{\"id\":3206,\"name\":\"Spirit
984
+ of the Spectral Wraith\",\"gold\":{\"base\":480,\"total\":2000,\"sell\":800,\"purchasable\":true},\"group\":\"GoldBase\",\"description\":\"<stats>+50
985
+ Ability Power<br>+10% Cooldown Reduction</stats><br><br><unique>UNIQUE Passive
986
+ - Spirit Drain:</unique> Grants 2 Ability Power per large or epic monster
987
+ kill. (max: 30)<br><unique>UNIQUE Passive - Butcher:</unique> Against monsters,
988
+ deal 30% bonus damage and restore 6% of damage dealt as Health and 3% as Mana.<br><unique>UNIQUE
989
+ Passive - Conservation:</unique> Upon killing a large or epic monster, grants
990
+ up to 40 bonus Gold, based on the last time Conservation triggered (Max 80
991
+ stacks of Conservation).<br><br><groupLimit>Limited to 1 Gold Income item</groupLimit>\",\"sanitizedDescription\":\"+50
992
+ Ability Power +10% Cooldown Reduction UNIQUE Passive - Spirit Drain: Grants
993
+ 2 Ability Power per large or epic monster kill. (max: 30) UNIQUE Passive -
994
+ Butcher: Against monsters, deal 30% bonus damage and restore 6% of damage
995
+ dealt as Health and 3% as Mana. UNIQUE Passive - Conservation: Upon killing
996
+ a large or epic monster, grants up to 40 bonus Gold, based on the last time
997
+ Conservation triggered (Max 80 stacks of Conservation). Limited to 1 Gold
998
+ Income item\",\"plaintext\":\"Greatly increases damage dealt to monsters and
999
+ gains Health and Mana from monsters\",\"depth\":3,\"from\":[\"1080\",\"3108\"],\"tags\":[\"SpellDamage\",\"CooldownReduction\",\"GoldPer\"],\"maps\":{\"8\":false},\"image\":{\"full\":\"3206.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":144,\"y\":288,\"w\":48,\"h\":48},\"stats\":{\"FlatMagicDamageMod\":50.0}},\"3137\":{\"id\":3137,\"name\":\"Dervish
1000
+ Blade\",\"gold\":{\"base\":200,\"total\":3000,\"sell\":2100,\"purchasable\":true},\"description\":\"<stats>+50%
1001
+ Attack Speed<br>+45 Magic Resist<br>+10% Cooldown Reduction</stats><br><br><active>UNIQUE
1002
+ Active - Quicksilver:</active> Removes all debuffs, and if champion is melee,
1003
+ also grants +50% bonus Movement Speed for 1 second (90 second cooldown).\",\"sanitizedDescription\":\"+50%
1004
+ Attack Speed +45 Magic Resist +10% Cooldown Reduction UNIQUE Active - Quicksilver:
1005
+ Removes all debuffs, and if champion is melee, also grants +50% bonus Movement
1006
+ Speed for 1 second (90 second cooldown).\",\"plaintext\":\"Activate to remove
1007
+ all debuffs and grant massive Movement Speed\",\"depth\":3,\"from\":[\"3140\",\"3101\"],\"tags\":[\"SpellBlock\",\"AttackSpeed\",\"Movement\",\"NonbootsMovement\",\"CooldownReduction\",\"Active\"],\"maps\":{\"1\":false,\"12\":false},\"image\":{\"full\":\"3137.png\",\"sprite\":\"item2.png\",\"group\":\"item\",\"x\":384,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatSpellBlockMod\":45.0,\"PercentAttackSpeedMod\":0.5}},\"3207\":{\"id\":3207,\"name\":\"Spirit
1008
+ of the Ancient Golem\",\"gold\":{\"base\":450,\"total\":2000,\"sell\":800,\"purchasable\":true},\"group\":\"GoldBase\",\"description\":\"<stats>+350
1009
+ Health<br>+10% Cooldown Reduction</stats><br><br><unique>UNIQUE Passive -
1010
+ Tenacity:</unique> Reduces the duration of stuns, slows, taunts, fears, silences,
1011
+ blinds, polymorphs, and immobilizes by 35%.<br><unique>UNIQUE Passive - Butcher:</unique>
1012
+ Against monsters, deal 30% bonus damage and restore 6% of damage dealt as
1013
+ Health and 3% Mana.<br><unique>UNIQUE Passive - Conservation:</unique> Upon
1014
+ killing a large or epic monster, grants up to 40 bonus Gold, based on the
1015
+ last time Conservation triggered (Max 80 stacks of Conservation).<br><br><groupLimit>Limited
1016
+ to 1 Gold Income item</groupLimit>\",\"sanitizedDescription\":\"+350 Health
1017
+ +10% Cooldown Reduction UNIQUE Passive - Tenacity: Reduces the duration of
1018
+ stuns, slows, taunts, fears, silences, blinds, polymorphs, and immobilizes
1019
+ by 35%. UNIQUE Passive - Butcher: Against monsters, deal 30% bonus damage
1020
+ and restore 6% of damage dealt as Health and 3% Mana. UNIQUE Passive - Conservation:
1021
+ Upon killing a large or epic monster, grants up to 40 bonus Gold, based on
1022
+ the last time Conservation triggered (Max 80 stacks of Conservation). Limited
1023
+ to 1 Gold Income item\",\"plaintext\":\"Greatly increases damage dealt to
1024
+ monsters and reduces duration of disabling effects\",\"depth\":3,\"from\":[\"1080\",\"3067\"],\"tags\":[\"Health\",\"CooldownReduction\",\"Tenacity\",\"GoldPer\"],\"maps\":{\"8\":false},\"image\":{\"full\":\"3207.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":192,\"y\":288,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":350.0}},\"3209\":{\"id\":3209,\"name\":\"Spirit
1025
+ of the Elder Lizard\",\"gold\":{\"base\":580,\"total\":2000,\"sell\":800,\"purchasable\":true},\"group\":\"GoldBase\",\"description\":\"<stats>+30
1026
+ Attack Damage<br>+10% Cooldown Reduction</stats><br><br><unique>UNIQUE Passive
1027
+ - Incinerate:</unique> Deals 16-50 (based on level) true damage over 3 seconds
1028
+ on dealing physical damage.<br><unique>UNIQUE Passive - Butcher:</unique>
1029
+ Against monsters, deal 20% bonus damage and restore 6% of damage dealt as
1030
+ Health and 3% as Mana.<br><unique>UNIQUE Passive - Conservation:</unique>
1031
+ Upon killing a large or epic monster, grants up to 40 bonus Gold, based on
1032
+ the last time Conservation triggered (Max 80 stacks of Conservation).<br><br><groupLimit>Limited
1033
+ to 1 Gold Income item</groupLimit>\",\"sanitizedDescription\":\"+30 Attack
1034
+ Damage +10% Cooldown Reduction UNIQUE Passive - Incinerate: Deals 16-50 (based
1035
+ on level) true damage over 3 seconds on dealing physical damage. UNIQUE Passive
1036
+ - Butcher: Against monsters, deal 20% bonus damage and restore 6% of damage
1037
+ dealt as Health and 3% as Mana. UNIQUE Passive - Conservation: Upon killing
1038
+ a large or epic monster, grants up to 40 bonus Gold, based on the last time
1039
+ Conservation triggered (Max 80 stacks of Conservation). Limited to 1 Gold
1040
+ Income item\",\"plaintext\":\"Greatly increases damage dealt to monsters and
1041
+ deals true damage on basic attacks\",\"depth\":3,\"from\":[\"1080\",\"1036\",\"1036\"],\"tags\":[\"Damage\",\"CooldownReduction\",\"OnHit\",\"GoldPer\"],\"maps\":{\"8\":false},\"image\":{\"full\":\"3209.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":240,\"y\":288,\"w\":48,\"h\":48},\"stats\":{\"FlatPhysicalDamageMod\":30.0}},\"3408\":{\"id\":3408,\"name\":\"Bonetooth
1042
+ Necklace\",\"gold\":{\"base\":0,\"total\":0,\"sell\":0,\"purchasable\":false},\"group\":\"RelicBase\",\"description\":\"<unique>UNIQUE
1043
+ Active - Sweeping Lens:</unique> Reveals and disables nearby invisible traps
1044
+ and invisible wards for 6 seconds in a medium radius (60 second cooldown).
1045
+ Active upgrades at 20 Trophies.<br><br><unique>UNIQUE Passive - Mementos of
1046
+ the Hunt:</unique> Rengar collects trophies when killing Champions and gains
1047
+ bonus effects based on how many trophies he has. Kills and assists grant 1
1048
+ trophy.<br><br><passive>3 Trophies:</passive> Rengar gains 25 Movement Speed
1049
+ whilst out of combat or in brush. <br><passive>6 Trophies:</passive> Increases
1050
+ the range of Rengar's Leap by 125.<br><passive>12 Trophies:</passive> Thrill
1051
+ of the Hunt's duration is increased by 5 seconds.<br><passive>20 Trophies:</passive>
1052
+ Thrill of the Hunt's Movement Speed while stealthed is doubled.\",\"sanitizedDescription\":\"UNIQUE
1053
+ Active - Sweeping Lens: Reveals and disables nearby invisible traps and invisible
1054
+ wards for 6 seconds in a medium radius (60 second cooldown). Active upgrades
1055
+ at 20 Trophies. UNIQUE Passive - Mementos of the Hunt: Rengar collects trophies
1056
+ when killing Champions and gains bonus effects based on how many trophies
1057
+ he has. Kills and assists grant 1 trophy. 3 Trophies: Rengar gains 25 Movement
1058
+ Speed whilst out of combat or in brush. 6 Trophies: Increases the range of
1059
+ Rengar's Leap by 125. 12 Trophies: Thrill of the Hunt's duration is increased
1060
+ by 5 seconds. 20 Trophies: Thrill of the Hunt's Movement Speed while stealthed
1061
+ is doubled.\",\"inStore\":false,\"hideFromAll\":true,\"requiredChampion\":\"Rengar\",\"tags\":[\"Movement\",\"Active\",\"Vision\",\"Trinket\"],\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3408.png\",\"sprite\":\"item2.png\",\"group\":\"item\",\"x\":240,\"y\":96,\"w\":48,\"h\":48},\"stats\":{}},\"3407\":{\"id\":3407,\"name\":\"Bonetooth
1062
+ Necklace\",\"gold\":{\"base\":0,\"total\":0,\"sell\":0,\"purchasable\":false},\"group\":\"RelicBase\",\"description\":\"<unique>UNIQUE
1063
+ Active - Sweeping Lens:</unique> Reveals and disables nearby invisible traps
1064
+ and invisible wards for 6 seconds in a medium radius (60 second cooldown).
1065
+ Active upgrades at 20 Trophies.<br><br><unique>UNIQUE Passive - Mementos of
1066
+ the Hunt:</unique> Rengar collects trophies when killing Champions and gains
1067
+ bonus effects based on how many trophies he has. Kills and assists grant 1
1068
+ trophy.<br><br><passive>3 Trophies:</passive> Rengar gains 25 Movement Speed
1069
+ whilst out of combat or in brush. <br><passive>6 Trophies:</passive> Increases
1070
+ the range of Rengar's Leap by 125.<br><passive>12 Trophies:</passive> Thrill
1071
+ of the Hunt's duration is increased by 5 seconds.<br><passive>20 Trophies:</passive>
1072
+ Thrill of the Hunt's Movement Speed while stealthed is doubled.\",\"sanitizedDescription\":\"UNIQUE
1073
+ Active - Sweeping Lens: Reveals and disables nearby invisible traps and invisible
1074
+ wards for 6 seconds in a medium radius (60 second cooldown). Active upgrades
1075
+ at 20 Trophies. UNIQUE Passive - Mementos of the Hunt: Rengar collects trophies
1076
+ when killing Champions and gains bonus effects based on how many trophies
1077
+ he has. Kills and assists grant 1 trophy. 3 Trophies: Rengar gains 25 Movement
1078
+ Speed whilst out of combat or in brush. 6 Trophies: Increases the range of
1079
+ Rengar's Leap by 125. 12 Trophies: Thrill of the Hunt's duration is increased
1080
+ by 5 seconds. 20 Trophies: Thrill of the Hunt's Movement Speed while stealthed
1081
+ is doubled.\",\"inStore\":false,\"hideFromAll\":true,\"requiredChampion\":\"Rengar\",\"tags\":[\"Movement\",\"Active\",\"Vision\",\"Trinket\"],\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3407.png\",\"sprite\":\"item2.png\",\"group\":\"item\",\"x\":192,\"y\":96,\"w\":48,\"h\":48},\"stats\":{}},\"3409\":{\"id\":3409,\"name\":\"Bonetooth
1082
+ Necklace\",\"gold\":{\"base\":0,\"total\":0,\"sell\":0,\"purchasable\":false},\"group\":\"RelicBase\",\"description\":\"<unique>UNIQUE
1083
+ Active - Sweeping Lens:</unique> Reveals and disables nearby invisible traps
1084
+ and invisible wards for 6 seconds in a medium radius and grants detection
1085
+ of invisible units for 10 seconds (60 second cooldown).<br><br><unique>UNIQUE
1086
+ Passive - Mementos of the Hunt:</unique> Rengar collects trophies when killing
1087
+ Champions and gains bonus effects based on how many trophies he has. Kills
1088
+ and assists grant 1 trophy.<br><br><passive>3 Trophies:</passive> Rengar gains
1089
+ 25 Movement Speed whilst out of combat or in brush. <br><passive>6 Trophies:</passive>
1090
+ Increases the range of Rengar's Leap by 125.<br><passive>12 Trophies:</passive>
1091
+ Thrill of the Hunt's duration is increased by 5 seconds.<br><passive>20 Trophies:</passive>
1092
+ Thrill of the Hunt's Movement Speed while stealthed is doubled.\",\"sanitizedDescription\":\"UNIQUE
1093
+ Active - Sweeping Lens: Reveals and disables nearby invisible traps and invisible
1094
+ wards for 6 seconds in a medium radius and grants detection of invisible units
1095
+ for 10 seconds (60 second cooldown). UNIQUE Passive - Mementos of the Hunt:
1096
+ Rengar collects trophies when killing Champions and gains bonus effects based
1097
+ on how many trophies he has. Kills and assists grant 1 trophy. 3 Trophies:
1098
+ Rengar gains 25 Movement Speed whilst out of combat or in brush. 6 Trophies:
1099
+ Increases the range of Rengar's Leap by 125. 12 Trophies: Thrill of the Hunt's
1100
+ duration is increased by 5 seconds. 20 Trophies: Thrill of the Hunt's Movement
1101
+ Speed while stealthed is doubled.\",\"inStore\":false,\"hideFromAll\":true,\"requiredChampion\":\"Rengar\",\"tags\":[\"Movement\",\"Active\",\"Vision\",\"Trinket\"],\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3409.png\",\"sprite\":\"item2.png\",\"group\":\"item\",\"x\":288,\"y\":96,\"w\":48,\"h\":48},\"stats\":{}},\"3001\":{\"id\":3001,\"name\":\"Abyssal
1102
+ Scepter\",\"gold\":{\"base\":980,\"total\":2560,\"sell\":1792,\"purchasable\":true},\"description\":\"<stats>+70
1103
+ Ability Power<br>+45 Magic Resist</stats><br><br><aura>UNIQUE Aura:</aura>
1104
+ Reduces the Magic Resist of nearby enemies by 20.\",\"sanitizedDescription\":\"+70
1105
+ Ability Power +45 Magic Resist UNIQUE Aura: Reduces the Magic Resist of nearby
1106
+ enemies by 20.\",\"plaintext\":\"Reduces Magic Resist of nearby enemies\",\"depth\":2,\"from\":[\"1026\",\"1057\"],\"tags\":[\"SpellBlock\",\"SpellDamage\",\"Aura\"],\"image\":{\"full\":\"3001.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":240,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatMagicDamageMod\":70.0,\"FlatSpellBlockMod\":45.0}},\"3143\":{\"id\":3143,\"name\":\"Randuin's
1107
+ Omen\",\"gold\":{\"base\":1000,\"total\":3000,\"sell\":2100,\"purchasable\":true},\"description\":\"<stats>+500
1108
+ Health<br>+70 Armor</stats><br><br><unique>UNIQUE Passive - Cold Steel:</unique>
1109
+ When hit by basic attacks, reduces the attacker's Attack Speed by 15% and
1110
+ Movement Speed by 10% for 1 seconds.<br><active>UNIQUE Active:</active> Slows
1111
+ the Movement Speed of nearby enemy units by 35% for 2 seconds (+1 second per
1112
+ 200 Armor and +1 second per 200 Magic Resist) (60 second cooldown).<br><br><i>(Unique
1113
+ Passives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"+500
1114
+ Health +70 Armor UNIQUE Passive - Cold Steel: When hit by basic attacks, reduces
1115
+ the attacker's Attack Speed by 15% and Movement Speed by 10% for 1 seconds.
1116
+ UNIQUE Active: Slows the Movement Speed of nearby enemy units by 35% for 2
1117
+ seconds (+1 second per 200 Armor and +1 second per 200 Magic Resist) (60 second
1118
+ cooldown). (Unique Passives with the same name don't stack.)\",\"plaintext\":\"Greatly
1119
+ increases defenses, activate to slow nearby enemies\",\"depth\":3,\"from\":[\"1011\",\"3082\"],\"tags\":[\"Health\",\"Armor\",\"Slow\",\"Active\"],\"image\":{\"full\":\"3143.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":384,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatArmorMod\":70.0,\"FlatHPPoolMod\":500.0}},\"3142\":{\"id\":3142,\"name\":\"Youmuu's
1120
+ Ghostblade\",\"gold\":{\"base\":563,\"total\":2700,\"sell\":1890,\"purchasable\":true},\"description\":\"<stats>+30
1121
+ Attack Damage<br>+15% Critical Strike Chance<br>+10% Cooldown Reduction</stats><br><br><passive>UNIQUE
1122
+ Passive:</passive> +20 Armor Penetration</passive><br><active>UNIQUE Active:</active>
1123
+ Grants +20% Movement Speed and +40% Attack Speed (lasts 6 seconds for melee
1124
+ champions, 4 seconds for ranged champions) (45 second cooldown).<br><br><i>(Armor
1125
+ Penetration: Physical damage is increased by ignoring an amount of the target's
1126
+ Armor equal to Armor Penetration.)</i>\",\"sanitizedDescription\":\"+30 Attack
1127
+ Damage +15% Critical Strike Chance +10% Cooldown Reduction UNIQUE Passive:
1128
+ +20 Armor Penetration UNIQUE Active: Grants +20% Movement Speed and +40% Attack
1129
+ Speed (lasts 6 seconds for melee champions, 4 seconds for ranged champions)
1130
+ (45 second cooldown). (Armor Penetration: Physical damage is increased by
1131
+ ignoring an amount of the target's Armor equal to Armor Penetration.)\",\"plaintext\":\"Activate
1132
+ to greatly increase Movement Speed and Attack Speed\",\"depth\":3,\"from\":[\"3093\",\"3134\"],\"tags\":[\"Damage\",\"CriticalStrike\",\"AttackSpeed\",\"CooldownReduction\",\"Movement\",\"NonbootsMovement\",\"Active\",\"ArmorPenetration\"],\"image\":{\"full\":\"3142.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":336,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatCritChanceMod\":0.15,\"FlatPhysicalDamageMod\":30.0}},\"3145\":{\"id\":3145,\"name\":\"Hextech
1133
+ Revolver\",\"gold\":{\"base\":330,\"total\":1200,\"sell\":840,\"purchasable\":true},\"description\":\"<stats>+40
1134
+ Ability Power</stats><br><br><unique>UNIQUE Passive:</unique> +12% Spell Vamp<br><br><i>(Spell
1135
+ Vamp: Abilities heal for a percentage of the damage they deal. Area of Effect
1136
+ spells only grant one-third of the healing from Spell Vamp.)</i>\",\"sanitizedDescription\":\"+40
1137
+ Ability Power UNIQUE Passive: +12% Spell Vamp (Spell Vamp: Abilities heal
1138
+ for a percentage of the damage they deal. Area of Effect spells only grant
1139
+ one-third of the healing from Spell Vamp.)\",\"plaintext\":\"Increases Spell
1140
+ Vamp and Ability Power\",\"depth\":2,\"from\":[\"1052\",\"1052\"],\"into\":[\"3146\",\"3152\"],\"tags\":[\"SpellDamage\",\"SpellVamp\"],\"image\":{\"full\":\"3145.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":0,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"FlatMagicDamageMod\":40.0}},\"3401\":{\"id\":3401,\"name\":\"Face
1141
+ of the Mountain\",\"gold\":{\"base\":485,\"total\":2200,\"sell\":880,\"purchasable\":true},\"group\":\"GoldBase\",\"description\":\"<stats>+500
1142
+ Health<br>+20 Health Regen per 5 seconds<br>+10% Cooldown Reduction</stats><br><br><unique>UNIQUE
1143
+ Passive - Spoils of War:</unique> Melee basic attacks execute minions below
1144
+ 200 Health. Killing a minion heals you and the nearest allied champion for
1145
+ 50 (+1% of your maximum Health) and grants them kill Gold.<br><br>These effects
1146
+ require a nearby allied champion. Recharges every 30 seconds. Max 4 charges.<br><unique>UNIQUE
1147
+ Active:</unique> Shield target ally for 10% of your maximum Health for 4 seconds.
1148
+ After 4 seconds, the target explodes dealing 100% of their total Attack Damage
1149
+ plus 30% of their Ability Power as magic damage in an area. (60 second cooldown)<br><br><groupLimit>Limited
1150
+ to 1 Gold Income item</groupLimit>\",\"sanitizedDescription\":\"+500 Health
1151
+ +20 Health Regen per 5 seconds +10% Cooldown Reduction UNIQUE Passive - Spoils
1152
+ of War: Melee basic attacks execute minions below 200 Health. Killing a minion
1153
+ heals you and the nearest allied champion for 50 (+1% of your maximum Health)
1154
+ and grants them kill Gold. These effects require a nearby allied champion.
1155
+ Recharges every 30 seconds. Max 4 charges. UNIQUE Active: Shield target ally
1156
+ for 10% of your maximum Health for 4 seconds. After 4 seconds, the target
1157
+ explodes dealing 100% of their total Attack Damage plus 30% of their Ability
1158
+ Power as magic damage in an area. (60 second cooldown) Limited to 1 Gold Income
1159
+ item\",\"plaintext\":\"Shield an ally from damage based on your Health\",\"depth\":3,\"from\":[\"3097\",\"3067\"],\"tags\":[\"Health\",\"HealthRegen\",\"CooldownReduction\",\"GoldPer\"],\"image\":{\"full\":\"3401.png\",\"sprite\":\"item2.png\",\"group\":\"item\",\"x\":336,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":500.0,\"FlatHPRegenMod\":4.0}},\"3144\":{\"id\":3144,\"name\":\"Bilgewater
1160
+ Cutlass\",\"gold\":{\"base\":240,\"total\":1400,\"sell\":980,\"purchasable\":true},\"description\":\"<stats>+25
1161
+ Attack Damage<br>+12% Life Steal</stats><br><br><active>UNIQUE Active:</active>
1162
+ Deals 100 magic damage and slows the target champion's Movement Speed by 25%
1163
+ for 2 seconds (90 second cooldown).\",\"sanitizedDescription\":\"+25 Attack
1164
+ Damage +12% Life Steal UNIQUE Active: Deals 100 magic damage and slows the
1165
+ target champion's Movement Speed by 25% for 2 seconds (90 second cooldown).\",\"plaintext\":\"Activate
1166
+ to deal magic damage and slow target champion\",\"depth\":3,\"from\":[\"1036\",\"1053\"],\"into\":[\"3146\",\"3153\"],\"tags\":[\"Damage\",\"LifeSteal\",\"Slow\",\"Active\"],\"image\":{\"full\":\"3144.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":432,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatPhysicalDamageMod\":25.0,\"PercentLifeStealMod\":0.12}},\"3406\":{\"id\":3406,\"name\":\"Bonetooth
1167
+ Necklace\",\"gold\":{\"base\":0,\"total\":0,\"sell\":0,\"purchasable\":false},\"group\":\"RelicBase\",\"description\":\"<unique>UNIQUE
1168
+ Active - Sweeping Lens:</unique> Reveals and disables nearby invisible traps
1169
+ and invisible wards for 4 seconds in a small radius (90 second cooldown).
1170
+ Active upgrades at 6 Trophies.<br><br><unique>UNIQUE Passive - Mementos of
1171
+ the Hunt:</unique> Rengar collects trophies when killing Champions and gains
1172
+ bonus effects based on how many trophies he has. Kills and assists grant 1
1173
+ trophy.<br><br><passive>3 Trophies:</passive> Rengar gains 25 Movement Speed
1174
+ whilst out of combat or in brush. <br><passive>6 Trophies:</passive> Increases
1175
+ the range of Rengar's Leap by 125.<br><passive>12 Trophies:</passive> Thrill
1176
+ of the Hunt's duration is increased by 5 seconds.<br><passive>20 Trophies:</passive>
1177
+ Thrill of the Hunt's Movement Speed while stealthed is doubled.\",\"sanitizedDescription\":\"UNIQUE
1178
+ Active - Sweeping Lens: Reveals and disables nearby invisible traps and invisible
1179
+ wards for 4 seconds in a small radius (90 second cooldown). Active upgrades
1180
+ at 6 Trophies. UNIQUE Passive - Mementos of the Hunt: Rengar collects trophies
1181
+ when killing Champions and gains bonus effects based on how many trophies
1182
+ he has. Kills and assists grant 1 trophy. 3 Trophies: Rengar gains 25 Movement
1183
+ Speed whilst out of combat or in brush. 6 Trophies: Increases the range of
1184
+ Rengar's Leap by 125. 12 Trophies: Thrill of the Hunt's duration is increased
1185
+ by 5 seconds. 20 Trophies: Thrill of the Hunt's Movement Speed while stealthed
1186
+ is doubled.\",\"inStore\":false,\"hideFromAll\":true,\"requiredChampion\":\"Rengar\",\"tags\":[\"Movement\",\"Active\",\"Vision\",\"Trinket\"],\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3406.png\",\"sprite\":\"item2.png\",\"group\":\"item\",\"x\":144,\"y\":96,\"w\":48,\"h\":48},\"stats\":{}},\"3141\":{\"id\":3141,\"name\":\"Sword
1187
+ of the Occult\",\"gold\":{\"base\":840,\"total\":1200,\"sell\":840,\"purchasable\":true},\"description\":\"<stats>+10
1188
+ Attack Damage </stats><br><br><unique>UNIQUE Passive:</unique> Grants +5 Attack
1189
+ Damage per stack. Grants 2 stacks for a kill or 1 stack for an assist (max
1190
+ 20 stacks). A third of the stacks are lost upon death. At 20 stacks, grants
1191
+ +15% bonus Movement Speed.\",\"sanitizedDescription\":\"+10 Attack Damage
1192
+ UNIQUE Passive: Grants +5 Attack Damage per stack. Grants 2 stacks for a kill
1193
+ or 1 stack for an assist (max 20 stacks). A third of the stacks are lost upon
1194
+ death. At 20 stacks, grants +15% bonus Movement Speed.\",\"colloq\":\"soto\",\"plaintext\":\"Grants
1195
+ Attack Damage for kills and assists\",\"depth\":2,\"from\":[\"1036\"],\"tags\":[\"Damage\"],\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3141.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":288,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatPhysicalDamageMod\":10.0}},\"3211\":{\"id\":3211,\"name\":\"Spectre's
1196
+ Cowl\",\"gold\":{\"base\":280,\"total\":1400,\"sell\":980,\"purchasable\":true},\"description\":\"<stats>+200
1197
+ Health<br>+45 Magic Resist</stats><br><br><unique>UNIQUE Passive:</unique>
1198
+ Grants 15 Health Regen per 5 seconds for up to 10 seconds after taking damage
1199
+ from an enemy champion.<br><br>\",\"sanitizedDescription\":\"+200 Health +45
1200
+ Magic Resist UNIQUE Passive: Grants 15 Health Regen per 5 seconds for up to
1201
+ 10 seconds after taking damage from an enemy champion.\",\"colloq\":\"hat\",\"plaintext\":\"Improves
1202
+ defense and grants regeneration upon being damage\",\"depth\":2,\"from\":[\"1028\",\"1057\"],\"into\":[\"3065\",\"3102\"],\"tags\":[\"Health\",\"SpellBlock\",\"HealthRegen\"],\"image\":{\"full\":\"3211.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":288,\"y\":288,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":200.0,\"FlatSpellBlockMod\":45.0}},\"3405\":{\"id\":3405,\"name\":\"Bonetooth
1203
+ Necklace\",\"gold\":{\"base\":0,\"total\":0,\"sell\":0,\"purchasable\":true},\"group\":\"RelicBase\",\"description\":\"<unique>UNIQUE
1204
+ Active - Sweeping Lens:</unique> Reveals and disables nearby invisible traps
1205
+ and invisible wards for 4 seconds in a small radius (90 second cooldown).
1206
+ Active upgrades at 6 Trophies.<br><br><unique>UNIQUE Passive - Mementos of
1207
+ the Hunt:</unique> Rengar collects trophies when killing Champions and gains
1208
+ bonus effects based on how many trophies he has. Kills and assists grant 1
1209
+ trophy.<br><br><passive>3 Trophies:</passive> Rengar gains 25 Movement Speed
1210
+ whilst out of combat or in brush. <br><passive>6 Trophies:</passive> Increases
1211
+ the range of Rengar's Leap by 125.<br><passive>12 Trophies:</passive> Thrill
1212
+ of the Hunt's duration is increased by 5 seconds.<br><passive>20 Trophies:</passive>
1213
+ Thrill of the Hunt's Movement Speed while stealthed is doubled.\",\"sanitizedDescription\":\"UNIQUE
1214
+ Active - Sweeping Lens: Reveals and disables nearby invisible traps and invisible
1215
+ wards for 4 seconds in a small radius (90 second cooldown). Active upgrades
1216
+ at 6 Trophies. UNIQUE Passive - Mementos of the Hunt: Rengar collects trophies
1217
+ when killing Champions and gains bonus effects based on how many trophies
1218
+ he has. Kills and assists grant 1 trophy. 3 Trophies: Rengar gains 25 Movement
1219
+ Speed whilst out of combat or in brush. 6 Trophies: Increases the range of
1220
+ Rengar's Leap by 125. 12 Trophies: Thrill of the Hunt's duration is increased
1221
+ by 5 seconds. 20 Trophies: Thrill of the Hunt's Movement Speed while stealthed
1222
+ is doubled.\",\"requiredChampion\":\"Rengar\",\"tags\":[\"Movement\",\"Active\",\"Vision\",\"Trinket\"],\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3405.png\",\"sprite\":\"item2.png\",\"group\":\"item\",\"x\":96,\"y\":96,\"w\":48,\"h\":48},\"stats\":{}},\"3140\":{\"id\":3140,\"name\":\"Quicksilver
1223
+ Sash\",\"gold\":{\"base\":830,\"total\":1550,\"sell\":1085,\"purchasable\":true},\"description\":\"<stats>+45
1224
+ Magic Resist</stats><br><br><active>UNIQUE Active - Quicksilver:</active>
1225
+ Removes all debuffs (90 second cooldown).\",\"sanitizedDescription\":\"+45
1226
+ Magic Resist UNIQUE Active - Quicksilver: Removes all debuffs (90 second cooldown).\",\"colloq\":\"qss\",\"plaintext\":\"Activate
1227
+ to remove all debuffs\",\"depth\":2,\"from\":[\"1057\"],\"into\":[\"3139\",\"3137\"],\"tags\":[\"SpellBlock\",\"Active\"],\"image\":{\"full\":\"3140.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":240,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatSpellBlockMod\":45.0}},\"3420\":{\"id\":3420,\"name\":\"Bonetooth
1228
+ Necklace\",\"gold\":{\"base\":0,\"total\":0,\"sell\":0,\"purchasable\":false},\"group\":\"RelicBase\",\"description\":\"<unique>UNIQUE
1229
+ Passive - Mementos of the Hunt:</unique> Rengar collects trophies when killing
1230
+ Champions and gains bonus effects based on how many trophies he has. Kills
1231
+ and assists grant 1 trophy.<br><br><passive>3 Trophies:</passive> Rengar gains
1232
+ 25 Movement Speed whilst out of combat or in brush. <br><passive>6 Trophies:</passive>
1233
+ Increases the range of Rengar's Leap by 125.<br><passive>12 Trophies:</passive>
1234
+ Thrill of the Hunt's duration is increased by 5 seconds.<br><passive>20 Trophies:</passive>
1235
+ Thrill of the Hunt's Movement Speed while stealthed is doubled.\",\"sanitizedDescription\":\"UNIQUE
1236
+ Passive - Mementos of the Hunt: Rengar collects trophies when killing Champions
1237
+ and gains bonus effects based on how many trophies he has. Kills and assists
1238
+ grant 1 trophy. 3 Trophies: Rengar gains 25 Movement Speed whilst out of combat
1239
+ or in brush. 6 Trophies: Increases the range of Rengar's Leap by 125. 12 Trophies:
1240
+ Thrill of the Hunt's duration is increased by 5 seconds. 20 Trophies: Thrill
1241
+ of the Hunt's Movement Speed while stealthed is doubled.\",\"inStore\":false,\"hideFromAll\":true,\"requiredChampion\":\"Rengar\",\"tags\":[\"Movement\",\"Active\",\"Vision\",\"Trinket\"],\"maps\":{\"1\":false},\"image\":{\"full\":\"3420.png\",\"sprite\":\"item2.png\",\"group\":\"item\",\"x\":336,\"y\":144,\"w\":48,\"h\":48},\"stats\":{}},\"3124\":{\"id\":3124,\"name\":\"Guinsoo's
1242
+ Rageblade\",\"gold\":{\"base\":865,\"total\":2600,\"sell\":1820,\"purchasable\":true},\"description\":\"<stats>+30
1243
+ Attack Damage<br>+40 Ability Power</stats><br><br><passive>Passive:</passive>
1244
+ Basic attacks (on attack) and spell casts grant +4% Attack Speed and +4 Ability
1245
+ Power for 8 seconds (stacks up to 8 times).<br><unique>UNIQUE Passive:</unique>
1246
+ Falling below 50% Health grants +20% Attack Speed, +10% Life Steal, and +10%
1247
+ Spell Vamp until out of combat (30 second cooldown).\",\"sanitizedDescription\":\"+30
1248
+ Attack Damage +40 Ability Power Passive: Basic attacks (on attack) and spell
1249
+ casts grant +4% Attack Speed and +4 Ability Power for 8 seconds (stacks up
1250
+ to 8 times). UNIQUE Passive: Falling below 50% Health grants +20% Attack Speed,
1251
+ +10% Life Steal, and +10% Spell Vamp until out of combat (30 second cooldown).\",\"plaintext\":\"Increases
1252
+ Ability Power and Attack Damage\",\"depth\":2,\"from\":[\"1026\",\"1037\"],\"tags\":[\"Damage\",\"AttackSpeed\",\"LifeSteal\",\"SpellDamage\",\"SpellVamp\",\"OnHit\"],\"image\":{\"full\":\"3124.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":384,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatMagicDamageMod\":40.0,\"FlatPhysicalDamageMod\":30.0}},\"3128\":{\"id\":3128,\"name\":\"Deathfire
1253
+ Grasp\",\"gold\":{\"base\":680,\"total\":3100,\"sell\":2170,\"purchasable\":true},\"description\":\"<stats>+120
1254
+ Ability Power<br>+10% Cooldown Reduction</stats><br><br><active>UNIQUE Active:</active>
1255
+ Deals 15% of target champion's maximum Health in magic damage and increases
1256
+ all subsequent magic damage taken by the target by 20% for 4 seconds (60 second
1257
+ cooldown).\",\"sanitizedDescription\":\"+120 Ability Power +10% Cooldown Reduction
1258
+ UNIQUE Active: Deals 15% of target champion's maximum Health in magic damage
1259
+ and increases all subsequent magic damage taken by the target by 20% for 4
1260
+ seconds (60 second cooldown).\",\"colloq\":\"dfg\",\"plaintext\":\"Activate
1261
+ to increase all magic damage dealt to an enemy champion\",\"depth\":3,\"from\":[\"1058\",\"3108\"],\"tags\":[\"SpellDamage\",\"CooldownReduction\",\"Active\"],\"maps\":{\"10\":false,\"8\":false},\"image\":{\"full\":\"3128.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":432,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatMagicDamageMod\":120.0}},\"3029\":{\"id\":3029,\"name\":\"Rod
1262
+ of Ages (Crystal Scar)\",\"gold\":{\"base\":740,\"total\":2800,\"sell\":1960,\"purchasable\":true},\"description\":\"<stats>+450
1263
+ Health<br>+450 Mana<br>+60 Ability Power</stats><br><br><passive>Passive:</passive>
1264
+ Grants +20 Health, +20 Mana, and +2 Ability Power per stack (max +200 Health,
1265
+ +200 Mana, and +20 Ability Power). Grants 1 stack per 40 seconds (max 10 stacks).<br><unique>UNIQUE
1266
+ Passive - Valor's Reward:</unique> Upon leveling up, restores 150 Health and
1267
+ 200 Mana over 8 seconds.<br><br><i>(Unique Passives with the same name don't
1268
+ stack.)</i>\",\"sanitizedDescription\":\"+450 Health +450 Mana +60 Ability
1269
+ Power Passive: Grants +20 Health, +20 Mana, and +2 Ability Power per stack
1270
+ (max +200 Health, +200 Mana, and +20 Ability Power). Grants 1 stack per 40
1271
+ seconds (max 10 stacks). UNIQUE Passive - Valor's Reward: Upon leveling up,
1272
+ restores 150 Health and 200 Mana over 8 seconds. (Unique Passives with the
1273
+ same name don't stack.)\",\"colloq\":\"roa\",\"plaintext\":\"Greatly increases
1274
+ Health, Mana, and Ability Power\",\"depth\":3,\"from\":[\"3010\",\"1026\"],\"tags\":[\"Health\",\"HealthRegen\",\"SpellDamage\",\"Mana\",\"ManaRegen\"],\"maps\":{\"1\":false,\"10\":false,\"12\":false},\"image\":{\"full\":\"3029.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":96,\"y\":288,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":450.0,\"FlatMPPoolMod\":450.0,\"FlatMagicDamageMod\":60.0}},\"3027\":{\"id\":3027,\"name\":\"Rod
1275
+ of Ages\",\"gold\":{\"base\":740,\"total\":2800,\"sell\":1960,\"purchasable\":true},\"description\":\"<stats>+450
1276
+ Health<br>+450 Mana<br>+60 Ability Power</stats><br><br><passive>Passive:</passive>
1277
+ Grants +20 Health, +20 Mana, and +2 Ability Power per stack (max +200 Health,
1278
+ +200 Mana, and +20 Ability Power). Grants 1 stack per minute (max 10 stacks).<br><unique>UNIQUE
1279
+ Passive - Valor's Reward:</unique> Upon leveling up, restores 150 Health and
1280
+ 200 Mana over 8 seconds.<br><br><i>(Unique Passives with the same name don't
1281
+ stack.)</i>\",\"sanitizedDescription\":\"+450 Health +450 Mana +60 Ability
1282
+ Power Passive: Grants +20 Health, +20 Mana, and +2 Ability Power per stack
1283
+ (max +200 Health, +200 Mana, and +20 Ability Power). Grants 1 stack per minute
1284
+ (max 10 stacks). UNIQUE Passive - Valor's Reward: Upon leveling up, restores
1285
+ 150 Health and 200 Mana over 8 seconds. (Unique Passives with the same name
1286
+ don't stack.)\",\"colloq\":\"roa\",\"plaintext\":\"Greatly increases Health,
1287
+ Mana, and Ability Power\",\"depth\":3,\"from\":[\"3010\",\"1026\"],\"tags\":[\"Health\",\"HealthRegen\",\"SpellDamage\",\"Mana\",\"ManaRegen\"],\"maps\":{\"8\":false},\"image\":{\"full\":\"3027.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":0,\"y\":288,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":450.0,\"FlatMPPoolMod\":450.0,\"FlatMagicDamageMod\":60.0}},\"3028\":{\"id\":3028,\"name\":\"Chalice
1288
+ of Harmony\",\"gold\":{\"base\":120,\"total\":880,\"sell\":616,\"purchasable\":true},\"description\":\"<stats>+25
1289
+ Magic Resist<br>+7 Mana Regen per 5 seconds</stats><br><br><unique>UNIQUE
1290
+ Passive - Mana Font:</unique> Increases Mana Regen by 1% per 1% of missing
1291
+ Mana.<br><br><i>(Unique Passives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"+25
1292
+ Magic Resist +7 Mana Regen per 5 seconds UNIQUE Passive - Mana Font: Increases
1293
+ Mana Regen by 1% per 1% of missing Mana. (Unique Passives with the same name
1294
+ don't stack.)\",\"plaintext\":\"Greatly increases Mana Regen\",\"depth\":2,\"from\":[\"1004\",\"1033\",\"1004\"],\"into\":[\"3174\",\"3222\"],\"tags\":[\"SpellBlock\",\"ManaRegen\"],\"image\":{\"full\":\"3028.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":48,\"y\":288,\"w\":48,\"h\":48},\"stats\":{\"FlatMPRegenMod\":1.4,\"FlatSpellBlockMod\":25.0}},\"3025\":{\"id\":3025,\"name\":\"Iceborn
1295
+ Gauntlet\",\"gold\":{\"base\":750,\"total\":2900,\"sell\":2030,\"purchasable\":true},\"description\":\"<stats>+500
1296
+ Mana<br>+60 Armor<br>+30 Ability Power<br>+10% Cooldown Reduction </stats><br><br><unique>UNIQUE
1297
+ Passive - Spellblade:</unique> After using an ability, the next basic attack
1298
+ (on hit) deals bonus physical damage equal to 125% of base Attack Damage to
1299
+ enemies near the target, and creates a field around the target for 2 seconds
1300
+ that slows enemy Movement Speed by 30% (2 second cooldown, half-sized field
1301
+ if ranged).<br><br><i>(Unique Passives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"+500
1302
+ Mana +60 Armor +30 Ability Power +10% Cooldown Reduction UNIQUE Passive -
1303
+ Spellblade: After using an ability, the next basic attack (on hit) deals bonus
1304
+ physical damage equal to 125% of base Attack Damage to enemies near the target,
1305
+ and creates a field around the target for 2 seconds that slows enemy Movement
1306
+ Speed by 30% (2 second cooldown, half-sized field if ranged). (Unique Passives
1307
+ with the same name don't stack.)\",\"colloq\":\"frozen fist\",\"plaintext\":\"Basic
1308
+ attacks create a slow field after spell cast\",\"depth\":3,\"from\":[\"3057\",\"3024\"],\"tags\":[\"Armor\",\"SpellDamage\",\"Mana\",\"CooldownReduction\",\"Slow\"],\"image\":{\"full\":\"3025.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":384,\"y\":240,\"w\":48,\"h\":48},\"stats\":{\"FlatArmorMod\":60.0,\"FlatMPPoolMod\":500.0,\"FlatMagicDamageMod\":30.0}},\"3026\":{\"id\":3026,\"name\":\"Guardian
1309
+ Angel\",\"gold\":{\"base\":1310,\"total\":2750,\"sell\":1100,\"purchasable\":true},\"description\":\"<stats>+50
1310
+ Armor<br>+40 Magic Resist</stats><br><br><unique>UNIQUE Passive:</unique>
1311
+ Upon taking lethal damage, restores 30% of maximum Health and Mana after 4
1312
+ seconds of stasis (5 minute cooldown).\",\"sanitizedDescription\":\"+50 Armor
1313
+ +40 Magic Resist UNIQUE Passive: Upon taking lethal damage, restores 30% of
1314
+ maximum Health and Mana after 4 seconds of stasis (5 minute cooldown).\",\"colloq\":\"ga\",\"plaintext\":\"Periodically
1315
+ revives champion upon death\",\"depth\":2,\"from\":[\"1057\",\"1031\"],\"tags\":[\"SpellBlock\",\"Armor\"],\"maps\":{\"10\":false,\"12\":false},\"image\":{\"full\":\"3026.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":432,\"y\":240,\"w\":48,\"h\":48},\"stats\":{\"FlatArmorMod\":50.0,\"FlatSpellBlockMod\":40.0}},\"3035\":{\"id\":3035,\"name\":\"Last
1316
+ Whisper\",\"gold\":{\"base\":1065,\"total\":2300,\"sell\":1610,\"purchasable\":true},\"description\":\"<stats>+40
1317
+ Attack Damage</stats><br><br><unique>UNIQUE Passive:</unique> Physical damage
1318
+ ignores 35% of the target's Armor (applies before Armor Penetration).\",\"sanitizedDescription\":\"+40
1319
+ Attack Damage UNIQUE Passive: Physical damage ignores 35% of the target's
1320
+ Armor (applies before Armor Penetration).\",\"colloq\":\"lw\",\"plaintext\":\"Increases
1321
+ physical damage\",\"depth\":2,\"from\":[\"1037\",\"1036\"],\"tags\":[\"Damage\",\"ArmorPenetration\"],\"image\":{\"full\":\"3035.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":192,\"y\":288,\"w\":48,\"h\":48},\"stats\":{\"FlatPhysicalDamageMod\":40.0}},\"3031\":{\"id\":3031,\"name\":\"Infinity
1322
+ Edge\",\"gold\":{\"base\":645,\"total\":3800,\"sell\":2660,\"purchasable\":true},\"description\":\"<stats>+70
1323
+ Attack Damage<br>+25% Critical Strike Chance</stats><br><br><unique>UNIQUE
1324
+ Passive:</unique> Critical strikes deal 250% damage instead of 200%.\",\"sanitizedDescription\":\"+70
1325
+ Attack Damage +25% Critical Strike Chance UNIQUE Passive: Critical strikes
1326
+ deal 250% damage instead of 200%.\",\"colloq\":\"ie\",\"plaintext\":\"Massively
1327
+ enhances critical strikes\",\"depth\":2,\"from\":[\"1038\",\"1037\",\"1018\"],\"tags\":[\"Damage\",\"CriticalStrike\"],\"maps\":{\"10\":false,\"8\":false},\"image\":{\"full\":\"3031.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":144,\"y\":288,\"w\":48,\"h\":48},\"stats\":{\"FlatCritChanceMod\":0.25,\"FlatPhysicalDamageMod\":70.0}},\"3419\":{\"id\":3419,\"name\":\"Bonetooth
1328
+ Necklace\",\"gold\":{\"base\":0,\"total\":0,\"sell\":0,\"purchasable\":false},\"group\":\"RelicBase\",\"description\":\"<unique>UNIQUE
1329
+ Passive - Mementos of the Hunt:</unique> Rengar collects trophies when killing
1330
+ Champions and gains bonus effects based on how many trophies he has. Kills
1331
+ and assists grant 1 trophy.<br><br><passive>3 Trophies:</passive> Rengar gains
1332
+ 25 Movement Speed whilst out of combat or in brush. <br><passive>6 Trophies:</passive>
1333
+ Increases the range of Rengar's Leap by 125.<br><passive>12 Trophies:</passive>
1334
+ Thrill of the Hunt's duration is increased by 5 seconds.<br><passive>20 Trophies:</passive>
1335
+ Thrill of the Hunt's Movement Speed while stealthed is doubled.\",\"sanitizedDescription\":\"UNIQUE
1336
+ Passive - Mementos of the Hunt: Rengar collects trophies when killing Champions
1337
+ and gains bonus effects based on how many trophies he has. Kills and assists
1338
+ grant 1 trophy. 3 Trophies: Rengar gains 25 Movement Speed whilst out of combat
1339
+ or in brush. 6 Trophies: Increases the range of Rengar's Leap by 125. 12 Trophies:
1340
+ Thrill of the Hunt's duration is increased by 5 seconds. 20 Trophies: Thrill
1341
+ of the Hunt's Movement Speed while stealthed is doubled.\",\"inStore\":false,\"hideFromAll\":true,\"requiredChampion\":\"Rengar\",\"tags\":[\"Movement\",\"Active\",\"Vision\",\"Trinket\"],\"maps\":{\"1\":false},\"image\":{\"full\":\"3419.png\",\"sprite\":\"item2.png\",\"group\":\"item\",\"x\":288,\"y\":144,\"w\":48,\"h\":48},\"stats\":{}},\"3418\":{\"id\":3418,\"name\":\"Bonetooth
1342
+ Necklace\",\"gold\":{\"base\":0,\"total\":0,\"sell\":0,\"purchasable\":false},\"group\":\"RelicBase\",\"description\":\"<unique>UNIQUE
1343
+ Passive - Mementos of the Hunt:</unique> Rengar collects trophies when killing
1344
+ Champions and gains bonus effects based on how many trophies he has. Kills
1345
+ and assists grant 1 trophy.<br><br><passive>3 Trophies:</passive> Rengar gains
1346
+ 25 Movement Speed whilst out of combat or in brush. <br><passive>6 Trophies:</passive>
1347
+ Increases the range of Rengar's Leap by 125.<br><passive>12 Trophies:</passive>
1348
+ Thrill of the Hunt's duration is increased by 5 seconds.<br><passive>20 Trophies:</passive>
1349
+ Thrill of the Hunt's Movement Speed while stealthed is doubled.\",\"sanitizedDescription\":\"UNIQUE
1350
+ Passive - Mementos of the Hunt: Rengar collects trophies when killing Champions
1351
+ and gains bonus effects based on how many trophies he has. Kills and assists
1352
+ grant 1 trophy. 3 Trophies: Rengar gains 25 Movement Speed whilst out of combat
1353
+ or in brush. 6 Trophies: Increases the range of Rengar's Leap by 125. 12 Trophies:
1354
+ Thrill of the Hunt's duration is increased by 5 seconds. 20 Trophies: Thrill
1355
+ of the Hunt's Movement Speed while stealthed is doubled.\",\"inStore\":false,\"hideFromAll\":true,\"requiredChampion\":\"Rengar\",\"tags\":[\"Movement\",\"Active\",\"Vision\",\"Trinket\"],\"maps\":{\"1\":false},\"image\":{\"full\":\"3418.png\",\"sprite\":\"item2.png\",\"group\":\"item\",\"x\":240,\"y\":144,\"w\":48,\"h\":48},\"stats\":{}},\"3417\":{\"id\":3417,\"name\":\"Bonetooth
1356
+ Necklace\",\"gold\":{\"base\":0,\"total\":0,\"sell\":0,\"purchasable\":true},\"group\":\"RelicBase\",\"description\":\"<unique>UNIQUE
1357
+ Passive - Mementos of the Hunt:</unique> Rengar collects trophies when killing
1358
+ Champions and gains bonus effects based on how many trophies he has. Kills
1359
+ and assists grant 1 trophy.<br><br><passive>3 Trophies:</passive> Rengar gains
1360
+ 25 Movement Speed whilst out of combat or in brush. <br><passive>6 Trophies:</passive>
1361
+ Increases the range of Rengar's Leap by 125.<br><passive>12 Trophies:</passive>
1362
+ Thrill of the Hunt's duration is increased by 5 seconds.<br><passive>20 Trophies:</passive>
1363
+ Thrill of the Hunt's Movement Speed while stealthed is doubled.\",\"sanitizedDescription\":\"UNIQUE
1364
+ Passive - Mementos of the Hunt: Rengar collects trophies when killing Champions
1365
+ and gains bonus effects based on how many trophies he has. Kills and assists
1366
+ grant 1 trophy. 3 Trophies: Rengar gains 25 Movement Speed whilst out of combat
1367
+ or in brush. 6 Trophies: Increases the range of Rengar's Leap by 125. 12 Trophies:
1368
+ Thrill of the Hunt's duration is increased by 5 seconds. 20 Trophies: Thrill
1369
+ of the Hunt's Movement Speed while stealthed is doubled.\",\"requiredChampion\":\"Rengar\",\"tags\":[\"Movement\",\"Active\",\"Vision\",\"Trinket\"],\"maps\":{\"1\":false},\"image\":{\"full\":\"3417.png\",\"sprite\":\"item2.png\",\"group\":\"item\",\"x\":192,\"y\":144,\"w\":48,\"h\":48},\"stats\":{}},\"3222\":{\"id\":3222,\"name\":\"Mikael's
1370
+ Crucible\",\"gold\":{\"base\":720,\"total\":1600,\"sell\":1120,\"purchasable\":true},\"description\":\"<stats>+40
1371
+ Magic Resist<br>+12 Mana Regen per 5 seconds</stats><br><br><unique>UNIQUE
1372
+ Passive - Mana Font:</unique> Increases Mana Regen by 1% for every 1% of missing
1373
+ Mana.<br><active>UNIQUE Active:</active> Removes all stuns, roots, taunts,
1374
+ fears, silences, and slows on an allied champion and heals that champion for
1375
+ 150 (+10% of maximum Health) (180 second cooldown).<br><br><i>(Unique Passives
1376
+ with the same name do not stack.)</i>\",\"sanitizedDescription\":\"+40 Magic
1377
+ Resist +12 Mana Regen per 5 seconds UNIQUE Passive - Mana Font: Increases
1378
+ Mana Regen by 1% for every 1% of missing Mana. UNIQUE Active: Removes all
1379
+ stuns, roots, taunts, fears, silences, and slows on an allied champion and
1380
+ heals that champion for 150 (+10% of maximum Health) (180 second cooldown).
1381
+ (Unique Passives with the same name do not stack.)\",\"plaintext\":\"Activate
1382
+ to heal and remove all disabling effects from an allied champion\",\"depth\":3,\"from\":[\"3028\"],\"tags\":[\"SpellBlock\",\"ManaRegen\",\"Active\"],\"image\":{\"full\":\"3222.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":336,\"y\":288,\"w\":48,\"h\":48},\"stats\":{\"FlatMPRegenMod\":2.4,\"FlatSpellBlockMod\":40.0}},\"3416\":{\"id\":3416,\"name\":\"Bonetooth
1383
+ Necklace\",\"gold\":{\"base\":0,\"total\":0,\"sell\":0,\"purchasable\":false},\"group\":\"RelicBase\",\"description\":\"<unique>UNIQUE
1384
+ Active - Scrying:</unique> Reveals a small location within 4000 range for
1385
+ 1 second. Enemy champions found will be revealed for 5 seconds (90 second
1386
+ cooldown).<br><br><unique>UNIQUE Passive - Mementos of the Hunt:</unique>
1387
+ Rengar collects trophies when killing Champions and gains bonus effects based
1388
+ on how many trophies he has. Kills and assists grant 1 trophy.<br><br><passive>3
1389
+ Trophies:</passive> Rengar gains 25 Movement Speed whilst out of combat or
1390
+ in brush. <br><passive>6 Trophies:</passive> Increases the range of Rengar's
1391
+ Leap by 125.<br><passive>12 Trophies:</passive> Thrill of the Hunt's duration
1392
+ is increased by 5 seconds.<br><passive>20 Trophies:</passive> Thrill of the
1393
+ Hunt's Movement Speed while stealthed is doubled.\",\"sanitizedDescription\":\"UNIQUE
1394
+ Active - Scrying: Reveals a small location within 4000 range for 1 second.
1395
+ Enemy champions found will be revealed for 5 seconds (90 second cooldown).
1396
+ UNIQUE Passive - Mementos of the Hunt: Rengar collects trophies when killing
1397
+ Champions and gains bonus effects based on how many trophies he has. Kills
1398
+ and assists grant 1 trophy. 3 Trophies: Rengar gains 25 Movement Speed whilst
1399
+ out of combat or in brush. 6 Trophies: Increases the range of Rengar's Leap
1400
+ by 125. 12 Trophies: Thrill of the Hunt's duration is increased by 5 seconds.
1401
+ 20 Trophies: Thrill of the Hunt's Movement Speed while stealthed is doubled.\",\"depth\":2,\"from\":[\"3169\"],\"specialRecipe\":3169,\"inStore\":false,\"hideFromAll\":true,\"requiredChampion\":\"Rengar\",\"tags\":[\"Movement\",\"Active\",\"Vision\",\"Trinket\"],\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3416.png\",\"sprite\":\"item2.png\",\"group\":\"item\",\"x\":144,\"y\":144,\"w\":48,\"h\":48},\"stats\":{}},\"3415\":{\"id\":3415,\"name\":\"Bonetooth
1402
+ Necklace\",\"gold\":{\"base\":0,\"total\":0,\"sell\":0,\"purchasable\":false},\"group\":\"RelicBase\",\"description\":\"<unique>UNIQUE
1403
+ Active - Scrying:</unique> Reveals a small location within 4000 range for
1404
+ 1 second. Enemy champions found will be revealed for 5 seconds (90 second
1405
+ cooldown).<br><br><unique>UNIQUE Passive - Mementos of the Hunt:</unique>
1406
+ Rengar collects trophies when killing Champions and gains bonus effects based
1407
+ on how many trophies he has. Kills and assists grant 1 trophy.<br><br><passive>3
1408
+ Trophies:</passive> Rengar gains 25 Movement Speed whilst out of combat or
1409
+ in brush. <br><passive>6 Trophies:</passive> Increases the range of Rengar's
1410
+ Leap by 125.<br><passive>12 Trophies:</passive> Thrill of the Hunt's duration
1411
+ is increased by 5 seconds.<br><passive>20 Trophies:</passive> Thrill of the
1412
+ Hunt's Movement Speed while stealthed is doubled.\",\"sanitizedDescription\":\"UNIQUE
1413
+ Active - Scrying: Reveals a small location within 4000 range for 1 second.
1414
+ Enemy champions found will be revealed for 5 seconds (90 second cooldown).
1415
+ UNIQUE Passive - Mementos of the Hunt: Rengar collects trophies when killing
1416
+ Champions and gains bonus effects based on how many trophies he has. Kills
1417
+ and assists grant 1 trophy. 3 Trophies: Rengar gains 25 Movement Speed whilst
1418
+ out of combat or in brush. 6 Trophies: Increases the range of Rengar's Leap
1419
+ by 125. 12 Trophies: Thrill of the Hunt's duration is increased by 5 seconds.
1420
+ 20 Trophies: Thrill of the Hunt's Movement Speed while stealthed is doubled.\",\"inStore\":false,\"hideFromAll\":true,\"requiredChampion\":\"Rengar\",\"tags\":[\"Movement\",\"Active\",\"Vision\",\"Trinket\"],\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3415.png\",\"sprite\":\"item2.png\",\"group\":\"item\",\"x\":96,\"y\":144,\"w\":48,\"h\":48},\"stats\":{}},\"3414\":{\"id\":3414,\"name\":\"Bonetooth
1421
+ Necklace\",\"gold\":{\"base\":0,\"total\":0,\"sell\":0,\"purchasable\":false},\"group\":\"RelicBase\",\"description\":\"<unique>UNIQUE
1422
+ Active - Scrying:</unique> Reveals a small location within 3500 range for
1423
+ 1 second. Enemy champions found will be revealed for 5 seconds (120 second
1424
+ cooldown). Active upgrades at 20 Trophies.<br><br><unique>UNIQUE Passive -
1425
+ Mementos of the Hunt:</unique> Rengar collects trophies when killing Champions
1426
+ and gains bonus effects based on how many trophies he has. Kills and assists
1427
+ grant 1 trophy.<br><br><passive>3 Trophies:</passive> Rengar gains 25 Movement
1428
+ Speed whilst out of combat or in brush. <br><passive>6 Trophies:</passive>
1429
+ Increases the range of Rengar's Leap by 125.<br><passive>12 Trophies:</passive>
1430
+ Thrill of the Hunt's duration is increased by 5 seconds.<br><passive>20 Trophies:</passive>
1431
+ Thrill of the Hunt's Movement Speed while stealthed is doubled.\",\"sanitizedDescription\":\"UNIQUE
1432
+ Active - Scrying: Reveals a small location within 3500 range for 1 second.
1433
+ Enemy champions found will be revealed for 5 seconds (120 second cooldown).
1434
+ Active upgrades at 20 Trophies. UNIQUE Passive - Mementos of the Hunt: Rengar
1435
+ collects trophies when killing Champions and gains bonus effects based on
1436
+ how many trophies he has. Kills and assists grant 1 trophy. 3 Trophies: Rengar
1437
+ gains 25 Movement Speed whilst out of combat or in brush. 6 Trophies: Increases
1438
+ the range of Rengar's Leap by 125. 12 Trophies: Thrill of the Hunt's duration
1439
+ is increased by 5 seconds. 20 Trophies: Thrill of the Hunt's Movement Speed
1440
+ while stealthed is doubled.\",\"inStore\":false,\"hideFromAll\":true,\"requiredChampion\":\"Rengar\",\"tags\":[\"Movement\",\"Active\",\"Vision\",\"Trinket\"],\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3414.png\",\"sprite\":\"item2.png\",\"group\":\"item\",\"x\":48,\"y\":144,\"w\":48,\"h\":48},\"stats\":{}},\"3413\":{\"id\":3413,\"name\":\"Bonetooth
1441
+ Necklace\",\"gold\":{\"base\":0,\"total\":0,\"sell\":0,\"purchasable\":false},\"group\":\"RelicBase\",\"description\":\"<unique>UNIQUE
1442
+ Active - Scrying:</unique> Reveals a small location within 3500 range for
1443
+ 1 second. Enemy champions found will be revealed for 5 seconds (120 second
1444
+ cooldown). Active upgrades at 20 Trophies.<br><br><unique>UNIQUE Passive -
1445
+ Mementos of the Hunt:</unique> Rengar collects trophies when killing Champions
1446
+ and gains bonus effects based on how many trophies he has. Kills and assists
1447
+ grant 1 trophy.<br><br><passive>3 Trophies:</passive> Rengar gains 25 Movement
1448
+ Speed whilst out of combat or in brush. <br><passive>6 Trophies:</passive>
1449
+ Increases the range of Rengar's Leap by 125.<br><passive>12 Trophies:</passive>
1450
+ Thrill of the Hunt's duration is increased by 5 seconds.<br><passive>20 Trophies:</passive>
1451
+ Thrill of the Hunt's Movement Speed while stealthed is doubled.\",\"sanitizedDescription\":\"UNIQUE
1452
+ Active - Scrying: Reveals a small location within 3500 range for 1 second.
1453
+ Enemy champions found will be revealed for 5 seconds (120 second cooldown).
1454
+ Active upgrades at 20 Trophies. UNIQUE Passive - Mementos of the Hunt: Rengar
1455
+ collects trophies when killing Champions and gains bonus effects based on
1456
+ how many trophies he has. Kills and assists grant 1 trophy. 3 Trophies: Rengar
1457
+ gains 25 Movement Speed whilst out of combat or in brush. 6 Trophies: Increases
1458
+ the range of Rengar's Leap by 125. 12 Trophies: Thrill of the Hunt's duration
1459
+ is increased by 5 seconds. 20 Trophies: Thrill of the Hunt's Movement Speed
1460
+ while stealthed is doubled.\",\"inStore\":false,\"hideFromAll\":true,\"requiredChampion\":\"Rengar\",\"tags\":[\"Movement\",\"Active\",\"Vision\",\"Trinket\"],\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3413.png\",\"sprite\":\"item2.png\",\"group\":\"item\",\"x\":0,\"y\":144,\"w\":48,\"h\":48},\"stats\":{}},\"3134\":{\"id\":3134,\"name\":\"The
1461
+ Brutalizer\",\"gold\":{\"base\":617,\"total\":1337,\"sell\":936,\"purchasable\":true},\"description\":\"<stats>+25
1462
+ Attack Damage</stats><br><br><unique>UNIQUE Passive:</unique> +10% Cooldown
1463
+ Reduction<br><unique>UNIQUE Passive:</unique> +10 Armor Penetration<br><br><i>(Armor
1464
+ Penetration: Physical damage is increased by ignoring an amount of the target's
1465
+ Armor equal to Armor Penetration.)</i>\",\"sanitizedDescription\":\"+25 Attack
1466
+ Damage UNIQUE Passive: +10% Cooldown Reduction UNIQUE Passive: +10 Armor Penetration
1467
+ (Armor Penetration: Physical damage is increased by ignoring an amount of
1468
+ the target's Armor equal to Armor Penetration.)\",\"plaintext\":\"Increases
1469
+ physical damage and Cooldown Reduction\",\"stacks\":0,\"depth\":2,\"from\":[\"1036\",\"1036\"],\"into\":[\"3142\",\"3071\"],\"tags\":[\"Damage\",\"CooldownReduction\",\"ArmorPenetration\"],\"image\":{\"full\":\"3134.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":48,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatPhysicalDamageMod\":25.0}},\"3412\":{\"id\":3412,\"name\":\"Bonetooth
1470
+ Necklace\",\"gold\":{\"base\":0,\"total\":0,\"sell\":0,\"purchasable\":false},\"group\":\"RelicBase\",\"description\":\"<unique>UNIQUE
1471
+ Active - Scrying:</unique> Reveals a small location within 2500 range for
1472
+ 1 second. Enemy champions found will be revealed for 5 seconds (120 second
1473
+ cooldown). Active upgrades at 6 Trophies.<br><br><unique>UNIQUE Passive -
1474
+ Mementos of the Hunt:</unique> Rengar collects trophies when killing Champions
1475
+ and gains bonus effects based on how many trophies he has. Kills and assists
1476
+ grant 1 trophy.<br><br><passive>3 Trophies:</passive> Rengar gains 25 Movement
1477
+ Speed whilst out of combat or in brush. <br><passive>6 Trophies:</passive>
1478
+ Increases the range of Rengar's Leap by 125.<br><passive>12 Trophies:</passive>
1479
+ Thrill of the Hunt's duration is increased by 5 seconds.<br><passive>20 Trophies:</passive>
1480
+ Thrill of the Hunt's Movement Speed while stealthed is doubled.\",\"sanitizedDescription\":\"UNIQUE
1481
+ Active - Scrying: Reveals a small location within 2500 range for 1 second.
1482
+ Enemy champions found will be revealed for 5 seconds (120 second cooldown).
1483
+ Active upgrades at 6 Trophies. UNIQUE Passive - Mementos of the Hunt: Rengar
1484
+ collects trophies when killing Champions and gains bonus effects based on
1485
+ how many trophies he has. Kills and assists grant 1 trophy. 3 Trophies: Rengar
1486
+ gains 25 Movement Speed whilst out of combat or in brush. 6 Trophies: Increases
1487
+ the range of Rengar's Leap by 125. 12 Trophies: Thrill of the Hunt's duration
1488
+ is increased by 5 seconds. 20 Trophies: Thrill of the Hunt's Movement Speed
1489
+ while stealthed is doubled.\",\"inStore\":false,\"hideFromAll\":true,\"requiredChampion\":\"Rengar\",\"tags\":[\"Movement\",\"Active\",\"Vision\",\"Trinket\"],\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3412.png\",\"sprite\":\"item2.png\",\"group\":\"item\",\"x\":432,\"y\":96,\"w\":48,\"h\":48},\"stats\":{}},\"3411\":{\"id\":3411,\"name\":\"Bonetooth
1490
+ Necklace\",\"gold\":{\"base\":0,\"total\":0,\"sell\":0,\"purchasable\":true},\"group\":\"RelicBase\",\"description\":\"<unique>UNIQUE
1491
+ Active - Scrying:</unique> Reveals a small location within 2500 range for
1492
+ 1 second. Enemy champions found will be revealed for 5 seconds (120 second
1493
+ cooldown). Active upgrades at 6 Trophies.<br><br><unique>UNIQUE Passive -
1494
+ Mementos of the Hunt:</unique> Rengar collects trophies when killing Champions
1495
+ and gains bonus effects based on how many trophies he has. Kills and assists
1496
+ grant 1 trophy.<br><br><passive>3 Trophies:</passive> Rengar gains 25 Movement
1497
+ Speed whilst out of combat or in brush. <br><passive>6 Trophies:</passive>
1498
+ Increases the range of Rengar's Leap by 125.<br><passive>12 Trophies:</passive>
1499
+ Thrill of the Hunt's duration is increased by 5 seconds.<br><passive>20 Trophies:</passive>
1500
+ Thrill of the Hunt's Movement Speed while stealthed is doubled.\",\"sanitizedDescription\":\"UNIQUE
1501
+ Active - Scrying: Reveals a small location within 2500 range for 1 second.
1502
+ Enemy champions found will be revealed for 5 seconds (120 second cooldown).
1503
+ Active upgrades at 6 Trophies. UNIQUE Passive - Mementos of the Hunt: Rengar
1504
+ collects trophies when killing Champions and gains bonus effects based on
1505
+ how many trophies he has. Kills and assists grant 1 trophy. 3 Trophies: Rengar
1506
+ gains 25 Movement Speed whilst out of combat or in brush. 6 Trophies: Increases
1507
+ the range of Rengar's Leap by 125. 12 Trophies: Thrill of the Hunt's duration
1508
+ is increased by 5 seconds. 20 Trophies: Thrill of the Hunt's Movement Speed
1509
+ while stealthed is doubled.\",\"requiredChampion\":\"Rengar\",\"tags\":[\"Movement\",\"Active\",\"Vision\",\"Trinket\"],\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3411.png\",\"sprite\":\"item2.png\",\"group\":\"item\",\"x\":384,\"y\":96,\"w\":48,\"h\":48},\"stats\":{}},\"3410\":{\"id\":3410,\"name\":\"Bonetooth
1510
+ Necklace\",\"gold\":{\"base\":0,\"total\":0,\"sell\":0,\"purchasable\":false},\"group\":\"RelicBase\",\"description\":\"<unique>UNIQUE
1511
+ Active - Sweeping Lens:</unique> Reveals and disables nearby invisible traps
1512
+ and invisible wards for 6 seconds in a medium radius and grants detection
1513
+ of invisible units for 10 seconds (90 second cooldown).<br><br><unique>UNIQUE
1514
+ Passive - Mementos of the Hunt:</unique> Rengar collects trophies when killing
1515
+ Champions and gains bonus effects based on how many trophies he has. Kills
1516
+ and assists grant 1 trophy.<br><br><passive>3 Trophies:</passive> Rengar gains
1517
+ 25 Movement Speed whilst out of combat or in brush. <br><passive>6 Trophies:</passive>
1518
+ Increases the range of Rengar's Leap by 125.<br><passive>12 Trophies:</passive>
1519
+ Thrill of the Hunt's duration is increased by 5 seconds.<br><passive>20 Trophies:</passive>
1520
+ Thrill of the Hunt's Movement Speed while stealthed is doubled.\",\"sanitizedDescription\":\"UNIQUE
1521
+ Active - Sweeping Lens: Reveals and disables nearby invisible traps and invisible
1522
+ wards for 6 seconds in a medium radius and grants detection of invisible units
1523
+ for 10 seconds (90 second cooldown). UNIQUE Passive - Mementos of the Hunt:
1524
+ Rengar collects trophies when killing Champions and gains bonus effects based
1525
+ on how many trophies he has. Kills and assists grant 1 trophy. 3 Trophies:
1526
+ Rengar gains 25 Movement Speed whilst out of combat or in brush. 6 Trophies:
1527
+ Increases the range of Rengar's Leap by 125. 12 Trophies: Thrill of the Hunt's
1528
+ duration is increased by 5 seconds. 20 Trophies: Thrill of the Hunt's Movement
1529
+ Speed while stealthed is doubled.\",\"depth\":2,\"from\":[\"3169\"],\"specialRecipe\":3169,\"inStore\":false,\"hideFromAll\":true,\"requiredChampion\":\"Rengar\",\"tags\":[\"Movement\",\"Active\",\"Vision\",\"Trinket\"],\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3410.png\",\"sprite\":\"item2.png\",\"group\":\"item\",\"x\":336,\"y\":96,\"w\":48,\"h\":48},\"stats\":{}},\"3131\":{\"id\":3131,\"name\":\"Sword
1530
+ of the Divine\",\"gold\":{\"base\":850,\"total\":2150,\"sell\":1505,\"purchasable\":true},\"description\":\"<stats>+45%
1531
+ Attack Speed</stats><br><br><passive>Passive:</passive> This item does not
1532
+ grant any Attack Speed while on cooldown. Champion kills reduce the current
1533
+ cooldown by 50%.<br><active>UNIQUE Active:</active> Grants +100% Attack Speed
1534
+ and 100% Critical Strike Chance for 3 seconds or 3 critical strikes (60 second
1535
+ cooldown).\",\"sanitizedDescription\":\"+45% Attack Speed Passive: This item
1536
+ does not grant any Attack Speed while on cooldown. Champion kills reduce the
1537
+ current cooldown by 50%. UNIQUE Active: Grants +100% Attack Speed and 100%
1538
+ Critical Strike Chance for 3 seconds or 3 critical strikes (60 second cooldown).\",\"colloq\":\"sotd\",\"plaintext\":\"Activate
1539
+ to gain 100% Critical Strike Chance for a short duration\",\"depth\":2,\"from\":[\"1043\",\"1042\"],\"tags\":[\"CriticalStrike\",\"AttackSpeed\",\"Active\"],\"image\":{\"full\":\"3131.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":0,\"y\":96,\"w\":48,\"h\":48},\"stats\":{}},\"3113\":{\"id\":3113,\"name\":\"Aether
1540
+ Wisp\",\"gold\":{\"base\":515,\"total\":950,\"sell\":665,\"purchasable\":true},\"description\":\"<stats>+30
1541
+ Ability Power</stats><br><br><unique>UNIQUE Passive:</unique> +5% Movement
1542
+ Speed\",\"sanitizedDescription\":\"+30 Ability Power UNIQUE Passive: +5% Movement
1543
+ Speed\",\"plaintext\":\"Increases Ability Power and Movement Speed\",\"depth\":2,\"from\":[\"1052\"],\"into\":[\"3023\",\"3290\",\"3100\"],\"tags\":[\"SpellDamage\",\"Movement\",\"NonbootsMovement\"],\"image\":{\"full\":\"3113.png\",\"sprite\":\"item2.png\",\"group\":\"item\",\"x\":432,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatMagicDamageMod\":30.0}},\"3114\":{\"id\":3114,\"name\":\"Forbidden
1544
+ Idol\",\"gold\":{\"base\":390,\"total\":750,\"sell\":525,\"purchasable\":true},\"description\":\"<stats>+8
1545
+ Mana Regen per 5 seconds</stats><br><br><unique>UNIQUE Passive:</unique> +10%
1546
+ Cooldown Reduction\",\"sanitizedDescription\":\"+8 Mana Regen per 5 seconds
1547
+ UNIQUE Passive: +10% Cooldown Reduction\",\"plaintext\":\"Increases Mana Regeneration
1548
+ and Cooldown Reduction\",\"depth\":2,\"from\":[\"1004\",\"1004\"],\"into\":[\"3023\",\"3069\",\"3165\"],\"tags\":[\"ManaRegen\",\"CooldownReduction\"],\"image\":{\"full\":\"3114.png\",\"sprite\":\"item2.png\",\"group\":\"item\",\"x\":0,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatMPRegenMod\":1.6}},\"3115\":{\"id\":3115,\"name\":\"Nashor's
1549
+ Tooth\",\"gold\":{\"base\":850,\"total\":2920,\"sell\":2044,\"purchasable\":true},\"description\":\"<stats>+50%
1550
+ Attack Speed<br>+60 Ability Power</stats><br><br><unique>UNIQUE Passive:</unique>
1551
+ +20% Cooldown Reduction<br><unique>UNIQUE Passive:</unique> Basic attacks
1552
+ deal 15 (+15% of Ability Power) bonus magic damage on hit.<br>\",\"sanitizedDescription\":\"+50%
1553
+ Attack Speed +60 Ability Power UNIQUE Passive: +20% Cooldown Reduction UNIQUE
1554
+ Passive: Basic attacks deal 15 (+15% of Ability Power) bonus magic damage
1555
+ on hit.\",\"plaintext\":\"Increases Attack Speed, Ability Power, and Cooldown
1556
+ Reduction\",\"depth\":3,\"from\":[\"3101\",\"3108\"],\"tags\":[\"Damage\",\"AttackSpeed\",\"SpellDamage\",\"CooldownReduction\",\"OnHit\"],\"image\":{\"full\":\"3115.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":144,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatMagicDamageMod\":60.0,\"PercentAttackSpeedMod\":0.5}},\"3116\":{\"id\":3116,\"name\":\"Rylai's
1557
+ Crystal Scepter\",\"gold\":{\"base\":605,\"total\":2900,\"sell\":2030,\"purchasable\":true},\"description\":\"<stats>+500
1558
+ Health<br>+80 Ability Power</stats><br><br><unique>UNIQUE Passive:</unique>
1559
+ Dealing spell damage slows the target's Movement Speed by 35% for 1.5 seconds
1560
+ (15% for multi-target and damage-over-time spells).\",\"sanitizedDescription\":\"+500
1561
+ Health +80 Ability Power UNIQUE Passive: Dealing spell damage slows the target's
1562
+ Movement Speed by 35% for 1.5 seconds (15% for multi-target and damage-over-time
1563
+ spells).\",\"plaintext\":\"Abilities slow enemies\",\"depth\":2,\"from\":[\"1026\",\"1052\",\"1011\"],\"tags\":[\"Health\",\"SpellDamage\",\"Slow\"],\"image\":{\"full\":\"3116.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":192,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":500.0,\"FlatMagicDamageMod\":80.0}},\"3117\":{\"id\":3117,\"name\":\"Boots
1564
+ of Mobility\",\"gold\":{\"base\":475,\"total\":800,\"sell\":560,\"purchasable\":true},\"description\":\"<unique>UNIQUE
1565
+ Passive - Enhanced Movement:</unique> +25 Movement Speed. Increases to +105
1566
+ Movement Speed when out of combat for 5 seconds.<br><br><i>(Unique Passives
1567
+ with the same name don't stack.)</i>\",\"sanitizedDescription\":\"UNIQUE Passive
1568
+ - Enhanced Movement: +25 Movement Speed. Increases to +105 Movement Speed
1569
+ when out of combat for 5 seconds. (Unique Passives with the same name don't
1570
+ stack.)\",\"plaintext\":\"Greatly enhances Movement Speed when out of combat\",\"depth\":2,\"from\":[\"1001\"],\"into\":[\"3274\",\"3273\",\"3272\",\"3271\",\"3270\"],\"tags\":[\"Movement\",\"Boots\"],\"image\":{\"full\":\"3117.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":240,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatMovementSpeedMod\":105.0}},\"3022\":{\"id\":3022,\"name\":\"Frozen
1571
+ Mallet\",\"gold\":{\"base\":1025,\"total\":3300,\"sell\":2310,\"purchasable\":true},\"description\":\"<stats>+700
1572
+ Health<br>+30 Attack Damage</stats><br><br><unique>UNIQUE Passive - Icy:</unique>
1573
+ Basic attacks slow the target's Movement Speed for 1.5 seconds on hit (40%
1574
+ slow for melee attacks, 30% slow for ranged attacks).<br><br><i>(Unique Passives
1575
+ with the same name don't stack.)</i>\",\"sanitizedDescription\":\"+700 Health
1576
+ +30 Attack Damage UNIQUE Passive - Icy: Basic attacks slow the target's Movement
1577
+ Speed for 1.5 seconds on hit (40% slow for melee attacks, 30% slow for ranged
1578
+ attacks). (Unique Passives with the same name don't stack.)\",\"colloq\":\"fm\",\"plaintext\":\"Basic
1579
+ attacks slow enemies\",\"depth\":2,\"from\":[\"1028\",\"1011\",\"1037\"],\"tags\":[\"Health\",\"Damage\",\"Slow\",\"OnHit\"],\"image\":{\"full\":\"3022.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":240,\"y\":240,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":700.0,\"FlatPhysicalDamageMod\":30.0}},\"3024\":{\"id\":3024,\"name\":\"Glacial
1580
+ Shroud\",\"gold\":{\"base\":250,\"total\":950,\"sell\":665,\"purchasable\":true},\"description\":\"<stats>+250
1581
+ Mana<br>+20 Armor</stats><br><br><unique>UNIQUE Passive:</unique> +10% Cooldown
1582
+ Reduction\",\"sanitizedDescription\":\"+250 Mana +20 Armor UNIQUE Passive:
1583
+ +10% Cooldown Reduction\",\"plaintext\":\"Increases Armor and Cooldown Reduction\",\"depth\":2,\"from\":[\"1027\",\"1029\"],\"into\":[\"3110\",\"3025\"],\"tags\":[\"Armor\",\"Mana\",\"CooldownReduction\"],\"image\":{\"full\":\"3024.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":336,\"y\":240,\"w\":48,\"h\":48},\"stats\":{\"FlatArmorMod\":20.0,\"FlatMPPoolMod\":250.0}},\"3023\":{\"id\":3023,\"name\":\"Twin
1584
+ Shadows\",\"gold\":{\"base\":630,\"total\":2400,\"sell\":1680,\"purchasable\":true},\"description\":\"<stats>+80
1585
+ Ability Power<br>+10% Cooldown Reduction<br>+6% Movement Speed</stats><br><br><active>UNIQUE
1586
+ Active - Hunt:</active> Summons up to 2 invulnerable ghosts that seek out
1587
+ the two nearest enemy champions for 5 seconds. If a ghost reaches its target,
1588
+ it reveals the target and reduces their Movement Speed by 40% for 2.5 seconds.<br><br>If
1589
+ a ghost cannot find a target, it tries to return to the caster. Ghosts that
1590
+ successfully return in this way reduce the item's cooldown by 40 seconds (120
1591
+ second cooldown).\",\"sanitizedDescription\":\"+80 Ability Power +10% Cooldown
1592
+ Reduction +6% Movement Speed UNIQUE Active - Hunt: Summons up to 2 invulnerable
1593
+ ghosts that seek out the two nearest enemy champions for 5 seconds. If a ghost
1594
+ reaches its target, it reveals the target and reduces their Movement Speed
1595
+ by 40% for 2.5 seconds. If a ghost cannot find a target, it tries to return
1596
+ to the caster. Ghosts that successfully return in this way reduce the item's
1597
+ cooldown by 40 seconds (120 second cooldown).\",\"colloq\":\"spooky ghosts\",\"plaintext\":\"Summon
1598
+ wraiths to slow and reveal enemy champions\",\"depth\":3,\"from\":[\"3108\",\"3113\"],\"tags\":[\"SpellDamage\",\"Movement\",\"CooldownReduction\",\"NonbootsMovement\",\"Slow\",\"Active\"],\"maps\":{\"10\":false,\"8\":false},\"image\":{\"full\":\"3023.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":288,\"y\":240,\"w\":48,\"h\":48},\"stats\":{\"FlatMagicDamageMod\":80.0,\"PercentMovementSpeedMod\":0.06}},\"3020\":{\"id\":3020,\"name\":\"Sorcerer's
1599
+ Shoes\",\"gold\":{\"base\":775,\"total\":1100,\"sell\":770,\"purchasable\":true},\"description\":\"<stats>+15
1600
+ Magic Penetration</stats><br><br><unique>UNIQUE Passive - Enhanced Movement:</unique>
1601
+ +45 Movement Speed<br><br><i>(Magic Penetration: Magic damage is increased
1602
+ by ignoring an amount of the target's Magic Resist equal to Magic Penetration.)</i><br><br><i>(Unique
1603
+ Passives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"+15
1604
+ Magic Penetration UNIQUE Passive - Enhanced Movement: +45 Movement Speed (Magic
1605
+ Penetration: Magic damage is increased by ignoring an amount of the target's
1606
+ Magic Resist equal to Magic Penetration.) (Unique Passives with the same name
1607
+ don't stack.)\",\"plaintext\":\"Enhances Movement Speed and magic damage\",\"depth\":2,\"from\":[\"1001\"],\"into\":[\"3259\",\"3258\",\"3257\",\"3256\",\"3255\"],\"tags\":[\"Movement\",\"Boots\",\"MagicPenetration\"],\"image\":{\"full\":\"3020.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":192,\"y\":240,\"w\":48,\"h\":48},\"stats\":{\"FlatMovementSpeedMod\":45.0}},\"3422\":{\"id\":3422,\"name\":\"Bonetooth
1608
+ Necklace\",\"gold\":{\"base\":0,\"total\":0,\"sell\":0,\"purchasable\":false},\"group\":\"RelicBase\",\"description\":\"<unique>UNIQUE
1609
+ Passive - Mementos of the Hunt:</unique> Rengar collects trophies when killing
1610
+ Champions and gains bonus effects based on how many trophies he has. Kills
1611
+ and assists grant 1 trophy.<br><br><passive>3 Trophies:</passive> Rengar gains
1612
+ 25 Movement Speed whilst out of combat or in brush. <br><passive>6 Trophies:</passive>
1613
+ Increases the range of Rengar's Leap by 125.<br><passive>12 Trophies:</passive>
1614
+ Thrill of the Hunt's duration is increased by 5 seconds.<br><passive>20 Trophies:</passive>
1615
+ Thrill of the Hunt's Movement Speed while stealthed is doubled.\",\"sanitizedDescription\":\"UNIQUE
1616
+ Passive - Mementos of the Hunt: Rengar collects trophies when killing Champions
1617
+ and gains bonus effects based on how many trophies he has. Kills and assists
1618
+ grant 1 trophy. 3 Trophies: Rengar gains 25 Movement Speed whilst out of combat
1619
+ or in brush. 6 Trophies: Increases the range of Rengar's Leap by 125. 12 Trophies:
1620
+ Thrill of the Hunt's duration is increased by 5 seconds. 20 Trophies: Thrill
1621
+ of the Hunt's Movement Speed while stealthed is doubled.\",\"depth\":2,\"from\":[\"3169\"],\"specialRecipe\":3169,\"inStore\":false,\"hideFromAll\":true,\"requiredChampion\":\"Rengar\",\"tags\":[\"Movement\",\"Active\",\"Vision\",\"Trinket\"],\"maps\":{\"1\":false},\"image\":{\"full\":\"3422.png\",\"sprite\":\"item2.png\",\"group\":\"item\",\"x\":432,\"y\":144,\"w\":48,\"h\":48},\"stats\":{}},\"3421\":{\"id\":3421,\"name\":\"Bonetooth
1622
+ Necklace\",\"gold\":{\"base\":0,\"total\":0,\"sell\":0,\"purchasable\":false},\"group\":\"RelicBase\",\"description\":\"<unique>UNIQUE
1623
+ Passive - Mementos of the Hunt:</unique> Rengar collects trophies when killing
1624
+ Champions and gains bonus effects based on how many trophies he has. Kills
1625
+ and assists grant 1 trophy.<br><br><passive>3 Trophies:</passive> Rengar gains
1626
+ 25 Movement Speed whilst out of combat or in brush. <br><passive>6 Trophies:</passive>
1627
+ Increases the range of Rengar's Leap by 125.<br><passive>12 Trophies:</passive>
1628
+ Thrill of the Hunt's duration is increased by 5 seconds.<br><passive>20 Trophies:</passive>
1629
+ Thrill of the Hunt's Movement Speed while stealthed is doubled.\",\"sanitizedDescription\":\"UNIQUE
1630
+ Passive - Mementos of the Hunt: Rengar collects trophies when killing Champions
1631
+ and gains bonus effects based on how many trophies he has. Kills and assists
1632
+ grant 1 trophy. 3 Trophies: Rengar gains 25 Movement Speed whilst out of combat
1633
+ or in brush. 6 Trophies: Increases the range of Rengar's Leap by 125. 12 Trophies:
1634
+ Thrill of the Hunt's duration is increased by 5 seconds. 20 Trophies: Thrill
1635
+ of the Hunt's Movement Speed while stealthed is doubled.\",\"inStore\":false,\"hideFromAll\":true,\"requiredChampion\":\"Rengar\",\"tags\":[\"Movement\",\"Active\",\"Vision\",\"Trinket\"],\"maps\":{\"1\":false},\"image\":{\"full\":\"3421.png\",\"sprite\":\"item2.png\",\"group\":\"item\",\"x\":384,\"y\":144,\"w\":48,\"h\":48},\"stats\":{}},\"3123\":{\"id\":3123,\"name\":\"Executioner's
1636
+ Calling\",\"gold\":{\"base\":740,\"total\":1900,\"sell\":1330,\"purchasable\":true},\"description\":\"<stats>+25
1637
+ Attack Damage<br>+20% Critical Strike Chance</stats><br><br><unique>UNIQUE
1638
+ Passive:</unique> Basic attacks inflict Grievous Wounds on enemy champions
1639
+ for 1.5 seconds on hit.<br><br><i>(Grievous Wounds reduces healing and regeneration
1640
+ by 50%.)</i>\",\"sanitizedDescription\":\"+25 Attack Damage +20% Critical
1641
+ Strike Chance UNIQUE Passive: Basic attacks inflict Grievous Wounds on enemy
1642
+ champions for 1.5 seconds on hit. (Grievous Wounds reduces healing and regeneration
1643
+ by 50%.)\",\"plaintext\":\"Basic attacks reduce enemy healing and Health Regen\",\"depth\":3,\"from\":[\"3093\",\"1036\"],\"tags\":[\"Damage\",\"CriticalStrike\",\"OnHit\"],\"image\":{\"full\":\"3123.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":336,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatCritChanceMod\":0.2,\"FlatPhysicalDamageMod\":25.0}},\"3122\":{\"id\":3122,\"name\":\"Wicked
1644
+ Hatchet\",\"gold\":{\"base\":440,\"total\":1200,\"sell\":840,\"purchasable\":true},\"description\":\"<stats>+20
1645
+ Attack Damage<br>+10% Critical Strike Chance</stats><br><br><unique>UNIQUE
1646
+ Passive:</unique> Critical Strikes cause your target to bleed for an additional
1647
+ 60% of your bonus Attack Damage as physical damage over 3 seconds.</i>\",\"sanitizedDescription\":\"+20
1648
+ Attack Damage +10% Critical Strike Chance UNIQUE Passive: Critical Strikes
1649
+ cause your target to bleed for an additional 60% of your bonus Attack Damage
1650
+ as physical damage over 3 seconds.\",\"colloq\":\"ie\",\"plaintext\":\"Critical
1651
+ Strikes cause your target to bleed.\",\"depth\":2,\"from\":[\"1051\",\"1036\"],\"into\":[\"3104\"],\"tags\":[\"Damage\",\"CriticalStrike\",\"OnHit\"],\"maps\":{\"1\":false,\"12\":false},\"image\":{\"full\":\"3122.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":288,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatCritChanceMod\":0.1,\"FlatPhysicalDamageMod\":20.0}},\"3048\":{\"id\":3048,\"name\":\"Seraph's
1652
+ Embrace\",\"gold\":{\"base\":2700,\"total\":2700,\"sell\":3780,\"purchasable\":false},\"description\":\"<stats>+1000
1653
+ Mana<br>+60 Ability Power<br>+10 Mana Regen per 5 seconds</stats><br><br><unique>UNIQUE
1654
+ Passive - Insight:</unique> Grants Ability Power equal to 3% of maximum Mana.<br><active>UNIQUE
1655
+ Active - Mana Shield:</active> Consumes 20% of current Mana to grant a shield
1656
+ for 3 seconds that absorbs damage equal to 150 plus the amount of Mana consumed
1657
+ (120 second cooldown).<br><br><i>(Unique Passives with the same name don't
1658
+ stack.)</i>\",\"sanitizedDescription\":\"+1000 Mana +60 Ability Power +10
1659
+ Mana Regen per 5 seconds UNIQUE Passive - Insight: Grants Ability Power equal
1660
+ to 3% of maximum Mana. UNIQUE Active - Mana Shield: Consumes 20% of current
1661
+ Mana to grant a shield for 3 seconds that absorbs damage equal to 150 plus
1662
+ the amount of Mana consumed (120 second cooldown). (Unique Passives with the
1663
+ same name don't stack.)\",\"depth\":4,\"from\":[\"3007\"],\"specialRecipe\":3007,\"inStore\":false,\"tags\":[\"Active\"],\"maps\":{\"1\":false,\"10\":false,\"12\":false},\"image\":{\"full\":\"3048.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":96,\"y\":336,\"w\":48,\"h\":48},\"stats\":{\"FlatMPPoolMod\":1000.0,\"FlatMPRegenMod\":2.0,\"FlatMagicDamageMod\":60.0}},\"3047\":{\"id\":3047,\"name\":\"Ninja
1664
+ Tabi\",\"gold\":{\"base\":375,\"total\":1000,\"sell\":700,\"purchasable\":true},\"description\":\"<stats>+25
1665
+ Armor</stats><br><br><unique>UNIQUE Passive:</unique> Blocks 10% of the damage
1666
+ from basic attacks.<br><unique>UNIQUE Passive - Enhanced Movement:</unique>
1667
+ +45 Movement Speed<br><br><i>(Unique Passives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"+25
1668
+ Armor UNIQUE Passive: Blocks 10% of the damage from basic attacks. UNIQUE
1669
+ Passive - Enhanced Movement: +45 Movement Speed (Unique Passives with the
1670
+ same name don't stack.)\",\"plaintext\":\"Enhances Movement Speed and reduces
1671
+ incoming basic attack damage\",\"depth\":2,\"from\":[\"1001\",\"1029\"],\"into\":[\"3264\",\"3263\",\"3262\",\"3261\",\"3260\"],\"tags\":[\"Armor\",\"Movement\",\"Boots\"],\"image\":{\"full\":\"3047.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":48,\"y\":336,\"w\":48,\"h\":48},\"stats\":{\"FlatArmorMod\":25.0,\"FlatMovementSpeedMod\":45.0}},\"2050\":{\"id\":2050,\"name\":\"Explorer's
1672
+ Ward\",\"gold\":{\"base\":0,\"total\":0,\"sell\":0,\"purchasable\":false},\"description\":\"<consumable>Click
1673
+ to Consume:</consumable> Places an invisible ward that reveals the surrounding
1674
+ area for 60 seconds.\",\"sanitizedDescription\":\"Click to Consume: Places
1675
+ an invisible ward that reveals the surrounding area for 60 seconds.\",\"inStore\":false,\"tags\":[\"Consumable\"],\"image\":{\"full\":\"2050.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":96,\"y\":192,\"w\":48,\"h\":48},\"stats\":{}},\"2051\":{\"id\":2051,\"name\":\"Guardian's
1676
+ Horn\",\"gold\":{\"base\":445,\"total\":1025,\"sell\":718,\"purchasable\":true},\"description\":\"<stats>+180
1677
+ Health<br>+12 Health Regen per 5 seconds</stats><br><br><unique>UNIQUE Passive:</unique>
1678
+ Enemy spellcasts reduce the cooldown of Battle Cry by 1 second.<br><active>UNIQUE
1679
+ Active - Battle Cry:</active> Gain 30% movement speed, 20 Armor, and 20 Magic
1680
+ Resistance for 3 seconds. 25 second cooldown.\",\"sanitizedDescription\":\"+180
1681
+ Health +12 Health Regen per 5 seconds UNIQUE Passive: Enemy spellcasts reduce
1682
+ the cooldown of Battle Cry by 1 second. UNIQUE Active - Battle Cry: Gain 30%
1683
+ movement speed, 20 Armor, and 20 Magic Resistance for 3 seconds. 25 second
1684
+ cooldown.\",\"plaintext\":\"Activate for Movement Speed and a defensive boost\",\"depth\":2,\"from\":[\"1006\",\"1028\"],\"tags\":[\"Health\",\"SpellBlock\",\"HealthRegen\",\"Armor\",\"Active\",\"NonbootsMovement\"],\"maps\":{\"1\":false,\"10\":false,\"8\":false},\"image\":{\"full\":\"2051.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":144,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":180.0,\"FlatHPRegenMod\":2.4}},\"2052\":{\"id\":2052,\"name\":\"Poro-Snax\",\"gold\":{\"base\":0,\"total\":0,\"sell\":0,\"purchasable\":false},\"group\":\"RelicBase\",\"description\":\"This
1685
+ savory blend of free-range, grass-fed Avarosan game hens and organic, non-ZMO
1686
+ Freljordian herbs contains the essential nutrients necessary to keep your
1687
+ Poro purring with pleasure.<br><br><i>All proceeds will be donated towards
1688
+ fighting Noxian animal cruelty.</i>\",\"sanitizedDescription\":\"This savory
1689
+ blend of free-range, grass-fed Avarosan game hens and organic, non-ZMO Freljordian
1690
+ herbs contains the essential nutrients necessary to keep your Poro purring
1691
+ with pleasure. All proceeds will be donated towards fighting Noxian animal
1692
+ cruelty.\",\"consumed\":true,\"inStore\":false,\"image\":{\"full\":\"2052.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":192,\"y\":192,\"w\":48,\"h\":48},\"stats\":{}},\"1051\":{\"id\":1051,\"name\":\"Brawler's
1693
+ Gloves\",\"gold\":{\"base\":400,\"total\":400,\"sell\":280,\"purchasable\":true},\"description\":\"<stats>+8%
1694
+ Critical Strike Chance</stats>\",\"sanitizedDescription\":\"+8% Critical Strike
1695
+ Chance\",\"plaintext\":\"Slightly increases Critical Strike Chance\",\"into\":[\"3086\",\"3093\",\"3122\"],\"tags\":[\"CriticalStrike\"],\"image\":{\"full\":\"1051.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":336,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatCritChanceMod\":0.08}},\"3197\":{\"id\":3197,\"name\":\"Augment:
1696
+ Gravity\",\"gold\":{\"base\":1000,\"total\":1000,\"sell\":700,\"purchasable\":true},\"description\":\"<stats>+3
1697
+ Ability Power per level<br>+200 Mana<br>+10% Cooldown Reduction<br>+5 Mana
1698
+ Regen per 5 seconds</stats><br><br><unique>Ability Augment:</unique> Gravity
1699
+ Field has an additional 30% cast range.\",\"sanitizedDescription\":\"+3 Ability
1700
+ Power per level +200 Mana +10% Cooldown Reduction +5 Mana Regen per 5 seconds
1701
+ Ability Augment: Gravity Field has an additional 30% cast range.\",\"colloq\":\"viktor\",\"plaintext\":\"Improves
1702
+ Viktor's Gravity Field and increases Cooldown Reduction\",\"depth\":2,\"from\":[\"3200\"],\"requiredChampion\":\"Viktor\",\"tags\":[\"Mana\",\"ManaRegen\",\"CooldownReduction\"],\"image\":{\"full\":\"3197.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":0,\"y\":288,\"w\":48,\"h\":48},\"stats\":{\"FlatMPPoolMod\":200.0,\"FlatMPRegenMod\":1.0}},\"3198\":{\"id\":3198,\"name\":\"Augment:
1703
+ Death\",\"gold\":{\"base\":1000,\"total\":1000,\"sell\":700,\"purchasable\":true},\"description\":\"<stats>+3
1704
+ Ability Power per level<br>+45 Ability Power</stats><br><br><unique>Ability
1705
+ Augment:</unique> Death Ray sets fire to enemies, dealing 30% additional magic
1706
+ damage over 4 seconds.\",\"sanitizedDescription\":\"+3 Ability Power per level
1707
+ +45 Ability Power Ability Augment: Death Ray sets fire to enemies, dealing
1708
+ 30% additional magic damage over 4 seconds.\",\"colloq\":\"viktor\",\"plaintext\":\"Improves
1709
+ Viktor's Death Ray and increases Ability Power\",\"depth\":2,\"from\":[\"3200\"],\"requiredChampion\":\"Viktor\",\"tags\":[\"SpellDamage\"],\"image\":{\"full\":\"3198.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":48,\"y\":288,\"w\":48,\"h\":48},\"stats\":{\"FlatMagicDamageMod\":45.0}},\"1054\":{\"id\":1054,\"name\":\"Doran's
1710
+ Shield\",\"gold\":{\"base\":440,\"total\":440,\"sell\":176,\"purchasable\":true},\"description\":\"<stats>+80
1711
+ Health<br>+6 Health Regen per 5 seconds</stats><br><br><unique>UNIQUE Passive:</unique>
1712
+ Blocks 8 damage from champion basic attacks.\",\"sanitizedDescription\":\"+80
1713
+ Health +6 Health Regen per 5 seconds UNIQUE Passive: Blocks 8 damage from
1714
+ champion basic attacks.\",\"colloq\":\"dshield\",\"plaintext\":\"Good defensive
1715
+ starting item\",\"tags\":[\"Health\",\"HealthRegen\"],\"image\":{\"full\":\"1054.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":0,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":80.0,\"FlatHPRegenMod\":1.2}},\"1055\":{\"id\":1055,\"name\":\"Doran's
1716
+ Blade\",\"gold\":{\"base\":440,\"total\":440,\"sell\":176,\"purchasable\":true},\"description\":\"<stats>+80
1717
+ Health<br>+8 Attack Damage</stats><br><br><passive>Passive:</passive> Basic
1718
+ attacks restore Health on hit. (3 Health for ranged champions and 5 Health
1719
+ for melee champions.)\",\"sanitizedDescription\":\"+80 Health +8 Attack Damage
1720
+ Passive: Basic attacks restore Health on hit. (3 Health for ranged champions
1721
+ and 5 Health for melee champions.)\",\"colloq\":\"dblade\",\"plaintext\":\"Good
1722
+ starting item for attackers\",\"tags\":[\"Health\",\"Damage\",\"LifeSteal\",\"OnHit\"],\"maps\":{\"8\":false},\"image\":{\"full\":\"1055.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":48,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":80.0,\"FlatPhysicalDamageMod\":8.0}},\"3196\":{\"id\":3196,\"name\":\"Augment:
1723
+ Power\",\"gold\":{\"base\":1000,\"total\":1000,\"sell\":700,\"purchasable\":true},\"description\":\"<stats>+3
1724
+ Ability Power per level<br>+220 Health<br>+6 Health Regen per 5 seconds</stats><br><br><unique>Ability
1725
+ Augment:</unique> Power Transfer increases Viktor's Movement Speed by 30%
1726
+ for 3 seconds.\",\"sanitizedDescription\":\"+3 Ability Power per level +220
1727
+ Health +6 Health Regen per 5 seconds Ability Augment: Power Transfer increases
1728
+ Viktor's Movement Speed by 30% for 3 seconds.\",\"colloq\":\"viktor\",\"plaintext\":\"Improves
1729
+ Viktor's Power Transfer and increases Health\",\"depth\":2,\"from\":[\"3200\"],\"requiredChampion\":\"Viktor\",\"tags\":[\"Health\",\"HealthRegen\"],\"image\":{\"full\":\"3196.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":432,\"y\":240,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":220.0,\"FlatHPRegenMod\":1.2}},\"1052\":{\"id\":1052,\"name\":\"Amplifying
1730
+ Tome\",\"gold\":{\"base\":435,\"total\":435,\"sell\":305,\"purchasable\":true},\"description\":\"<stats>+20
1731
+ Ability Power</stats>\",\"sanitizedDescription\":\"+20 Ability Power\",\"colloq\":\"amptome\",\"plaintext\":\"Slightly
1732
+ increases Ability Power\",\"into\":[\"3290\",\"3145\",\"3041\",\"3108\",\"3057\",\"3136\",\"3135\",\"3116\",\"3151\",\"3113\",\"3191\",\"3090\"],\"tags\":[\"SpellDamage\"],\"image\":{\"full\":\"1052.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":384,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatMagicDamageMod\":20.0}},\"1053\":{\"id\":1053,\"name\":\"Vampiric
1733
+ Scepter\",\"gold\":{\"base\":440,\"total\":800,\"sell\":560,\"purchasable\":true},\"description\":\"<stats>+10
1734
+ Attack Damage<br>+10% Life Steal</stats>\",\"sanitizedDescription\":\"+10
1735
+ Attack Damage +10% Life Steal\",\"plaintext\":\"Basic attacks restore Health\",\"depth\":2,\"from\":[\"1036\"],\"into\":[\"3050\",\"3144\",\"3181\",\"3072\",\"3074\",\"3159\"],\"tags\":[\"Damage\",\"LifeSteal\"],\"image\":{\"full\":\"1053.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":432,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatPhysicalDamageMod\":10.0,\"PercentLifeStealMod\":0.1}},\"3191\":{\"id\":3191,\"name\":\"Seeker's
1736
+ Armguard\",\"gold\":{\"base\":125,\"total\":1160,\"sell\":812,\"purchasable\":true},\"description\":\"<stats>+30
1737
+ Armor<br>+20 Ability Power</stats><br><br><passive>UNIQUE Passive:</passive>
1738
+ Killing a unit grants 0.5 bonus Armor and Ability Power. This bonus stacks
1739
+ up to 30 times.\",\"sanitizedDescription\":\"+30 Armor +20 Ability Power UNIQUE
1740
+ Passive: Killing a unit grants 0.5 bonus Armor and Ability Power. This bonus
1741
+ stacks up to 30 times.\",\"plaintext\":\"Increases Armor and Ability Power\",\"depth\":2,\"from\":[\"1029\",\"1052\",\"1029\"],\"into\":[\"3090\",\"3157\",\"3170\"],\"tags\":[\"Armor\",\"SpellDamage\"],\"image\":{\"full\":\"3191.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":384,\"y\":240,\"w\":48,\"h\":48},\"stats\":{\"FlatArmorMod\":30.0,\"FlatMagicDamageMod\":20.0}},\"3050\":{\"id\":3050,\"name\":\"Zeke's
1742
+ Herald\",\"gold\":{\"base\":800,\"total\":2450,\"sell\":1715,\"purchasable\":true},\"description\":\"<stats>+250
1743
+ Health<br>+20% Cooldown Reduction</stats><br><br><aura>UNIQUE Aura:</aura>
1744
+ Grants allied champions +10% Life Steal and +20 Attack Damage.\",\"sanitizedDescription\":\"+250
1745
+ Health +20% Cooldown Reduction UNIQUE Aura: Grants allied champions +10% Life
1746
+ Steal and +20 Attack Damage.\",\"colloq\":\"starks\",\"plaintext\":\"Grants
1747
+ nearby allies Life Steal and Attack Damage\",\"depth\":3,\"from\":[\"3067\",\"1053\"],\"tags\":[\"Health\",\"Damage\",\"LifeSteal\",\"CooldownReduction\",\"Aura\"],\"image\":{\"full\":\"3050.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":144,\"y\":336,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":250.0}},\"3190\":{\"id\":3190,\"name\":\"Locket
1748
+ of the Iron Solari\",\"gold\":{\"base\":50,\"total\":2800,\"sell\":1960,\"purchasable\":true},\"description\":\"<stats>+400
1749
+ Health<br>+20 Magic Resistance<br>+10% Cooldown Reduction</stats><br><br><active>UNIQUE
1750
+ Active:</active> Grants a shield to nearby allies for 5 seconds that absorbs
1751
+ up to 50 (+10 per level) damage (60 second cooldown).<br><aura>UNIQUE Aura
1752
+ - Legion:</aura> Grants nearby allies +20 Magic Resist and +10 Health Regen
1753
+ per 5 seconds.<br><br><i>(Unique Auras with the same name don't stack.)\",\"sanitizedDescription\":\"+400
1754
+ Health +20 Magic Resistance +10% Cooldown Reduction UNIQUE Active: Grants
1755
+ a shield to nearby allies for 5 seconds that absorbs up to 50 (+10 per level)
1756
+ damage (60 second cooldown). UNIQUE Aura - Legion: Grants nearby allies +20
1757
+ Magic Resist and +10 Health Regen per 5 seconds. (Unique Auras with the same
1758
+ name don't stack.)\",\"plaintext\":\"Activate to shield nearby allies from
1759
+ damage\",\"depth\":3,\"from\":[\"3105\",\"3067\"],\"tags\":[\"Health\",\"SpellBlock\",\"HealthRegen\",\"CooldownReduction\",\"Active\",\"Aura\"],\"image\":{\"full\":\"3190.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":336,\"y\":240,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":400.0,\"FlatSpellBlockMod\":20.0}},\"2047\":{\"id\":2047,\"name\":\"Oracle's
1760
+ Extract\",\"gold\":{\"base\":250,\"total\":250,\"sell\":100,\"purchasable\":true},\"description\":\"<consumable>Click
1761
+ to Consume:</consumable> Grants detection of nearby invisible units for up
1762
+ to 5 minutes or until death.\",\"sanitizedDescription\":\"Click to Consume:
1763
+ Grants detection of nearby invisible units for up to 5 minutes or until death.\",\"plaintext\":\"Allows
1764
+ champion to see invisible units\",\"consumed\":true,\"consumeOnFull\":true,\"tags\":[\"Consumable\",\"Stealth\",\"Vision\"],\"maps\":{\"1\":false},\"image\":{\"full\":\"2047.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":432,\"y\":144,\"w\":48,\"h\":48},\"stats\":{}},\"3056\":{\"id\":3056,\"name\":\"Ohmwrecker\",\"gold\":{\"base\":740,\"total\":2000,\"sell\":1400,\"purchasable\":true},\"description\":\"<stats>+350
1765
+ Health<br>+50 Ability Power</stats><br><br><active>UNIQUE Active:</active>
1766
+ Prevents nearby enemy turrets from attacking for 2.5 seconds (120 second cooldown).
1767
+ This effect cannot be used against the same turret more than once every 7.5
1768
+ seconds.\",\"sanitizedDescription\":\"+350 Health +50 Ability Power UNIQUE
1769
+ Active: Prevents nearby enemy turrets from attacking for 2.5 seconds (120
1770
+ second cooldown). This effect cannot be used against the same turret more
1771
+ than once every 7.5 seconds.\",\"plaintext\":\"Temporarily disables enemy
1772
+ turrets\",\"depth\":2,\"from\":[\"1028\",\"1026\"],\"tags\":[\"Health\",\"SpellDamage\",\"Active\"],\"maps\":{\"8\":false,\"12\":false},\"image\":{\"full\":\"3056.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":192,\"y\":336,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":350.0,\"FlatMagicDamageMod\":50.0}},\"3057\":{\"id\":3057,\"name\":\"Sheen\",\"gold\":{\"base\":365,\"total\":1200,\"sell\":840,\"purchasable\":true},\"description\":\"<stats>+200
1773
+ Mana<br>+25 Ability Power</stats><br><br><unique>UNIQUE Passive - Spellblade:</unique>
1774
+ After using an ability, the next basic attack deals bonus physical damage
1775
+ equal to base Attack Damage on hit (2 second cooldown).<br><br><i>(Unique
1776
+ Passives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"+200
1777
+ Mana +25 Ability Power UNIQUE Passive - Spellblade: After using an ability,
1778
+ the next basic attack deals bonus physical damage equal to base Attack Damage
1779
+ on hit (2 second cooldown). (Unique Passives with the same name don't stack.)\",\"plaintext\":\"Grants
1780
+ a bonus to next attack after spell cast\",\"depth\":2,\"from\":[\"1027\",\"1052\"],\"into\":[\"3078\",\"3100\",\"3025\"],\"tags\":[\"SpellDamage\",\"Mana\"],\"image\":{\"full\":\"3057.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":240,\"y\":336,\"w\":48,\"h\":48},\"stats\":{\"FlatMPPoolMod\":200.0,\"FlatMagicDamageMod\":25.0}},\"2049\":{\"id\":2049,\"name\":\"Sightstone\",\"gold\":{\"base\":400,\"total\":800,\"sell\":320,\"purchasable\":true},\"description\":\"<stats>+150
1781
+ Health</stats><br><br><unique>UNIQUE Passive - Ward Refresh:</unique> Holds
1782
+ 4 charges and refills upon visiting the shop.<br><active>UNIQUE Active - Ghost
1783
+ Ward:</active> Consumes a charge to place a <font color='#BBFFFF'>Stealth
1784
+ Ward</font> that reveals the surrounding area for 3 minutes. A player may
1785
+ only have 3 <font color='#BBFFFF'>Stealth Wards</font> on the map at one time.<br><br><i>(Unique
1786
+ Passives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"+150
1787
+ Health UNIQUE Passive - Ward Refresh: Holds 4 charges and refills upon visiting
1788
+ the shop. UNIQUE Active - Ghost Ward: Consumes a charge to place a Stealth
1789
+ Ward that reveals the surrounding area for 3 minutes. A player may only have
1790
+ 3 Stealth Wards on the map at one time. (Unique Passives with the same name
1791
+ don't stack.)\",\"plaintext\":\"Increases Health and provides Stealth Wards
1792
+ over time\",\"depth\":2,\"from\":[\"1028\"],\"into\":[\"2045\"],\"tags\":[\"Health\",\"Vision\",\"Active\"],\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"2049.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":48,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":150.0}},\"2048\":{\"id\":2048,\"name\":\"Ichor
1793
+ of Illumination\",\"gold\":{\"base\":500,\"total\":500,\"sell\":200,\"purchasable\":true},\"description\":\"<consumable>Click
1794
+ to Consume:</consumable> Grants +30-64 Ability Power based on level, +15%
1795
+ Cooldown Reduction, and increased Mana and Energy regeneration for 4 minutes.\",\"sanitizedDescription\":\"Click
1796
+ to Consume: Grants +30-64 Ability Power based on level, +15% Cooldown Reduction,
1797
+ and increased Mana and Energy regeneration for 4 minutes.\",\"plaintext\":\"Temporarily
1798
+ increases Ability Power, Cooldown Reduction, Mana and Energy Regeneration\",\"consumed\":true,\"stacks\":3,\"consumeOnFull\":true,\"tags\":[\"SpellDamage\",\"ManaRegen\",\"CooldownReduction\",\"Consumable\"],\"maps\":{\"1\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"2048.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":0,\"y\":192,\"w\":48,\"h\":48},\"stats\":{}},\"3301\":{\"id\":3301,\"name\":\"Ancient
1799
+ Coin\",\"gold\":{\"base\":365,\"total\":365,\"sell\":146,\"purchasable\":true},\"group\":\"GoldBase\",\"description\":\"<stats>+3
1800
+ Mana Regen per 5 seconds</stats><br><br><unique>UNIQUE Passive - Favor:</unique>
1801
+ Being near a minion death without dealing the killing blow grants 2 Gold and
1802
+ 5 Health.<br><br><groupLimit>Limited to 1 Gold Income item</groupLimit></i><br><br><i><font
1803
+ color='#447777'>''Gold dust rises from the desert and clings to the coin.''
1804
+ - Historian Shurelya, 11 November, 23 CLE</font></i><br><br>\",\"sanitizedDescription\":\"+3
1805
+ Mana Regen per 5 seconds UNIQUE Passive - Favor: Being near a minion death
1806
+ without dealing the killing blow grants 2 Gold and 5 Health. Limited to 1
1807
+ Gold Income item ''Gold dust rises from the desert and clings to the coin.''
1808
+ - Historian Shurelya, 11 November, 23 CLE\",\"plaintext\":\"Grants gold when
1809
+ nearby minions die that you didn't kill\",\"into\":[\"3096\"],\"tags\":[\"HealthRegen\",\"ManaRegen\",\"GoldPer\"],\"image\":{\"full\":\"3301.png\",\"sprite\":\"item2.png\",\"group\":\"item\",\"x\":192,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatMPRegenMod\":0.6}},\"3303\":{\"id\":3303,\"name\":\"Spellthief's
1810
+ Edge\",\"gold\":{\"base\":365,\"total\":365,\"sell\":146,\"purchasable\":true},\"group\":\"GoldBase\",\"description\":\"<stats>+5
1811
+ Ability Power<br>+2 Mana Regen per 5 seconds<br>+2 Gold per 10 seconds</stats><br><br><unique>UNIQUE
1812
+ Passive - Tribute:</unique> Spells and basic attacks against champions or
1813
+ buildings deal 10 additional damage and grant 5 Gold. This can occur up to
1814
+ three times every 30 seconds. Killing a minion disables this passive for 12
1815
+ seconds.<br><br><groupLimit>Limited to 1 Gold Income item</groupLimit>\",\"sanitizedDescription\":\"+5
1816
+ Ability Power +2 Mana Regen per 5 seconds +2 Gold per 10 seconds UNIQUE Passive
1817
+ - Tribute: Spells and basic attacks against champions or buildings deal 10
1818
+ additional damage and grant 5 Gold. This can occur up to three times every
1819
+ 30 seconds. Killing a minion disables this passive for 12 seconds. Limited
1820
+ to 1 Gold Income item\",\"plaintext\":\"Grants gold when you attack enemies\",\"into\":[\"3098\"],\"tags\":[\"SpellDamage\",\"ManaRegen\",\"GoldPer\"],\"image\":{\"full\":\"3303.png\",\"sprite\":\"item2.png\",\"group\":\"item\",\"x\":288,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatMPRegenMod\":0.4,\"FlatMagicDamageMod\":5.0}},\"3302\":{\"id\":3302,\"name\":\"Relic
1821
+ Shield\",\"gold\":{\"base\":365,\"total\":365,\"sell\":146,\"purchasable\":true},\"group\":\"GoldBase\",\"description\":\"<stats>+75
1822
+ Health</stats><br><br><unique>UNIQUE Passive - Spoils of War:</unique> Melee
1823
+ basic attacks execute minions below 200 Health. Killing a minion heals you
1824
+ and the nearest allied champion for 40 Health and grants them kill Gold.<br><br>These
1825
+ effects require a nearby allied champion. Recharges every 60 seconds. Max
1826
+ 2 charges. <br><br><groupLimit>Limited to 1 Gold Income item</groupLimit>\",\"sanitizedDescription\":\"+75
1827
+ Health UNIQUE Passive - Spoils of War: Melee basic attacks execute minions
1828
+ below 200 Health. Killing a minion heals you and the nearest allied champion
1829
+ for 40 Health and grants them kill Gold. These effects require a nearby allied
1830
+ champion. Recharges every 60 seconds. Max 2 charges. Limited to 1 Gold Income
1831
+ item\",\"plaintext\":\"Kill minions periodically to heal and grant gold to
1832
+ a nearby ally\",\"into\":[\"3097\"],\"tags\":[\"Health\",\"Aura\",\"GoldPer\"],\"image\":{\"full\":\"3302.png\",\"sprite\":\"item2.png\",\"group\":\"item\",\"x\":240,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":75.0}},\"1037\":{\"id\":1037,\"name\":\"Pickaxe\",\"gold\":{\"base\":875,\"total\":875,\"sell\":613,\"purchasable\":true},\"description\":\"<stats>+25
1833
+ Attack Damage</stats>\",\"sanitizedDescription\":\"+25 Attack Damage\",\"plaintext\":\"Moderately
1834
+ increases Attack Damage\",\"into\":[\"3035\",\"3124\",\"3031\",\"3156\",\"3077\",\"3104\",\"3184\",\"3022\",\"3172\",\"3181\"],\"tags\":[\"Damage\"],\"image\":{\"full\":\"1037.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":96,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatPhysicalDamageMod\":25.0}},\"1036\":{\"id\":1036,\"name\":\"Long
1835
+ Sword\",\"gold\":{\"base\":360,\"total\":360,\"sell\":252,\"purchasable\":true},\"description\":\"<stats>+10
1836
+ Attack Damage</stats>\",\"sanitizedDescription\":\"+10 Attack Damage\",\"plaintext\":\"Slightly
1837
+ increases Attack Damage\",\"into\":[\"1053\",\"3044\",\"3144\",\"3134\",\"3209\",\"3035\",\"3155\",\"3004\",\"3077\",\"3123\",\"3141\",\"3122\",\"3008\",\"3154\"],\"tags\":[\"Damage\"],\"image\":{\"full\":\"1036.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":48,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatPhysicalDamageMod\":10.0}},\"1039\":{\"id\":1039,\"name\":\"Hunter's
1838
+ Machete\",\"gold\":{\"base\":300,\"total\":300,\"sell\":120,\"purchasable\":true},\"description\":\"<unique>UNIQUE
1839
+ Passive - Maim:</unique> Basic attacks against monsters deal 10 bonus magic
1840
+ damage and heal 5 Health on hit.<br><unique>UNIQUE Passive - Butcher:</unique>
1841
+ Against monsters, deal 10% bonus damage.<br><br><i>(Unique Passives with the
1842
+ same name don't stack.)</i>\",\"sanitizedDescription\":\"UNIQUE Passive -
1843
+ Maim: Basic attacks against monsters deal 10 bonus magic damage and heal 5
1844
+ Health on hit. UNIQUE Passive - Butcher: Against monsters, deal 10% bonus
1845
+ damage. (Unique Passives with the same name don't stack.)\",\"plaintext\":\"Slightly
1846
+ increases damage dealt to neutral monsters\",\"into\":[\"3106\",\"1080\"],\"tags\":[\"Damage\",\"OnHit\"],\"maps\":{\"8\":false},\"image\":{\"full\":\"1039.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":192,\"y\":48,\"w\":48,\"h\":48},\"stats\":{}},\"1038\":{\"id\":1038,\"name\":\"B.
1847
+ F. Sword\",\"gold\":{\"base\":1550,\"total\":1550,\"sell\":1085,\"purchasable\":true},\"description\":\"<stats>+45
1848
+ Attack Damage</stats>\",\"sanitizedDescription\":\"+45 Attack Damage\",\"colloq\":\"bf\",\"plaintext\":\"Greatly
1849
+ increases Attack Damage\",\"into\":[\"3031\",\"3072\",\"3139\"],\"tags\":[\"Damage\"],\"maps\":{\"10\":false,\"8\":false},\"image\":{\"full\":\"1038.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":144,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatPhysicalDamageMod\":45.0}},\"3187\":{\"id\":3187,\"name\":\"Hextech
1850
+ Sweeper\",\"gold\":{\"base\":330,\"total\":2000,\"sell\":1400,\"purchasable\":true},\"description\":\"<stats>+40
1851
+ Ability Power<br>+250 Health<br>+20% Cooldown Reduction</stats><br><br><unique>UNIQUE
1852
+ Passive: - Trap Detection</unique> Nearby stealthed enemy traps are revealed.<br><active>UNIQUE
1853
+ Active:</active> A stealth-detecting mist grants vision in the target area
1854
+ for 5 seconds, revealing enemy champions that enter for 3 seconds (60 second
1855
+ cooldown).\",\"sanitizedDescription\":\"+40 Ability Power +250 Health +20%
1856
+ Cooldown Reduction UNIQUE Passive: - Trap Detection Nearby stealthed enemy
1857
+ traps are revealed. UNIQUE Active: A stealth-detecting mist grants vision
1858
+ in the target area for 5 seconds, revealing enemy champions that enter for
1859
+ 3 seconds (60 second cooldown).\",\"plaintext\":\"Activate to reveal a nearby
1860
+ area of the map\",\"depth\":3,\"from\":[\"3108\",\"3067\"],\"tags\":[\"Health\",\"SpellDamage\",\"CooldownReduction\",\"Active\",\"Stealth\",\"Vision\"],\"maps\":{\"1\":false},\"image\":{\"full\":\"3187.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":240,\"y\":240,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":250.0,\"FlatMagicDamageMod\":40.0}},\"3188\":{\"id\":3188,\"name\":\"Blackfire
1861
+ Torch\",\"gold\":{\"base\":970,\"total\":2650,\"sell\":1855,\"purchasable\":true},\"description\":\"<stats>+80
1862
+ Ability Power<br>+10% Cooldown Reduction<br>+5% Movement Speed</stats><br><br><active>UNIQUE
1863
+ Active:</active> Deals 20% of target champion's maximum Health in magic damage
1864
+ over 4 seconds and increases all subsequent magic damage taken by the target
1865
+ by 20% (60 second cooldown).\",\"sanitizedDescription\":\"+80 Ability Power
1866
+ +10% Cooldown Reduction +5% Movement Speed UNIQUE Active: Deals 20% of target
1867
+ champion's maximum Health in magic damage over 4 seconds and increases all
1868
+ subsequent magic damage taken by the target by 20% (60 second cooldown).\",\"colloq\":\"bft\",\"plaintext\":\"Activate
1869
+ to increase all magic damage dealt to an enemy champion\",\"depth\":3,\"from\":[\"1026\",\"3108\"],\"tags\":[\"SpellDamage\",\"CooldownReduction\",\"NonbootsMovement\",\"Active\"],\"maps\":{\"1\":false,\"12\":false},\"image\":{\"full\":\"3188.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":288,\"y\":240,\"w\":48,\"h\":48},\"stats\":{\"FlatMagicDamageMod\":80.0,\"PercentMovementSpeedMod\":0.05}},\"1042\":{\"id\":1042,\"name\":\"Dagger\",\"gold\":{\"base\":400,\"total\":400,\"sell\":280,\"purchasable\":true},\"description\":\"<stats>+12%
1870
+ Attack Speed</stats>\",\"sanitizedDescription\":\"+12% Attack Speed\",\"plaintext\":\"Slightly
1871
+ increases Attack Speed\",\"into\":[\"3006\",\"3086\",\"3101\",\"3046\",\"3131\",\"3106\",\"3154\",\"3085\",\"3091\",\"3153\"],\"tags\":[\"AttackSpeed\"],\"image\":{\"full\":\"1042.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":240,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"PercentAttackSpeedMod\":0.12}},\"1043\":{\"id\":1043,\"name\":\"Recurve
1872
+ Bow\",\"gold\":{\"base\":900,\"total\":900,\"sell\":630,\"purchasable\":true},\"description\":\"<stats>+30%
1873
+ Attack Speed</stats>\",\"sanitizedDescription\":\"+30% Attack Speed\",\"plaintext\":\"Greatly
1874
+ increases Attack Speed\",\"into\":[\"3091\",\"3131\",\"3085\"],\"tags\":[\"AttackSpeed\"],\"image\":{\"full\":\"1043.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":288,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"PercentAttackSpeedMod\":0.3}},\"3184\":{\"id\":3184,\"name\":\"Entropy\",\"gold\":{\"base\":500,\"total\":2700,\"sell\":1890,\"purchasable\":true},\"description\":\"<stats>+275
1875
+ Health<br>+55 Attack Damage</stats><br><br><unique>UNIQUE Passive - Rage:</unique>
1876
+ Basic attacks grant 20 Movement Speed for 2 seconds on hit. Kills grant 60
1877
+ Movement Speed for 2 seconds. This Movement Speed bonus is halved for ranged
1878
+ champions.<br><active>UNIQUE Active:</active> For the next 5 seconds, basic
1879
+ attacks reduce the target's Movement Speed by 30% and deal 80 true damage
1880
+ over 2.5 seconds on hit (60 second cooldown).<br><br><i>(Unique Passives with
1881
+ the same name don't stack.)</i>\",\"sanitizedDescription\":\"+275 Health +55
1882
+ Attack Damage UNIQUE Passive - Rage: Basic attacks grant 20 Movement Speed
1883
+ for 2 seconds on hit. Kills grant 60 Movement Speed for 2 seconds. This Movement
1884
+ Speed bonus is halved for ranged champions. UNIQUE Active: For the next 5
1885
+ seconds, basic attacks reduce the target's Movement Speed by 30% and deal
1886
+ 80 true damage over 2.5 seconds on hit (60 second cooldown). (Unique Passives
1887
+ with the same name don't stack.)\",\"plaintext\":\"Attacks and kills give
1888
+ a small burst of speed, activate to slow enemies\",\"depth\":3,\"from\":[\"3044\",\"1037\"],\"tags\":[\"Health\",\"Damage\",\"Slow\",\"Active\"],\"maps\":{\"1\":false,\"10\":false},\"image\":{\"full\":\"3184.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":144,\"y\":240,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":275.0,\"FlatPhysicalDamageMod\":55.0}},\"3185\":{\"id\":3185,\"name\":\"The
1889
+ Lightbringer\",\"gold\":{\"base\":450,\"total\":2200,\"sell\":1540,\"purchasable\":true},\"description\":\"<stats>+20
1890
+ Attack Damage<br>+25 Armor<br>+15% Life Steal<br>+200 Health</stats><br><br><unique>UNIQUE
1891
+ Passive - Vanquish:</unique> Basic attacks have a 20% chance to deal 100 bonus
1892
+ magic damage on hit (damage doubled for non-champions).<br><unique>UNIQUE
1893
+ Passive - Trap Detection:</unique> Nearby stealthed enemy traps are revealed.<br><active>UNIQUE
1894
+ Active:</active> A stealth-detecting mist grants vision in the target area
1895
+ for 5 seconds, revealing enemy champions that enter for 3 seconds (60 second
1896
+ cooldown).<br><br><i>(Unique Passives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"+20
1897
+ Attack Damage +25 Armor +15% Life Steal +200 Health UNIQUE Passive - Vanquish:
1898
+ Basic attacks have a 20% chance to deal 100 bonus magic damage on hit (damage
1899
+ doubled for non-champions). UNIQUE Passive - Trap Detection: Nearby stealthed
1900
+ enemy traps are revealed. UNIQUE Active: A stealth-detecting mist grants vision
1901
+ in the target area for 5 seconds, revealing enemy champions that enter for
1902
+ 3 seconds (60 second cooldown). (Unique Passives with the same name don't
1903
+ stack.)\",\"plaintext\":\"Increases Attack Speed and grants vision of attacked
1904
+ enemies\",\"depth\":4,\"from\":[\"3159\",\"1028\"],\"tags\":[\"Health\",\"Armor\",\"Damage\",\"LifeSteal\",\"OnHit\",\"Stealth\",\"Active\",\"Vision\"],\"maps\":{\"1\":false},\"image\":{\"full\":\"3185.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":192,\"y\":240,\"w\":48,\"h\":48},\"stats\":{\"FlatArmorMod\":25.0,\"FlatHPPoolMod\":200.0,\"FlatPhysicalDamageMod\":20.0,\"PercentLifeStealMod\":0.15}},\"3040\":{\"id\":3040,\"name\":\"Seraph's
1905
+ Embrace\",\"gold\":{\"base\":2700,\"total\":2700,\"sell\":3780,\"purchasable\":false},\"description\":\"<stats>+1000
1906
+ Mana<br>+60 Ability Power<br>+10 Mana Regen per 5 seconds</stats><br><br><unique>UNIQUE
1907
+ Passive - Insight:</unique> Grants Ability Power equal to 3% of maximum Mana.<br><active>UNIQUE
1908
+ Active - Mana Shield:</active> Consumes 20% of current Mana to grant a shield
1909
+ for 3 seconds that absorbs damage equal to 150 plus the amount of Mana consumed
1910
+ (120 second cooldown).<br><br><i>(Unique Passives with the same name don't
1911
+ stack.)</i>\",\"sanitizedDescription\":\"+1000 Mana +60 Ability Power +10
1912
+ Mana Regen per 5 seconds UNIQUE Passive - Insight: Grants Ability Power equal
1913
+ to 3% of maximum Mana. UNIQUE Active - Mana Shield: Consumes 20% of current
1914
+ Mana to grant a shield for 3 seconds that absorbs damage equal to 150 plus
1915
+ the amount of Mana consumed (120 second cooldown). (Unique Passives with the
1916
+ same name don't stack.)\",\"depth\":4,\"from\":[\"3003\"],\"specialRecipe\":3003,\"inStore\":false,\"tags\":[\"Active\"],\"image\":{\"full\":\"3040.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":240,\"y\":288,\"w\":48,\"h\":48},\"stats\":{\"FlatMPPoolMod\":1000.0,\"FlatMPRegenMod\":2.0,\"FlatMagicDamageMod\":60.0}},\"3041\":{\"id\":3041,\"name\":\"Mejai's
1917
+ Soulstealer\",\"gold\":{\"base\":800,\"total\":1235,\"sell\":865,\"purchasable\":true},\"description\":\"<stats>+20
1918
+ Ability Power </stats><br><br><unique>UNIQUE Passive:</unique> Grants +8
1919
+ Ability Power per stack. Grants 2 stacks for a kill or 1 stack for an assist
1920
+ (max 20 stacks). A third of the stacks are lost upon death. At 20 stacks,
1921
+ grants +15% Cooldown Reduction.\",\"sanitizedDescription\":\"+20 Ability Power
1922
+ UNIQUE Passive: Grants +8 Ability Power per stack. Grants 2 stacks for a kill
1923
+ or 1 stack for an assist (max 20 stacks). A third of the stacks are lost upon
1924
+ death. At 20 stacks, grants +15% Cooldown Reduction.\",\"plaintext\":\"Grants
1925
+ Ability Power for kills and assists\",\"depth\":2,\"from\":[\"1052\"],\"tags\":[\"SpellDamage\"],\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3041.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":288,\"y\":288,\"w\":48,\"h\":48},\"stats\":{\"FlatMagicDamageMod\":20.0}},\"3180\":{\"id\":3180,\"name\":\"Odyn's
1926
+ Veil\",\"gold\":{\"base\":600,\"total\":2520,\"sell\":1764,\"purchasable\":true},\"description\":\"<stats>+350
1927
+ Health<br>+350 Mana<br>+50 Magic Resist</stats><br><br><unique>UNIQUE Passive:</unique>
1928
+ Reduces and stores 10% of magic damage received. <br><active>UNIQUE Active:</active>
1929
+ Deals 200 + (stored magic) (max 400) magic damage to nearby enemy units (90
1930
+ second cooldown).\",\"sanitizedDescription\":\"+350 Health +350 Mana +50 Magic
1931
+ Resist UNIQUE Passive: Reduces and stores 10% of magic damage received. UNIQUE
1932
+ Active: Deals 200 + (stored magic) (max 400) magic damage to nearby enemy
1933
+ units (90 second cooldown).\",\"plaintext\":\"Improves defense, activate for
1934
+ area magic damage\",\"depth\":3,\"from\":[\"1057\",\"3010\"],\"tags\":[\"Health\",\"SpellBlock\",\"Mana\",\"Active\"],\"maps\":{\"1\":false,\"10\":false,\"12\":false},\"image\":{\"full\":\"3180.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":48,\"y\":240,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":350.0,\"FlatMPPoolMod\":350.0,\"FlatSpellBlockMod\":50.0}},\"3042\":{\"id\":3042,\"name\":\"Muramana\",\"gold\":{\"base\":2100,\"total\":2100,\"sell\":2940,\"purchasable\":false},\"description\":\"<stats>+1000
1935
+ Mana<br>+20 Attack Damage<br>+7 Mana Regen per 5 seconds</stats><br><br><unique>UNIQUE
1936
+ Passive - Awe:</unique> Grants bonus Attack Damage equal to 2% of maximum
1937
+ Mana.<br><unique>UNIQUE Toggle:</unique> Single target spells and attacks
1938
+ (on hit) consume 3% of current Mana to deal bonus physical damage equal to
1939
+ twice the amount of Mana consumed.<br><br><i>(Unique Passives with the same
1940
+ name don't stack.)</i>\",\"sanitizedDescription\":\"+1000 Mana +20 Attack
1941
+ Damage +7 Mana Regen per 5 seconds UNIQUE Passive - Awe: Grants bonus Attack
1942
+ Damage equal to 2% of maximum Mana. UNIQUE Toggle: Single target spells and
1943
+ attacks (on hit) consume 3% of current Mana to deal bonus physical damage
1944
+ equal to twice the amount of Mana consumed. (Unique Passives with the same
1945
+ name don't stack.)\",\"depth\":4,\"from\":[\"3004\"],\"specialRecipe\":3004,\"inStore\":false,\"tags\":[\"OnHit\"],\"image\":{\"full\":\"3042.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":336,\"y\":288,\"w\":48,\"h\":48},\"stats\":{\"FlatMPPoolMod\":1000.0,\"FlatMPRegenMod\":1.42,\"FlatPhysicalDamageMod\":20.0}},\"3181\":{\"id\":3181,\"name\":\"Sanguine
1946
+ Blade\",\"gold\":{\"base\":600,\"total\":2275,\"sell\":1593,\"purchasable\":true},\"description\":\"<stats>+40
1947
+ Attack Damage<br>+15% Life Steal</stats><br><br><unique>UNIQUE Passive:</unique>
1948
+ Basic attacks grant +6 Attack Damage and +1% Life Steal for 4 seconds on hit
1949
+ (effect stacks up to 5 times).\",\"sanitizedDescription\":\"+40 Attack Damage
1950
+ +15% Life Steal UNIQUE Passive: Basic attacks grant +6 Attack Damage and +1%
1951
+ Life Steal for 4 seconds on hit (effect stacks up to 5 times).\",\"plaintext\":\"Greatly
1952
+ increases Attack Damage and Life Steal\",\"depth\":3,\"from\":[\"1037\",\"1053\"],\"tags\":[\"Damage\",\"LifeSteal\"],\"maps\":{\"1\":false},\"image\":{\"full\":\"3181.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":96,\"y\":240,\"w\":48,\"h\":48},\"stats\":{\"FlatPhysicalDamageMod\":40.0,\"PercentLifeStealMod\":0.15}},\"3043\":{\"id\":3043,\"name\":\"Muramana\",\"gold\":{\"base\":2100,\"total\":2100,\"sell\":2912,\"purchasable\":false},\"description\":\"<stats>+1000
1953
+ Mana<br>+20 Attack Damage<br>+7 Mana Regen per 5 seconds</stats><br><br><unique>UNIQUE
1954
+ Passive - Awe:</unique> Grants bonus Attack Damage equal to 2% of maximum
1955
+ Mana.<br><unique>UNIQUE Toggle:</unique> Single target spells and attacks
1956
+ (on hit) consume 3% of current Mana to deal bonus physical damage equal to
1957
+ twice the amount of Mana consumed.<br><br><i>(Unique Passives with the same
1958
+ name don't stack.)</i>\",\"sanitizedDescription\":\"+1000 Mana +20 Attack
1959
+ Damage +7 Mana Regen per 5 seconds UNIQUE Passive - Awe: Grants bonus Attack
1960
+ Damage equal to 2% of maximum Mana. UNIQUE Toggle: Single target spells and
1961
+ attacks (on hit) consume 3% of current Mana to deal bonus physical damage
1962
+ equal to twice the amount of Mana consumed. (Unique Passives with the same
1963
+ name don't stack.)\",\"depth\":4,\"from\":[\"3008\"],\"specialRecipe\":3008,\"inStore\":false,\"tags\":[\"OnHit\"],\"maps\":{\"1\":false,\"10\":false,\"12\":false},\"image\":{\"full\":\"3043.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":384,\"y\":288,\"w\":48,\"h\":48},\"stats\":{\"FlatMPPoolMod\":1000.0,\"FlatMPRegenMod\":1.42,\"FlatPhysicalDamageMod\":20.0}},\"3044\":{\"id\":3044,\"name\":\"Phage\",\"gold\":{\"base\":565,\"total\":1325,\"sell\":927,\"purchasable\":true},\"description\":\"<stats>+200
1964
+ Health<br>+20 Attack Damage</stats><br><br><unique>UNIQUE Passive - Rage:</unique>
1965
+ Basic attacks grant 20 Movement Speed for 2 seconds. Kills grant 60 Movement
1966
+ Speed instead. This Movement Speed bonus is halved for ranged champions.<br><br><i>(Unique
1967
+ Passives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"+200
1968
+ Health +20 Attack Damage UNIQUE Passive - Rage: Basic attacks grant 20 Movement
1969
+ Speed for 2 seconds. Kills grant 60 Movement Speed instead. This Movement
1970
+ Speed bonus is halved for ranged champions. (Unique Passives with the same
1971
+ name don't stack.)\",\"plaintext\":\"Attacks and kills give a small burst
1972
+ of speed\",\"depth\":2,\"from\":[\"1028\",\"1036\"],\"into\":[\"3078\",\"3184\"],\"tags\":[\"Health\",\"Damage\",\"OnHit\"],\"image\":{\"full\":\"3044.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":432,\"y\":288,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":200.0,\"FlatPhysicalDamageMod\":20.0}},\"3046\":{\"id\":3046,\"name\":\"Phantom
1973
+ Dancer\",\"gold\":{\"base\":495,\"total\":2800,\"sell\":1960,\"purchasable\":true},\"description\":\"<stats>+50%
1974
+ Attack Speed<br>+30% Critical Strike Chance<br>+5% Movement Speed</stats><br><br><unique>UNIQUE
1975
+ Passive:</unique> Champion can move through units.\",\"sanitizedDescription\":\"+50%
1976
+ Attack Speed +30% Critical Strike Chance +5% Movement Speed UNIQUE Passive:
1977
+ Champion can move through units.\",\"colloq\":\"pd\",\"plaintext\":\"Champion
1978
+ attacks faster and can move through units\",\"depth\":3,\"from\":[\"1018\",\"3086\",\"1042\"],\"tags\":[\"CriticalStrike\",\"AttackSpeed\",\"Movement\",\"NonbootsMovement\"],\"image\":{\"full\":\"3046.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":0,\"y\":336,\"w\":48,\"h\":48},\"stats\":{\"FlatCritChanceMod\":0.3,\"PercentAttackSpeedMod\":0.5,\"PercentMovementSpeedMod\":0.05}},\"3069\":{\"id\":3069,\"name\":\"Talisman
1979
+ of Ascension\",\"gold\":{\"base\":585,\"total\":2200,\"sell\":880,\"purchasable\":true},\"group\":\"GoldBase\",\"description\":\"<stats>+20%
1980
+ Cooldown Reduction<br>+15 Mana Regen per 5 seconds<br>+10 Health Regen per
1981
+ 5 seconds<br>+2 Gold per 10 seconds</stats><br><br><unique>UNIQUE Passive
1982
+ - Favor:</unique> Being near a minion death without dealing the killing blow
1983
+ grants 3 Gold and 10 Health.<br><active>UNIQUE Active:</active> Grants nearby
1984
+ allies +40% Movement Speed for 3 seconds (60 second cooldown).<br><br><groupLimit>Limited
1985
+ to 1 Gold Income item</groupLimit><br><br><i><font color='#447777'>''Praise
1986
+ the sun.'' - Historian Shurelya, 22 September, 25 CLE</font></i><br><br>\",\"sanitizedDescription\":\"+20%
1987
+ Cooldown Reduction +15 Mana Regen per 5 seconds +10 Health Regen per 5 seconds
1988
+ +2 Gold per 10 seconds UNIQUE Passive - Favor: Being near a minion death without
1989
+ dealing the killing blow grants 3 Gold and 10 Health. UNIQUE Active: Grants
1990
+ nearby allies +40% Movement Speed for 3 seconds (60 second cooldown). Limited
1991
+ to 1 Gold Income item ''Praise the sun.'' - Historian Shurelya, 22 September,
1992
+ 25 CLE\",\"colloq\":\"shurelya;reverie\",\"plaintext\":\"Increases Health
1993
+ and Cooldown Reduction, activate to speed up nearby allies\",\"depth\":3,\"from\":[\"3096\",\"3114\"],\"tags\":[\"HealthRegen\",\"ManaRegen\",\"Movement\",\"CooldownReduction\",\"NonbootsMovement\",\"Active\",\"GoldPer\"],\"image\":{\"full\":\"3069.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":0,\"y\":384,\"w\":48,\"h\":48},\"stats\":{\"FlatHPRegenMod\":2.0,\"FlatMPRegenMod\":3.0}},\"1029\":{\"id\":1029,\"name\":\"Cloth
1994
+ Armor\",\"gold\":{\"base\":300,\"total\":300,\"sell\":210,\"purchasable\":true},\"description\":\"<stats>+15
1995
+ Armor</stats>\",\"sanitizedDescription\":\"+15 Armor\",\"plaintext\":\"Slightly
1996
+ increases Armor\",\"into\":[\"3047\",\"3024\",\"3075\",\"3159\",\"3191\"],\"tags\":[\"Armor\"],\"image\":{\"full\":\"1029.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":384,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatArmorMod\":15.0}},\"1028\":{\"id\":1028,\"name\":\"Ruby
1997
+ Crystal\",\"gold\":{\"base\":400,\"total\":400,\"sell\":280,\"purchasable\":true},\"description\":\"<stats>+150
1998
+ Health</stats>\",\"sanitizedDescription\":\"+150 Health\",\"plaintext\":\"Increases
1999
+ Health\",\"into\":[\"3067\",\"3105\",\"3044\",\"3010\",\"3136\",\"3083\",\"2049\",\"2045\",\"3084\",\"3185\",\"2051\",\"3022\",\"3056\",\"3211\",\"3071\",\"3102\"],\"tags\":[\"Health\"],\"image\":{\"full\":\"1028.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":336,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":150.0}},\"3169\":{\"id\":3169,\"name\":\"Bonetooth
2000
+ Necklace\",\"gold\":{\"base\":0,\"total\":0,\"sell\":0,\"purchasable\":false},\"group\":\"RelicBase\",\"description\":\"<unique>UNIQUE
2001
+ Active - Bonetooth Totem:</unique> Places a Stealth Ward that lasts 120 seconds
2002
+ (120 Second cooldown). Active upgrades at 20 Trophies.<br><br><unique>UNIQUE
2003
+ Passive - Mementos of the Hunt:</unique> Rengar collects trophies when killing
2004
+ Champions and gains bonus effects based on how many trophies he has. Kills
2005
+ and assists grant 1 trophy.<br><br><passive>3 Trophies:</passive> Rengar gains
2006
+ 25 Movement Speed whilst out of combat or in brush. <br><passive>6 Trophies:</passive>
2007
+ Increases the range of Rengar's Leap by 125.<br><passive>12 Trophies:</passive>
2008
+ Thrill of the Hunt's duration is increased by 5 seconds.<br><passive>20 Trophies:</passive>
2009
+ Thrill of the Hunt's Movement Speed while stealthed is doubled.\",\"sanitizedDescription\":\"UNIQUE
2010
+ Active - Bonetooth Totem: Places a Stealth Ward that lasts 120 seconds (120
2011
+ Second cooldown). Active upgrades at 20 Trophies. UNIQUE Passive - Mementos
2012
+ of the Hunt: Rengar collects trophies when killing Champions and gains bonus
2013
+ effects based on how many trophies he has. Kills and assists grant 1 trophy.
2014
+ 3 Trophies: Rengar gains 25 Movement Speed whilst out of combat or in brush.
2015
+ 6 Trophies: Increases the range of Rengar's Leap by 125. 12 Trophies: Thrill
2016
+ of the Hunt's duration is increased by 5 seconds. 20 Trophies: Thrill of the
2017
+ Hunt's Movement Speed while stealthed is doubled.\",\"into\":[\"3175\",\"3410\",\"3416\",\"3422\"],\"inStore\":false,\"hideFromAll\":true,\"requiredChampion\":\"Rengar\",\"tags\":[\"Movement\",\"Active\",\"Vision\",\"Trinket\"],\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3169.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":240,\"y\":192,\"w\":48,\"h\":48},\"stats\":{}},\"1027\":{\"id\":1027,\"name\":\"Sapphire
2018
+ Crystal\",\"gold\":{\"base\":400,\"total\":400,\"sell\":280,\"purchasable\":true},\"description\":\"<stats>+200
2019
+ Mana</stats>\",\"sanitizedDescription\":\"+200 Mana\",\"plaintext\":\"Increases
2020
+ Mana\",\"into\":[\"3057\",\"3070\",\"3073\",\"3010\",\"3024\"],\"tags\":[\"Mana\"],\"image\":{\"full\":\"1027.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":288,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatMPPoolMod\":200.0}},\"3168\":{\"id\":3168,\"name\":\"Bonetooth
2021
+ Necklace\",\"gold\":{\"base\":0,\"total\":0,\"sell\":0,\"purchasable\":false},\"group\":\"RelicBase\",\"description\":\"<unique>UNIQUE
2022
+ Active - Bonetooth Totem:</unique> Places a Stealth Ward that lasts 120 seconds
2023
+ (120 Second cooldown). Active upgrades at 20 Trophies.<br><br><unique>UNIQUE
2024
+ Passive - Mementos of the Hunt:</unique> Rengar collects trophies when killing
2025
+ Champions and gains bonus effects based on how many trophies he has. Kills
2026
+ and assists grant 1 trophy.<br><br><passive>3 Trophies:</passive> Rengar gains
2027
+ 25 Movement Speed whilst out of combat or in brush. <br><passive>6 Trophies:</passive>
2028
+ Increases the range of Rengar's Leap by 125.<br><passive>12 Trophies:</passive>
2029
+ Thrill of the Hunt's duration is increased by 5 seconds.<br><passive>20 Trophies:</passive>
2030
+ Thrill of the Hunt's Movement Speed while stealthed is doubled.\",\"sanitizedDescription\":\"UNIQUE
2031
+ Active - Bonetooth Totem: Places a Stealth Ward that lasts 120 seconds (120
2032
+ Second cooldown). Active upgrades at 20 Trophies. UNIQUE Passive - Mementos
2033
+ of the Hunt: Rengar collects trophies when killing Champions and gains bonus
2034
+ effects based on how many trophies he has. Kills and assists grant 1 trophy.
2035
+ 3 Trophies: Rengar gains 25 Movement Speed whilst out of combat or in brush.
2036
+ 6 Trophies: Increases the range of Rengar's Leap by 125. 12 Trophies: Thrill
2037
+ of the Hunt's duration is increased by 5 seconds. 20 Trophies: Thrill of the
2038
+ Hunt's Movement Speed while stealthed is doubled.\",\"inStore\":false,\"hideFromAll\":true,\"requiredChampion\":\"Rengar\",\"tags\":[\"Movement\",\"Active\",\"Vision\",\"Trinket\"],\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3168.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":192,\"y\":192,\"w\":48,\"h\":48},\"stats\":{}},\"1026\":{\"id\":1026,\"name\":\"Blasting
2039
+ Wand\",\"gold\":{\"base\":860,\"total\":860,\"sell\":602,\"purchasable\":true},\"description\":\"<stats>+40
2040
+ Ability Power</stats>\",\"sanitizedDescription\":\"+40 Ability Power\",\"plaintext\":\"Moderately
2041
+ increases Ability Power\",\"into\":[\"3001\",\"3135\",\"3027\",\"3029\",\"3089\",\"3100\",\"3116\",\"3124\",\"3188\",\"3090\",\"3003\",\"3007\",\"3056\",\"3060\"],\"tags\":[\"SpellDamage\"],\"image\":{\"full\":\"1026.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":240,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatMagicDamageMod\":40.0}},\"3070\":{\"id\":3070,\"name\":\"Tear
2042
+ of the Goddess\",\"gold\":{\"base\":120,\"total\":700,\"sell\":490,\"purchasable\":true},\"description\":\"<stats>+250
2043
+ Mana<br>+6 Mana Regen per 5 seconds</stats><br><br><unique>UNIQUE Passive
2044
+ - Mana Charge:</unique> +4 maximum Mana on spell cast or Mana expenditure
2045
+ (up to twice per 8 seconds); <br>+1 maximum Mana per 8 seconds;<br>Max +750
2046
+ Mana.<br><br><i>(Unique Passives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"+250
2047
+ Mana +6 Mana Regen per 5 seconds UNIQUE Passive - Mana Charge: +4 maximum
2048
+ Mana on spell cast or Mana expenditure (up to twice per 8 seconds); +1 maximum
2049
+ Mana per 8 seconds; Max +750 Mana. (Unique Passives with the same name don't
2050
+ stack.)\",\"plaintext\":\"Increases maximum Mana as Mana is spent\",\"depth\":2,\"from\":[\"1027\",\"1004\"],\"into\":[\"3003\",\"3004\"],\"tags\":[\"Mana\",\"ManaRegen\"],\"maps\":{\"8\":false},\"image\":{\"full\":\"3070.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":48,\"y\":384,\"w\":48,\"h\":48},\"stats\":{\"FlatMPPoolMod\":250.0,\"FlatMPRegenMod\":1.2}},\"1033\":{\"id\":1033,\"name\":\"Null-Magic
2051
+ Mantle\",\"gold\":{\"base\":400,\"total\":400,\"sell\":280,\"purchasable\":true},\"description\":\"<stats>+20
2052
+ Magic Resist</stats>\",\"sanitizedDescription\":\"+20 Magic Resist\",\"plaintext\":\"Slightly
2053
+ increases Magic Resist\",\"into\":[\"3111\",\"3028\",\"3105\",\"3091\",\"3155\",\"3023\",\"3290\"],\"tags\":[\"SpellBlock\"],\"image\":{\"full\":\"1033.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":0,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatSpellBlockMod\":20.0}},\"3071\":{\"id\":3071,\"name\":\"The
2054
+ Black Cleaver\",\"gold\":{\"base\":1263,\"total\":3000,\"sell\":2100,\"purchasable\":true},\"description\":\"<stats>+200
2055
+ Health<br>+50 Attack Damage<br>+10% Cooldown Reduction<br><br></stats><passive>UNIQUE
2056
+ Passive:</passive> +10 Armor Penetration<br><passive>Passive:</passive> Dealing
2057
+ physical damage to an enemy champion reduces their Armor by 5% for 4 seconds
2058
+ (stacks up to 5 times, up to 25%).<br><br><i>(Armor Penetration: Physical
2059
+ damage is increased by ignoring an amount of the target's Armor equal to Armor
2060
+ Penetration.)</i>\",\"sanitizedDescription\":\"+200 Health +50 Attack Damage
2061
+ +10% Cooldown Reduction UNIQUE Passive: +10 Armor Penetration Passive: Dealing
2062
+ physical damage to an enemy champion reduces their Armor by 5% for 4 seconds
2063
+ (stacks up to 5 times, up to 25%). (Armor Penetration: Physical damage is
2064
+ increased by ignoring an amount of the target's Armor equal to Armor Penetration.)\",\"colloq\":\"bc\",\"plaintext\":\"Dealing
2065
+ physical damage to enemy champions reduces their Armor\",\"depth\":3,\"from\":[\"3134\",\"1028\"],\"tags\":[\"Health\",\"Damage\",\"CooldownReduction\",\"ArmorPenetration\",\"OnHit\"],\"image\":{\"full\":\"3071.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":96,\"y\":384,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":200.0,\"FlatPhysicalDamageMod\":50.0}},\"3174\":{\"id\":3174,\"name\":\"Athene's
2066
+ Unholy Grail\",\"gold\":{\"base\":900,\"total\":2600,\"sell\":1820,\"purchasable\":true},\"description\":\"<stats>+60
2067
+ Ability Power<br>+40 Magic Resist<br>+15 Mana Regen per 5 seconds<br>+20%
2068
+ Cooldown Reduction</stats><br><br><unique>UNIQUE Passive:</unique> Restores
2069
+ 12% of maximum Mana on kill or assist.<br><unique>UNIQUE Passive - Mana Font:</unique>
2070
+ Increases Mana Regen by 1% for every 1% of missing Mana.<br><br><i>(Unique
2071
+ Passives with the same name do not stack.)</i>\",\"sanitizedDescription\":\"+60
2072
+ Ability Power +40 Magic Resist +15 Mana Regen per 5 seconds +20% Cooldown
2073
+ Reduction UNIQUE Passive: Restores 12% of maximum Mana on kill or assist.
2074
+ UNIQUE Passive - Mana Font: Increases Mana Regen by 1% for every 1% of missing
2075
+ Mana. (Unique Passives with the same name do not stack.)\",\"plaintext\":\"Restores
2076
+ maximum Mana on kill or assist\",\"depth\":3,\"from\":[\"3108\",\"3028\"],\"tags\":[\"SpellBlock\",\"SpellDamage\",\"ManaRegen\",\"CooldownReduction\"],\"image\":{\"full\":\"3174.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":432,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatMPRegenMod\":3.0,\"FlatMagicDamageMod\":60.0,\"FlatSpellBlockMod\":40.0}},\"3171\":{\"id\":3171,\"name\":\"Bonetooth
2077
+ Necklace\",\"gold\":{\"base\":0,\"total\":0,\"sell\":0,\"purchasable\":false},\"group\":\"RelicBase\",\"description\":\"<unique>UNIQUE
2078
+ Active - Bonetooth Totem:</unique> Places a Stealth Ward that lasts 180 seconds
2079
+ (120 Second cooldown).<br><br><unique>UNIQUE Passive - Mementos of the Hunt:</unique>
2080
+ Rengar collects trophies when killing Champions and gains bonus effects based
2081
+ on how many trophies he has. Kills and assists grant 1 trophy.<br><br><passive>3
2082
+ Trophies:</passive> Rengar gains 25 Movement Speed whilst out of combat or
2083
+ in brush. <br><passive>6 Trophies:</passive> Increases the range of Rengar's
2084
+ Leap by 125.<br><passive>12 Trophies:</passive> Thrill of the Hunt's duration
2085
+ is increased by 5 seconds.<br><passive>20 Trophies:</passive> Thrill of the
2086
+ Hunt's Movement Speed while stealthed is doubled.\",\"sanitizedDescription\":\"UNIQUE
2087
+ Active - Bonetooth Totem: Places a Stealth Ward that lasts 180 seconds (120
2088
+ Second cooldown). UNIQUE Passive - Mementos of the Hunt: Rengar collects trophies
2089
+ when killing Champions and gains bonus effects based on how many trophies
2090
+ he has. Kills and assists grant 1 trophy. 3 Trophies: Rengar gains 25 Movement
2091
+ Speed whilst out of combat or in brush. 6 Trophies: Increases the range of
2092
+ Rengar's Leap by 125. 12 Trophies: Thrill of the Hunt's duration is increased
2093
+ by 5 seconds. 20 Trophies: Thrill of the Hunt's Movement Speed while stealthed
2094
+ is doubled.\",\"inStore\":false,\"hideFromAll\":true,\"requiredChampion\":\"Rengar\",\"tags\":[\"Movement\",\"Active\",\"Vision\",\"Trinket\"],\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3171.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":336,\"y\":192,\"w\":48,\"h\":48},\"stats\":{}},\"1031\":{\"id\":1031,\"name\":\"Chain
2095
+ Vest\",\"gold\":{\"base\":720,\"total\":720,\"sell\":504,\"purchasable\":true},\"description\":\"<stats>+40
2096
+ Armor</stats>\",\"sanitizedDescription\":\"+40 Armor\",\"plaintext\":\"Greatly
2097
+ increases Armor\",\"into\":[\"3026\",\"3068\",\"3024\",\"3005\",\"3075\",\"3082\"],\"tags\":[\"Armor\"],\"image\":{\"full\":\"1031.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":432,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatArmorMod\":40.0}},\"3172\":{\"id\":3172,\"name\":\"Zephyr\",\"gold\":{\"base\":725,\"total\":2850,\"sell\":1995,\"purchasable\":true},\"description\":\"<stats>+25
2098
+ Attack Damage<br>+50% Attack Speed<br>+10% Movement Speed<br>+10% Cooldown
2099
+ Reduction</stats><br><br><unique>UNIQUE Passive - Tenacity:</unique> Reduces
2100
+ the duration of stuns, slows, taunts, fears, silences, blinds, polymorphs,
2101
+ and immobilizes by 35%.<br><br><i>(Unique Passives with the same name do not
2102
+ stack.)</i>\",\"sanitizedDescription\":\"+25 Attack Damage +50% Attack Speed
2103
+ +10% Movement Speed +10% Cooldown Reduction UNIQUE Passive - Tenacity: Reduces
2104
+ the duration of stuns, slows, taunts, fears, silences, blinds, polymorphs,
2105
+ and immobilizes by 35%. (Unique Passives with the same name do not stack.)\",\"plaintext\":\"Improves
2106
+ offense and reduces duration of disabling effects\",\"depth\":3,\"from\":[\"3101\",\"1037\"],\"tags\":[\"Damage\",\"AttackSpeed\",\"Movement\",\"NonbootsMovement\",\"CooldownReduction\",\"Tenacity\"],\"image\":{\"full\":\"3172.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":384,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatPhysicalDamageMod\":25.0,\"PercentAttackSpeedMod\":0.5,\"PercentMovementSpeedMod\":0.1}},\"3175\":{\"id\":3175,\"name\":\"Bonetooth
2107
+ Necklace\",\"gold\":{\"base\":0,\"total\":0,\"sell\":0,\"purchasable\":false},\"group\":\"RelicBase\",\"description\":\"<unique>UNIQUE
2108
+ Active - Bonetooth Totem:</unique> Places a Stealth Ward that lasts 60 seconds
2109
+ (90 Second cooldown). Limit 3 Stealth Wards on the map per player.<br><br><unique>UNIQUE
2110
+ Passive - Mementos of the Hunt:</unique> Rengar collects trophies when killing
2111
+ Champions and gains bonus effects based on how many trophies he has. Kills
2112
+ and assists grant 1 trophy.<br><br><passive>3 Trophies:</passive> Rengar gains
2113
+ 25 Movement Speed whilst out of combat or in brush. <br><passive>6 Trophies:</passive>
2114
+ Increases the range of Rengar's Leap by 125.<br><passive>12 Trophies:</passive>
2115
+ Thrill of the Hunt's duration is increased by 5 seconds.<br><passive>20 Trophies:</passive>
2116
+ Rengar gains the movement speed bonus of Thrill of the Hunt while he is stealthed.\",\"sanitizedDescription\":\"UNIQUE
2117
+ Active - Bonetooth Totem: Places a Stealth Ward that lasts 60 seconds (90
2118
+ Second cooldown). Limit 3 Stealth Wards on the map per player. UNIQUE Passive
2119
+ - Mementos of the Hunt: Rengar collects trophies when killing Champions and
2120
+ gains bonus effects based on how many trophies he has. Kills and assists grant
2121
+ 1 trophy. 3 Trophies: Rengar gains 25 Movement Speed whilst out of combat
2122
+ or in brush. 6 Trophies: Increases the range of Rengar's Leap by 125. 12 Trophies:
2123
+ Thrill of the Hunt's duration is increased by 5 seconds. 20 Trophies: Rengar
2124
+ gains the movement speed bonus of Thrill of the Hunt while he is stealthed.\",\"depth\":2,\"from\":[\"3169\"],\"specialRecipe\":3169,\"inStore\":false,\"hideFromAll\":true,\"requiredChampion\":\"Rengar\",\"tags\":[\"Movement\",\"Active\",\"Vision\",\"Trinket\"],\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3175.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":0,\"y\":240,\"w\":48,\"h\":48},\"stats\":{}},\"3078\":{\"id\":3078,\"name\":\"Trinity
2125
+ Force\",\"gold\":{\"base\":3,\"total\":3703,\"sell\":2592,\"purchasable\":true},\"description\":\"<stats>+30
2126
+ Attack Damage<br>+30 Ability Power<br>+30% Attack Speed<br>+10% Critical Strike
2127
+ Chance<br>+8% Movement Speed<br>+250 Health<br>+200 Mana</stats><br><br><unique>UNIQUE
2128
+ Passive - Rage:</unique> Basic attacks grant 20 Movement Speed for 2 seconds.
2129
+ Kills grant 60 Movement Speed instead. This Movement Speed bonus is halved
2130
+ for ranged champions.<br><unique>UNIQUE Passive - Spellblade:</unique> After
2131
+ using an ability, the next basic attack deals bonus physical damage equal
2132
+ to 200% of base Attack Damage on hit (2 second cooldown).<br><br><i>(Unique
2133
+ Passives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"+30
2134
+ Attack Damage +30 Ability Power +30% Attack Speed +10% Critical Strike Chance
2135
+ +8% Movement Speed +250 Health +200 Mana UNIQUE Passive - Rage: Basic attacks
2136
+ grant 20 Movement Speed for 2 seconds. Kills grant 60 Movement Speed instead.
2137
+ This Movement Speed bonus is halved for ranged champions. UNIQUE Passive -
2138
+ Spellblade: After using an ability, the next basic attack deals bonus physical
2139
+ damage equal to 200% of base Attack Damage on hit (2 second cooldown). (Unique
2140
+ Passives with the same name don't stack.)\",\"colloq\":\"triforce;tons of
2141
+ damage\",\"plaintext\":\"Tons of Damage\",\"depth\":3,\"from\":[\"3086\",\"3057\",\"3044\"],\"tags\":[\"Health\",\"Damage\",\"AttackSpeed\",\"SpellDamage\",\"Mana\",\"Movement\",\"CriticalStrike\",\"NonbootsMovement\",\"OnHit\"],\"image\":{\"full\":\"3078.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":384,\"y\":384,\"w\":48,\"h\":48},\"stats\":{\"FlatCritChanceMod\":0.1,\"FlatHPPoolMod\":250.0,\"FlatMPPoolMod\":200.0,\"FlatMagicDamageMod\":30.0,\"FlatPhysicalDamageMod\":30.0,\"PercentAttackSpeedMod\":0.3,\"PercentMovementSpeedMod\":0.08}},\"3077\":{\"id\":3077,\"name\":\"Tiamat
2142
+ (Melee Only)\",\"gold\":{\"base\":305,\"total\":1900,\"sell\":1330,\"purchasable\":true},\"description\":\"<stats>+40
2143
+ Attack Damage<br>+15 Health Regen per 5 seconds</stats><br><br><unique>UNIQUE
2144
+ Passive - Cleave:</unique> Basic attacks deal 20% to 60% of total Attack Damage
2145
+ as bonus physical damage to enemies near the target on hit (enemies closest
2146
+ to the target take the most damage).<br><active>UNIQUE Active - Crescent:</active>
2147
+ Deals 60% to 100% of total Attack Damage as physical damage to nearby enemy
2148
+ units (closest enemies take the most damage) (10 second cooldown).<br><br><i>(Unique
2149
+ Passives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"+40
2150
+ Attack Damage +15 Health Regen per 5 seconds UNIQUE Passive - Cleave: Basic
2151
+ attacks deal 20% to 60% of total Attack Damage as bonus physical damage to
2152
+ enemies near the target on hit (enemies closest to the target take the most
2153
+ damage). UNIQUE Active - Crescent: Deals 60% to 100% of total Attack Damage
2154
+ as physical damage to nearby enemy units (closest enemies take the most damage)
2155
+ (10 second cooldown). (Unique Passives with the same name don't stack.)\",\"plaintext\":\"Melee
2156
+ attacks hit nearby enemies\",\"depth\":2,\"from\":[\"1037\",\"1036\",\"1006\",\"1006\"],\"into\":[\"3074\"],\"tags\":[\"HealthRegen\",\"Damage\",\"Active\",\"OnHit\"],\"image\":{\"full\":\"3077.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":336,\"y\":384,\"w\":48,\"h\":48},\"stats\":{\"FlatHPRegenMod\":3.0,\"FlatPhysicalDamageMod\":40.0}},\"3074\":{\"id\":3074,\"name\":\"Ravenous
2157
+ Hydra (Melee Only)\",\"gold\":{\"base\":600,\"total\":3300,\"sell\":2310,\"purchasable\":true},\"description\":\"<stats>+75
2158
+ Attack Damage<br>+15 Health Regen per 5 seconds<br>+12% Life Steal</stats><br><br><passive>Passive:</passive>
2159
+ Life Steal applies to damage dealt by this item.<br><unique>UNIQUE Passive
2160
+ - Cleave:</unique> Basic attacks deal 20% to 60% of total Attack Damage as
2161
+ bonus physical damage to enemies near the target on hit (enemies closest to
2162
+ the target take the most damage).<br><active>UNIQUE Active - Crescent:</active>
2163
+ Deals 60% to 100% of total Attack Damage as physical damage to nearby enemy
2164
+ units (closest enemies take the most damage) (10 second cooldown).<br><br><i>(Unique
2165
+ Passives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"+75
2166
+ Attack Damage +15 Health Regen per 5 seconds +12% Life Steal Passive: Life
2167
+ Steal applies to damage dealt by this item. UNIQUE Passive - Cleave: Basic
2168
+ attacks deal 20% to 60% of total Attack Damage as bonus physical damage to
2169
+ enemies near the target on hit (enemies closest to the target take the most
2170
+ damage). UNIQUE Active - Crescent: Deals 60% to 100% of total Attack Damage
2171
+ as physical damage to nearby enemy units (closest enemies take the most damage)
2172
+ (10 second cooldown). (Unique Passives with the same name don't stack.)\",\"plaintext\":\"Melee
2173
+ attacks hit nearby enemies, dealing damage and restoring Health\",\"depth\":3,\"from\":[\"3077\",\"1053\"],\"tags\":[\"HealthRegen\",\"Damage\",\"LifeSteal\",\"Active\",\"OnHit\"],\"image\":{\"full\":\"3074.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":240,\"y\":384,\"w\":48,\"h\":48},\"stats\":{\"FlatHPRegenMod\":3.0,\"FlatPhysicalDamageMod\":75.0,\"PercentLifeStealMod\":0.12}},\"3075\":{\"id\":3075,\"name\":\"Thornmail\",\"gold\":{\"base\":1180,\"total\":2200,\"sell\":1540,\"purchasable\":true},\"description\":\"<stats>+100
2174
+ Armor </stats><br><br><unique>UNIQUE Passive:</unique> Upon being hit by
2175
+ a basic attack, returns 30% of the incoming damage (before being reduced by
2176
+ defenses) to the attacker as magic damage.\",\"sanitizedDescription\":\"+100
2177
+ Armor UNIQUE Passive: Upon being hit by a basic attack, returns 30% of the
2178
+ incoming damage (before being reduced by defenses) to the attacker as magic
2179
+ damage.\",\"plaintext\":\"Returns damage taken from basic attacks as magic
2180
+ damage\",\"depth\":2,\"from\":[\"1029\",\"1031\"],\"tags\":[\"Armor\"],\"maps\":{\"10\":false},\"image\":{\"full\":\"3075.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":288,\"y\":384,\"w\":48,\"h\":48},\"stats\":{\"FlatArmorMod\":100.0}},\"3170\":{\"id\":3170,\"name\":\"Moonflair
2181
+ Spellblade\",\"gold\":{\"base\":720,\"total\":2600,\"sell\":1820,\"purchasable\":true},\"description\":\"<stats>+50
2182
+ Ability Power<br>+50 Armor<br>+50 Magic Resist</stats><br><br><unique>UNIQUE
2183
+ Passive - Tenacity:</unique> Reduces the duration of stuns, slows, taunts,
2184
+ fears, silences, blinds, polymorphs, and immobilizes by 35%.<br><br><i>(Unique
2185
+ Passives with the same name do not stack.)</i>\",\"sanitizedDescription\":\"+50
2186
+ Ability Power +50 Armor +50 Magic Resist UNIQUE Passive - Tenacity: Reduces
2187
+ the duration of stuns, slows, taunts, fears, silences, blinds, polymorphs,
2188
+ and immobilizes by 35%. (Unique Passives with the same name do not stack.)\",\"plaintext\":\"Improves
2189
+ defense and reduces duration of disabling effects\",\"depth\":3,\"from\":[\"3191\",\"1057\"],\"tags\":[\"SpellBlock\",\"Armor\",\"SpellDamage\",\"Tenacity\"],\"maps\":{\"1\":false,\"12\":false},\"image\":{\"full\":\"3170.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":288,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatArmorMod\":50.0,\"FlatMagicDamageMod\":50.0,\"FlatSpellBlockMod\":50.0}},\"3072\":{\"id\":3072,\"name\":\"The
2190
+ Bloodthirster\",\"gold\":{\"base\":850,\"total\":3200,\"sell\":2240,\"purchasable\":true},\"description\":\"<stats>+70
2191
+ Attack Damage<br>+12% Life Steal</stats><br><br><passive>Passive:</passive>
2192
+ Grants +1 Attack Damage and +0.2% Life Steal per stack (max +30 Attack Damage
2193
+ and +6% Life Steal). Grants 1 stack per unit kill (max 30 stacks). Half of
2194
+ the stacks are lost upon death.\",\"sanitizedDescription\":\"+70 Attack Damage
2195
+ +12% Life Steal Passive: Grants +1 Attack Damage and +0.2% Life Steal per
2196
+ stack (max +30 Attack Damage and +6% Life Steal). Grants 1 stack per unit
2197
+ kill (max 30 stacks). Half of the stacks are lost upon death.\",\"colloq\":\"bt\",\"plaintext\":\"Grants
2198
+ massive Attack Damage and Life Steal\",\"depth\":3,\"from\":[\"1038\",\"1053\"],\"tags\":[\"Damage\",\"LifeSteal\"],\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3072.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":144,\"y\":384,\"w\":48,\"h\":48},\"stats\":{\"FlatPhysicalDamageMod\":70.0,\"PercentLifeStealMod\":0.12}},\"3073\":{\"id\":3073,\"name\":\"Tear
2199
+ of the Goddess (Crystal Scar)\",\"gold\":{\"base\":120,\"total\":700,\"sell\":490,\"purchasable\":true},\"description\":\"<stats>+250
2200
+ Mana<br>+6 Mana Regen per 5 seconds</stats><br><br><unique>UNIQUE Passive
2201
+ - Mana Charge:</unique> +5 maximum Mana on spell cast or Mana expenditure
2202
+ (up to twice per 6 seconds); <br>+1 maximum Mana per 6 seconds;<br>Max +750
2203
+ Mana.<br><br><i>(Unique Passives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"+250
2204
+ Mana +6 Mana Regen per 5 seconds UNIQUE Passive - Mana Charge: +5 maximum
2205
+ Mana on spell cast or Mana expenditure (up to twice per 6 seconds); +1 maximum
2206
+ Mana per 6 seconds; Max +750 Mana. (Unique Passives with the same name don't
2207
+ stack.)\",\"plaintext\":\"Increases maximum Mana as Mana is spent\",\"depth\":2,\"from\":[\"1027\",\"1004\"],\"into\":[\"3007\",\"3008\"],\"tags\":[\"Mana\",\"ManaRegen\"],\"maps\":{\"1\":false,\"10\":false,\"12\":false},\"image\":{\"full\":\"3073.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":192,\"y\":384,\"w\":48,\"h\":48},\"stats\":{\"FlatMPPoolMod\":250.0,\"FlatMPRegenMod\":1.2}},\"2040\":{\"id\":2040,\"name\":\"Ichor
2208
+ of Rage\",\"gold\":{\"base\":500,\"total\":500,\"sell\":200,\"purchasable\":true},\"description\":\"<consumable>Click
2209
+ to Consume:</consumable> Grants +20-40 Attack Damage based on level, +20-40%
2210
+ Attack Speed based on level, and 15% increased damage to turrets for 4 minutes.\",\"sanitizedDescription\":\"Click
2211
+ to Consume: Grants +20-40 Attack Damage based on level, +20-40% Attack Speed
2212
+ based on level, and 15% increased damage to turrets for 4 minutes.\",\"plaintext\":\"Temporarily
2213
+ increases Attack Damage, Attack Speed, and increases damage to turrets\",\"consumed\":true,\"stacks\":3,\"consumeOnFull\":true,\"tags\":[\"Damage\",\"AttackSpeed\",\"Consumable\"],\"maps\":{\"1\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"2040.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":192,\"y\":144,\"w\":48,\"h\":48},\"stats\":{}},\"2041\":{\"id\":2041,\"name\":\"Crystalline
2214
+ Flask\",\"gold\":{\"base\":345,\"total\":345,\"sell\":138,\"purchasable\":true},\"description\":\"<unique>UNIQUE
2215
+ Passive:</unique> Holds 3 charges and refills upon visiting the shop.<br><active>UNIQUE
2216
+ Active:</active> Consumes a charge to restore 120 Health and 60 Mana over
2217
+ 12 seconds.\",\"sanitizedDescription\":\"UNIQUE Passive: Holds 3 charges and
2218
+ refills upon visiting the shop. UNIQUE Active: Consumes a charge to restore
2219
+ 120 Health and 60 Mana over 12 seconds.\",\"plaintext\":\"Restores Health
2220
+ and Mana over time, refills at shop\",\"tags\":[\"HealthRegen\",\"ManaRegen\",\"Consumable\",\"Active\"],\"maps\":{\"12\":false},\"image\":{\"full\":\"2041.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":240,\"y\":144,\"w\":48,\"h\":48},\"stats\":{}},\"2044\":{\"id\":2044,\"name\":\"Stealth
2221
+ Ward\",\"gold\":{\"base\":75,\"total\":75,\"sell\":30,\"purchasable\":true},\"group\":\"GreenWards\",\"description\":\"<groupLimit>Can
2222
+ only carry 3 Stealth Wards in inventory.</groupLimit><br><br><consumable>Click
2223
+ to Consume:</consumable> Places an invisible ward that reveals the surrounding
2224
+ area for 3 minutes. Limit 3 <font color='#BBFFFF'>Stealth Wards</font> on
2225
+ the map per player.\",\"sanitizedDescription\":\"Can only carry 3 Stealth
2226
+ Wards in inventory. Click to Consume: Places an invisible ward that reveals
2227
+ the surrounding area for 3 minutes. Limit 3 Stealth Wards on the map per player.\",\"plaintext\":\"Use
2228
+ to temporarily provide vision in an area\",\"consumed\":true,\"stacks\":3,\"tags\":[\"Consumable\",\"Vision\"],\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"2044.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":336,\"y\":144,\"w\":48,\"h\":48},\"stats\":{}},\"2045\":{\"id\":2045,\"name\":\"Ruby
2229
+ Sightstone\",\"gold\":{\"base\":400,\"total\":1600,\"sell\":640,\"purchasable\":true},\"description\":\"<stats>+400
2230
+ Health</stats><br><br><unique>UNIQUE Passive - Ward Refresh:</unique> Holds
2231
+ 5 charges and refills upon visiting the shop.<br><active>UNIQUE Active - Ghost
2232
+ Ward:</active> Consumes a charge to place a <font color='#BBFFFF'>Stealth
2233
+ Ward</font> that reveals the surrounding area for 3 minutes. A player may
2234
+ only have 3 <font color='#BBFFFF'>Stealth Wards</font> on the map at one time.<br><br><i>(Unique
2235
+ Passives with the same name don't stack.)</i>\",\"sanitizedDescription\":\"+400
2236
+ Health UNIQUE Passive - Ward Refresh: Holds 5 charges and refills upon visiting
2237
+ the shop. UNIQUE Active - Ghost Ward: Consumes a charge to place a Stealth
2238
+ Ward that reveals the surrounding area for 3 minutes. A player may only have
2239
+ 3 Stealth Wards on the map at one time. (Unique Passives with the same name
2240
+ don't stack.)\",\"plaintext\":\"Greatly increases Health and provides Stealth
2241
+ Wards over time\",\"depth\":3,\"from\":[\"2049\",\"1028\"],\"tags\":[\"Health\",\"Vision\",\"Active\"],\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"2045.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":384,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":400.0}},\"2043\":{\"id\":2043,\"name\":\"Vision
2242
+ Ward\",\"gold\":{\"base\":100,\"total\":100,\"sell\":40,\"purchasable\":true},\"group\":\"PinkWards\",\"description\":\"<groupLimit>Can
2243
+ only carry 2 Vision Wards in inventory.</groupLimit><br><br><consumable>Click
2244
+ to Consume:</consumable> Places a visible ward that reveals the surrounding
2245
+ area and invisible units in the area until killed. Limit 1 <font color='#BBFFFF'>Vision
2246
+ Ward</font> on the map per player.<br><br><i>(Revealing a ward in this manner
2247
+ grants a portion of the gold reward when that unit is killed.)</i>\",\"sanitizedDescription\":\"Can
2248
+ only carry 2 Vision Wards in inventory. Click to Consume: Places a visible
2249
+ ward that reveals the surrounding area and invisible units in the area until
2250
+ killed. Limit 1 Vision Ward on the map per player. (Revealing a ward in this
2251
+ manner grants a portion of the gold reward when that unit is killed.)\",\"plaintext\":\"Use
2252
+ to temporarily provide vision and stealth detection in an area\",\"consumed\":true,\"stacks\":2,\"tags\":[\"Consumable\",\"Vision\",\"Stealth\"],\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"2043.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":288,\"y\":144,\"w\":48,\"h\":48},\"stats\":{}},\"3158\":{\"id\":3158,\"name\":\"Ionian
2253
+ Boots of Lucidity\",\"gold\":{\"base\":675,\"total\":1000,\"sell\":700,\"purchasable\":true},\"description\":\"<unique>UNIQUE
2254
+ Passive:</unique> +15% Cooldown Reduction<br><unique>UNIQUE Passive - Enhanced
2255
+ Movement:</unique> +45 Movement Speed<br><br><i>(Unique Passives with the
2256
+ same name don't stack.)</i><br><br><i><font color='#FDD017'>''This item is
2257
+ dedicated in honor of Ionia's victory over Noxus in the Rematch for the Southern
2258
+ Provinces on 10 December, 20 CLE.''</font></i>\",\"sanitizedDescription\":\"UNIQUE
2259
+ Passive: +15% Cooldown Reduction UNIQUE Passive - Enhanced Movement: +45 Movement
2260
+ Speed (Unique Passives with the same name don't stack.) ''This item is dedicated
2261
+ in honor of Ionia's victory over Noxus in the Rematch for the Southern Provinces
2262
+ on 10 December, 20 CLE.''\",\"plaintext\":\"Increases Movement Speed and Cooldown
2263
+ Reduction\",\"depth\":2,\"from\":[\"1001\"],\"into\":[\"3279\",\"3278\",\"3277\",\"3276\",\"3275\"],\"tags\":[\"Movement\",\"CooldownReduction\",\"Boots\"],\"image\":{\"full\":\"3158.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":432,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"FlatMovementSpeedMod\":45.0}},\"3157\":{\"id\":3157,\"name\":\"Zhonya's
2264
+ Hourglass\",\"gold\":{\"base\":500,\"total\":3260,\"sell\":2282,\"purchasable\":true},\"description\":\"<stats>+120
2265
+ Ability Power<br>+50 Armor </stats><br><br><active>UNIQUE Active - Stasis:</active>
2266
+ Champion becomes invulnerable and untargetable for 2.5 seconds, but is unable
2267
+ to move, attack, cast spells, or use items during this time (90 second cooldown).\",\"sanitizedDescription\":\"+120
2268
+ Ability Power +50 Armor UNIQUE Active - Stasis: Champion becomes invulnerable
2269
+ and untargetable for 2.5 seconds, but is unable to move, attack, cast spells,
2270
+ or use items during this time (90 second cooldown).\",\"colloq\":\"zhg;zonyas\",\"plaintext\":\"Activate
2271
+ to become invincible but unable to take actions\",\"depth\":3,\"from\":[\"3191\",\"1058\"],\"tags\":[\"Armor\",\"SpellDamage\",\"Active\"],\"maps\":{\"10\":false,\"8\":false},\"image\":{\"full\":\"3157.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":384,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"FlatArmorMod\":50.0,\"FlatMagicDamageMod\":120.0}},\"1018\":{\"id\":1018,\"name\":\"Cloak
2272
+ of Agility\",\"gold\":{\"base\":730,\"total\":730,\"sell\":511,\"purchasable\":true},\"description\":\"<stats>+15%
2273
+ Critical Strike Chance</stats>\",\"sanitizedDescription\":\"+15% Critical
2274
+ Strike Chance\",\"plaintext\":\"Moderately increases Critical Strike Chance\",\"into\":[\"3046\",\"3031\",\"3104\"],\"tags\":[\"CriticalStrike\"],\"image\":{\"full\":\"1018.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":192,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatCritChanceMod\":0.15}},\"3159\":{\"id\":3159,\"name\":\"Grez's
2275
+ Spectral Lantern\",\"gold\":{\"base\":250,\"total\":1350,\"sell\":945,\"purchasable\":true},\"description\":\"<stats>+15
2276
+ Attack Damage<br>+20 Armor<br>+12% Life Steal</stats><br><br><unique>UNIQUE
2277
+ Passive:</unique> Basic attacks against minions and monsters have a 20% chance
2278
+ to deal 200 bonus magic damage on hit.<br><active>UNIQUE Active:</active>
2279
+ A stealth-detecting mist grants vision in the target area for 5 seconds, revealing
2280
+ enemy champions that enter for 3 seconds (60 second cooldown).\",\"sanitizedDescription\":\"+15
2281
+ Attack Damage +20 Armor +12% Life Steal UNIQUE Passive: Basic attacks against
2282
+ minions and monsters have a 20% chance to deal 200 bonus magic damage on hit.
2283
+ UNIQUE Active: A stealth-detecting mist grants vision in the target area for
2284
+ 5 seconds, revealing enemy champions that enter for 3 seconds (60 second cooldown).\",\"plaintext\":\"Activate
2285
+ to reveal a nearby area of the map\",\"depth\":3,\"from\":[\"1029\",\"1053\"],\"into\":[\"3185\"],\"tags\":[\"Armor\",\"Damage\",\"LifeSteal\",\"Active\",\"OnHit\",\"Stealth\",\"Vision\"],\"maps\":{\"1\":false},\"image\":{\"full\":\"3159.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":0,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatArmorMod\":20.0,\"FlatPhysicalDamageMod\":15.0,\"PercentLifeStealMod\":0.12}},\"3160\":{\"id\":3160,\"name\":\"Feral
2286
+ Flare\",\"gold\":{\"base\":1650,\"total\":1650,\"sell\":2310,\"purchasable\":false},\"group\":\"GoldBase\",\"description\":\"<stats>+15
2287
+ Attack Damage<br>+35% Attack Speed</stats><br><br><unique>UNIQUE Passive -
2288
+ Maim:</unique> Basic attacks deal 100 bonus magic damage (33% against champions)
2289
+ and heal 10 Health on hit. This damage and heal increases with kills, assists
2290
+ and large monster kills.<br><unique>UNIQUE Passive:</unique> Gain 30% increased
2291
+ Gold from monsters.<br><active>UNIQUE Active:</active> Places a <font color='#BBFFFF'>Stealth
2292
+ Ward</font> that reveals the surrounding area for 180 seconds (180 second
2293
+ cooldown).<br><br><groupLimit>Limited to 1 Gold Income item\",\"sanitizedDescription\":\"+15
2294
+ Attack Damage +35% Attack Speed UNIQUE Passive - Maim: Basic attacks deal
2295
+ 100 bonus magic damage (33% against champions) and heal 10 Health on hit.
2296
+ This damage and heal increases with kills, assists and large monster kills.
2297
+ UNIQUE Passive: Gain 30% increased Gold from monsters. UNIQUE Active: Places
2298
+ a Stealth Ward that reveals the surrounding area for 180 seconds (180 second
2299
+ cooldown). Limited to 1 Gold Income item\",\"depth\":4,\"from\":[\"3154\"],\"specialRecipe\":3154,\"inStore\":false,\"tags\":[\"Damage\",\"AttackSpeed\",\"OnHit\"],\"image\":{\"full\":\"3160.png\",\"sprite\":\"item2.png\",\"group\":\"item\",\"x\":48,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatPhysicalDamageMod\":15.0,\"PercentAttackSpeedMod\":0.35}},\"3060\":{\"id\":3060,\"name\":\"Banner
2300
+ of Command\",\"gold\":{\"base\":720,\"total\":2400,\"sell\":1680,\"purchasable\":true},\"description\":\"<stats>+80
2301
+ Ability Power<br>+20% Cooldown Reduction</stats><br><br><aura>UNIQUE Aura
2302
+ - Valor:</aura> Nearby allied minions deal 15% increased damage.<br><active>UNIQUE
2303
+ Active - Promote:</active> Transforms a nearby siege minion into a more powerful
2304
+ unit and grants all gold that the unit earns (180 second cooldown).<br><br><i>(Unique
2305
+ Auras with the same name do not stack.)</i>\",\"sanitizedDescription\":\"+80
2306
+ Ability Power +20% Cooldown Reduction UNIQUE Aura - Valor: Nearby allied minions
2307
+ deal 15% increased damage. UNIQUE Active - Promote: Transforms a nearby siege
2308
+ minion into a more powerful unit and grants all gold that the unit earns (180
2309
+ second cooldown). (Unique Auras with the same name do not stack.)\",\"colloq\":\"flag\",\"plaintext\":\"Promotes
2310
+ a siege minion to a more powerful unit\",\"depth\":3,\"from\":[\"3108\",\"1026\"],\"tags\":[\"SpellDamage\",\"CooldownReduction\",\"Aura\",\"Active\"],\"image\":{\"full\":\"3060.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":288,\"y\":336,\"w\":48,\"h\":48},\"stats\":{\"FlatMagicDamageMod\":80.0}},\"3165\":{\"id\":3165,\"name\":\"Morellonomicon\",\"gold\":{\"base\":630,\"total\":2200,\"sell\":1540,\"purchasable\":true},\"description\":\"<stats>+75
2311
+ Ability Power<br>+12 Mana Regen per 5 seconds<br>+20% Cooldown Reduction</stats><br><br><unique>UNIQUE
2312
+ Passive:</unique> Dealing magic damage to enemy champions below 40% Health
2313
+ inflicts Grievous Wounds for 4 seconds.<br><br><i>(Grievous Wounds reduces
2314
+ incoming healing and regeneration effects by 50%.)</i>\",\"sanitizedDescription\":\"+75
2315
+ Ability Power +12 Mana Regen per 5 seconds +20% Cooldown Reduction UNIQUE
2316
+ Passive: Dealing magic damage to enemy champions below 40% Health inflicts
2317
+ Grievous Wounds for 4 seconds. (Grievous Wounds reduces incoming healing and
2318
+ regeneration effects by 50%.)\",\"colloq\":\"nmst\",\"plaintext\":\"Greatly
2319
+ increases Ability Power and Cooldown Reduction\",\"depth\":3,\"from\":[\"3108\",\"3114\"],\"tags\":[\"SpellDamage\",\"ManaRegen\",\"CooldownReduction\"],\"image\":{\"full\":\"3165.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":48,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatMPRegenMod\":2.4,\"FlatMagicDamageMod\":75.0}},\"3166\":{\"id\":3166,\"name\":\"Bonetooth
2320
+ Necklace\",\"gold\":{\"base\":0,\"total\":0,\"sell\":0,\"purchasable\":true},\"group\":\"RelicBase\",\"description\":\"<unique>UNIQUE
2321
+ Active - Bonetooth Totem:</unique> Places a Stealth Ward that lasts 60 seconds
2322
+ (120 Second cooldown). Active upgrades at 6 Trophies. <br><br><unique>UNIQUE
2323
+ Passive - Mementos of the Hunt:</unique> Rengar collects trophies when killing
2324
+ Champions and gains bonus effects based on how many trophies he has. Kills
2325
+ and assists grant 1 trophy.<br><br><passive>3 Trophies:</passive> Rengar gains
2326
+ 25 Movement Speed whilst out of combat or in brush. <br><passive>6 Trophies:</passive>
2327
+ Increases the range of Rengar's Leap by 125.<br><passive>12 Trophies:</passive>
2328
+ Thrill of the Hunt's duration is increased by 5 seconds.<br><passive>20 Trophies:</passive>
2329
+ Thrill of the Hunt's Movement Speed while stealthed is doubled.\",\"sanitizedDescription\":\"UNIQUE
2330
+ Active - Bonetooth Totem: Places a Stealth Ward that lasts 60 seconds (120
2331
+ Second cooldown). Active upgrades at 6 Trophies. UNIQUE Passive - Mementos
2332
+ of the Hunt: Rengar collects trophies when killing Champions and gains bonus
2333
+ effects based on how many trophies he has. Kills and assists grant 1 trophy.
2334
+ 3 Trophies: Rengar gains 25 Movement Speed whilst out of combat or in brush.
2335
+ 6 Trophies: Increases the range of Rengar's Leap by 125. 12 Trophies: Thrill
2336
+ of the Hunt's duration is increased by 5 seconds. 20 Trophies: Thrill of the
2337
+ Hunt's Movement Speed while stealthed is doubled.\",\"plaintext\":\"Grants
2338
+ Rengar bonus effects on kill or assist\",\"requiredChampion\":\"Rengar\",\"tags\":[\"Movement\",\"Active\",\"Vision\",\"Trinket\"],\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3166.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":96,\"y\":192,\"w\":48,\"h\":48},\"stats\":{}},\"3167\":{\"id\":3167,\"name\":\"Bonetooth
2339
+ Necklace\",\"gold\":{\"base\":0,\"total\":0,\"sell\":0,\"purchasable\":false},\"group\":\"RelicBase\",\"description\":\"<unique>UNIQUE
2340
+ Active - Bonetooth Totem:</unique> Places a Stealth Ward that lasts 60 seconds
2341
+ (120 Second cooldown). Active upgrades at 6 Trophies.<br><br><unique>UNIQUE
2342
+ Passive - Mementos of the Hunt:</unique> Rengar collects trophies when killing
2343
+ Champions and gains bonus effects based on how many trophies he has. Kills
2344
+ and assists grant 1 trophy.<br><br><passive>3 Trophies:</passive> Rengar gains
2345
+ 25 Movement Speed whilst out of combat or in brush. <br><passive>6 Trophies:</passive>
2346
+ Increases the range of Rengar's Leap by 125.<br><passive>12 Trophies:</passive>
2347
+ Thrill of the Hunt's Movement Speed while stealthed is doubled.<br><passive>20
2348
+ Trophies:</passive> Thrill of the Hunt's Movement Speed while stealthed is
2349
+ doubled.\",\"sanitizedDescription\":\"UNIQUE Active - Bonetooth Totem: Places
2350
+ a Stealth Ward that lasts 60 seconds (120 Second cooldown). Active upgrades
2351
+ at 6 Trophies. UNIQUE Passive - Mementos of the Hunt: Rengar collects trophies
2352
+ when killing Champions and gains bonus effects based on how many trophies
2353
+ he has. Kills and assists grant 1 trophy. 3 Trophies: Rengar gains 25 Movement
2354
+ Speed whilst out of combat or in brush. 6 Trophies: Increases the range of
2355
+ Rengar's Leap by 125. 12 Trophies: Thrill of the Hunt's Movement Speed while
2356
+ stealthed is doubled. 20 Trophies: Thrill of the Hunt's Movement Speed while
2357
+ stealthed is doubled.\",\"inStore\":false,\"hideFromAll\":true,\"requiredChampion\":\"Rengar\",\"tags\":[\"Movement\",\"Active\",\"Vision\",\"Trinket\"],\"maps\":{\"10\":false,\"8\":false,\"12\":false},\"image\":{\"full\":\"3167.png\",\"sprite\":\"item1.png\",\"group\":\"item\",\"x\":144,\"y\":192,\"w\":48,\"h\":48},\"stats\":{}},\"3065\":{\"id\":3065,\"name\":\"Spirit
2358
+ Visage\",\"gold\":{\"base\":500,\"total\":2750,\"sell\":1925,\"purchasable\":true},\"description\":\"<stats>+400
2359
+ Health<br>+55 Magic Resist<br>+20 Health Regen per 5 seconds<br>+10% Cooldown
2360
+ Reduction</stats><br><br><unique>UNIQUE Passive:</unique> Increases self-healing,
2361
+ Health Regen, Lifesteal, and Spell Vamp effects by 20%.\",\"sanitizedDescription\":\"+400
2362
+ Health +55 Magic Resist +20 Health Regen per 5 seconds +10% Cooldown Reduction
2363
+ UNIQUE Passive: Increases self-healing, Health Regen, Lifesteal, and Spell
2364
+ Vamp effects by 20%.\",\"colloq\":\"sv\",\"plaintext\":\"Increases Health
2365
+ and healing effects\",\"depth\":3,\"from\":[\"3211\",\"3067\"],\"tags\":[\"Health\",\"SpellBlock\",\"HealthRegen\",\"CooldownReduction\"],\"image\":{\"full\":\"3065.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":336,\"y\":336,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":400.0,\"FlatHPRegenMod\":4.0,\"FlatSpellBlockMod\":55.0}},\"2037\":{\"id\":2037,\"name\":\"Elixir
2366
+ of Fortitude\",\"gold\":{\"base\":350,\"total\":350,\"sell\":140,\"purchasable\":true},\"description\":\"<consumable>Click
2367
+ to Consume:</consumable> Grants +120-235 Health based on level and +15 Attack
2368
+ Damage for 3 minutes.\",\"sanitizedDescription\":\"Click to Consume: Grants
2369
+ +120-235 Health based on level and +15 Attack Damage for 3 minutes.\",\"colloq\":\"red\",\"plaintext\":\"Temporarily
2370
+ increases Attack Damage and Health\",\"consumed\":true,\"stacks\":3,\"consumeOnFull\":true,\"tags\":[\"Health\",\"Damage\",\"Consumable\"],\"maps\":{\"10\":false,\"8\":false},\"image\":{\"full\":\"2037.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":96,\"y\":144,\"w\":48,\"h\":48},\"stats\":{}},\"3067\":{\"id\":3067,\"name\":\"Kindlegem\",\"gold\":{\"base\":450,\"total\":850,\"sell\":595,\"purchasable\":true},\"description\":\"<stats>+200
2371
+ Health </stats><br><br><unique>UNIQUE Passive:</unique> +10% Cooldown Reduction\",\"sanitizedDescription\":\"+200
2372
+ Health UNIQUE Passive: +10% Cooldown Reduction\",\"plaintext\":\"Increases
2373
+ Health and Cooldown Reduction\",\"depth\":2,\"from\":[\"1028\"],\"into\":[\"3065\",\"3187\",\"3050\",\"3069\",\"3207\",\"3190\",\"3401\"],\"tags\":[\"Health\",\"CooldownReduction\"],\"image\":{\"full\":\"3067.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":384,\"y\":336,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":200.0}},\"3068\":{\"id\":3068,\"name\":\"Sunfire
2374
+ Cape\",\"gold\":{\"base\":930,\"total\":2650,\"sell\":1855,\"purchasable\":true},\"description\":\"<stats>+450
2375
+ Health<br>+45 Armor </stats><br><br><unique>UNIQUE Passive:</unique> Deals
2376
+ 25 (+ character level) magic damage per second to nearby enemies.\",\"sanitizedDescription\":\"+450
2377
+ Health +45 Armor UNIQUE Passive: Deals 25 (+ character level) magic damage
2378
+ per second to nearby enemies.\",\"plaintext\":\"Constantly deals damage to
2379
+ nearby enemies\",\"depth\":2,\"from\":[\"1031\",\"1011\"],\"tags\":[\"Health\",\"Armor\"],\"image\":{\"full\":\"3068.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":432,\"y\":336,\"w\":48,\"h\":48},\"stats\":{\"FlatArmorMod\":45.0,\"FlatHPPoolMod\":450.0}},\"2039\":{\"id\":2039,\"name\":\"Elixir
2380
+ of Brilliance\",\"gold\":{\"base\":250,\"total\":250,\"sell\":100,\"purchasable\":true},\"description\":\"<consumable>Click
2381
+ to Consume:</consumable> Grants +25-40 Ability Power based on level and +10%
2382
+ Cooldown Reduction for 3 minutes.\",\"sanitizedDescription\":\"Click to Consume:
2383
+ Grants +25-40 Ability Power based on level and +10% Cooldown Reduction for
2384
+ 3 minutes.\",\"colloq\":\"blue\",\"plaintext\":\"Temporarily increases Ability
2385
+ Power and Cooldown Reduction\",\"consumed\":true,\"stacks\":3,\"consumeOnFull\":true,\"tags\":[\"SpellDamage\",\"CooldownReduction\",\"Consumable\"],\"maps\":{\"10\":false,\"8\":false},\"image\":{\"full\":\"2039.png\",\"sprite\":\"item0.png\",\"group\":\"item\",\"x\":144,\"y\":144,\"w\":48,\"h\":48},\"stats\":{}}},\"groups\":[{\"key\":\"BootsAlacrity\",\"MaxGroupOwnable\":\"1\"},{\"key\":\"BootsCaptain\",\"MaxGroupOwnable\":\"1\"},{\"key\":\"BootsDistortion\",\"MaxGroupOwnable\":\"1\"},{\"key\":\"BootsFuror\",\"MaxGroupOwnable\":\"1\"},{\"key\":\"BootsHomeguard\",\"MaxGroupOwnable\":\"1\"},{\"key\":\"BootsNormal\",\"MaxGroupOwnable\":\"1\"},{\"key\":\"DoransShowdown\",\"MaxGroupOwnable\":\"2\"},{\"key\":\"GoldBase\",\"MaxGroupOwnable\":\"1\"},{\"key\":\"GreenWards\",\"MaxGroupOwnable\":\"3\"},{\"key\":\"HealthPotion\",\"MaxGroupOwnable\":\"5\"},{\"key\":\"ManaPotion\",\"MaxGroupOwnable\":\"5\"},{\"key\":\"PinkWards\",\"MaxGroupOwnable\":\"2\"},{\"key\":\"RelicBase\",\"MaxGroupOwnable\":\"1\"},{\"key\":\"_ItemGroupDefaults.txt\",\"MaxGroupOwnable\":\"-1\"}],\"tree\":[{\"header\":\"TOOLS\",\"tags\":[\"CONSUMABLE\",\"GOLDPER\",\"VISION\"]},{\"header\":\"DEFENSE\",\"tags\":[\"HEALTH\",\"ARMOR\",\"SPELLBLOCK\",\"HEALTHREGEN\",\"TENACITY\"]},{\"header\":\"ATTACK\",\"tags\":[\"DAMAGE\",\"CRITICALSTRIKE\",\"ATTACKSPEED\",\"LIFESTEAL\"]},{\"header\":\"MAGIC\",\"tags\":[\"SPELLDAMAGE\",\"COOLDOWNREDUCTION\",\"SPELLVAMP\",\"MANA\",\"MANAREGEN\"]},{\"header\":\"MOVEMENT\",\"tags\":[\"BOOTS\",\"NONBOOTSMOVEMENT\"]}]}"
2386
+ http_version:
2387
+ recorded_at: Thu, 17 Apr 2014 19:08:40 GMT
2388
+ recorded_with: VCR 2.9.0