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,240 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://prod.api.pvp.net/api/lol/static-data/na/v1.2/mastery?api_key=test_key&locale=en_US&masteryListData=all&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:09 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\":\"mastery\",\"version\":\"4.5.4\",\"data\":{\"4353\":{\"id\":4353,\"name\":\"Intelligence\",\"description\":[\"+2%
42
+ Cooldown Reduction and reduces the cooldown of Activated Items by 4%\",\"+3.5%
43
+ Cooldown Reduction and reduces the cooldown of Activated Items by 7%\",\"+5%
44
+ Cooldown Reduction and reduces the cooldown of Activated Items by 10%\"],\"sanitizedDescription\":[\"+2%
45
+ Cooldown Reduction and reduces the cooldown of Activated Items by 4%\",\"+3.5%
46
+ Cooldown Reduction and reduces the cooldown of Activated Items by 7%\",\"+5%
47
+ Cooldown Reduction and reduces the cooldown of Activated Items by 10%\"],\"ranks\":3,\"prereq\":\"0\",\"image\":{\"full\":\"4353.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":240,\"y\":240,\"w\":48,\"h\":48}},\"4352\":{\"id\":4352,\"name\":\"Bandit\",\"description\":[\"Melee
48
+ - Grants +15 Gold on champion kill or assist<br>Ranged - Grants +3 Gold each
49
+ time an enemy champion is attacked. This cannot trigger on the same champion
50
+ more than once every 5 seconds\"],\"sanitizedDescription\":[\"Melee - Grants
51
+ +15 Gold on champion kill or assist Ranged - Grants +3 Gold each time an enemy
52
+ champion is attacked. This cannot trigger on the same champion more than once
53
+ every 5 seconds\"],\"ranks\":1,\"prereq\":\"4342\",\"image\":{\"full\":\"4352.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":192,\"y\":240,\"w\":48,\"h\":48}},\"4253\":{\"id\":4253,\"name\":\"Runic
54
+ Blessing\",\"description\":[\"Start the game with a 50 Health shield. This
55
+ shield regenerates each time after respawning\"],\"sanitizedDescription\":[\"Start
56
+ the game with a 50 Health shield. This shield regenerates each time after
57
+ respawning\"],\"ranks\":1,\"prereq\":\"0\",\"image\":{\"full\":\"4253.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":336,\"y\":144,\"w\":48,\"h\":48}},\"4113\":{\"id\":4113,\"name\":\"Sorcery\",\"description\":[\"+1.25%
58
+ Cooldown Reduction\",\"+2.5% Cooldown Reduction\",\"+3.75% Cooldown Reduction\",\"+5%
59
+ Cooldown Reduction\"],\"sanitizedDescription\":[\"+1.25% Cooldown Reduction\",\"+2.5%
60
+ Cooldown Reduction\",\"+3.75% Cooldown Reduction\",\"+5% Cooldown Reduction\"],\"ranks\":4,\"prereq\":\"0\",\"image\":{\"full\":\"4113.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":96,\"y\":0,\"w\":48,\"h\":48}},\"4251\":{\"id\":4251,\"name\":\"Second
61
+ Wind\",\"description\":[\"Increases self-healing, Health Regen, Lifesteal,
62
+ and Spellvamp by 10% when below 25% Health\"],\"sanitizedDescription\":[\"Increases
63
+ self-healing, Health Regen, Lifesteal, and Spellvamp by 10% when below 25%
64
+ Health\"],\"ranks\":1,\"prereq\":\"4241\",\"image\":{\"full\":\"4251.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":240,\"y\":144,\"w\":48,\"h\":48}},\"4112\":{\"id\":4112,\"name\":\"Fury\",\"description\":[\"+1.25%
65
+ Attack Speed\",\"+2.5% Attack Speed\",\"+3.75% Attack Speed\",\"+5% Attack
66
+ Speed\"],\"sanitizedDescription\":[\"+1.25% Attack Speed\",\"+2.5% Attack
67
+ Speed\",\"+3.75% Attack Speed\",\"+5% Attack Speed\"],\"ranks\":4,\"prereq\":\"0\",\"image\":{\"full\":\"4112.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":48,\"y\":0,\"w\":48,\"h\":48}},\"4252\":{\"id\":4252,\"name\":\"Legendary
68
+ Guardian\",\"description\":[\"+1 Armor and 0.5 Magic Resist for each nearby
69
+ enemy champion\",\"+2 Armor and 1 Magic Resistance for each nearby enemy champion\",\"+3
70
+ Armor and 1.5 Magic Resistance for each nearby enemy champion\",\"+4 Armor
71
+ and 2 Magic Resist for each nearby enemy champion\"],\"sanitizedDescription\":[\"+1
72
+ Armor and 0.5 Magic Resist for each nearby enemy champion\",\"+2 Armor and
73
+ 1 Magic Resistance for each nearby enemy champion\",\"+3 Armor and 1.5 Magic
74
+ Resistance for each nearby enemy champion\",\"+4 Armor and 2 Magic Resist
75
+ for each nearby enemy champion\"],\"ranks\":4,\"prereq\":\"0\",\"image\":{\"full\":\"4252.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":288,\"y\":144,\"w\":48,\"h\":48}},\"4111\":{\"id\":4111,\"name\":\"Double-Edged
76
+ Sword\",\"description\":[\"Melee - Deal an additional 2% damage and receive
77
+ an additional 1% damage<br>Ranged - Deal an additional 1.5% damage and receive
78
+ an additional 1.5% damage\"],\"sanitizedDescription\":[\"Melee - Deal an additional
79
+ 2% damage and receive an additional 1% damage Ranged - Deal an additional
80
+ 1.5% damage and receive an additional 1.5% damage\"],\"ranks\":1,\"prereq\":\"0\",\"image\":{\"full\":\"4111.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":0,\"y\":0,\"w\":48,\"h\":48}},\"4152\":{\"id\":4152,\"name\":\"Devastating
81
+ Strikes\",\"description\":[\"+2% Armor and Magic Penetration\",\"+4% Armor
82
+ and Magic Penetration\",\"+6% Armor and Magic Penetration\"],\"sanitizedDescription\":[\"+2%
83
+ Armor and Magic Penetration\",\"+4% Armor and Magic Penetration\",\"+6% Armor
84
+ and Magic Penetration\"],\"ranks\":3,\"prereq\":\"0\",\"image\":{\"full\":\"4152.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":336,\"y\":48,\"w\":48,\"h\":48}},\"4212\":{\"id\":4212,\"name\":\"Recovery\",\"description\":[\"+1
85
+ Health per 5 seconds\",\"+2 Health per 5 seconds\"],\"sanitizedDescription\":[\"+1
86
+ Health per 5 seconds\",\"+2 Health per 5 seconds\"],\"ranks\":2,\"prereq\":\"0\",\"image\":{\"full\":\"4212.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":48,\"y\":96,\"w\":48,\"h\":48}},\"4211\":{\"id\":4211,\"name\":\"Block\",\"description\":[\"Reduces
87
+ incoming damage from champion basic attacks by 1\",\"Reduces incoming damage
88
+ from champion basic attacks by 2\"],\"sanitizedDescription\":[\"Reduces incoming
89
+ damage from champion basic attacks by 1\",\"Reduces incoming damage from champion
90
+ basic attacks by 2\"],\"ranks\":2,\"prereq\":\"0\",\"image\":{\"full\":\"4211.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":0,\"y\":96,\"w\":48,\"h\":48}},\"4151\":{\"id\":4151,\"name\":\"Frenzy\",\"description\":[\"Critical
91
+ hits grant +5% Attack Speed for 3 seconds (stacks up to 3 times)\"],\"sanitizedDescription\":[\"Critical
92
+ hits grant +5% Attack Speed for 3 seconds (stacks up to 3 times)\"],\"ranks\":1,\"prereq\":\"0\",\"image\":{\"full\":\"4151.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":288,\"y\":48,\"w\":48,\"h\":48}},\"4154\":{\"id\":4154,\"name\":\"Arcane
93
+ Blade\",\"description\":[\"Basic Attacks also deal bonus magic damage equal
94
+ to 5% of Ability Power\"],\"sanitizedDescription\":[\"Basic Attacks also deal
95
+ bonus magic damage equal to 5% of Ability Power\"],\"ranks\":1,\"prereq\":\"0\",\"image\":{\"full\":\"4154.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":384,\"y\":48,\"w\":48,\"h\":48}},\"4311\":{\"id\":4311,\"name\":\"Phasewalker\",\"description\":[\"Reduces
96
+ the casting time of Recall by 1 second<br><br>Dominion - Reduces the casting
97
+ time of Enhanced Recall by 0.5 seconds\"],\"sanitizedDescription\":[\"Reduces
98
+ the casting time of Recall by 1 second Dominion - Reduces the casting time
99
+ of Enhanced Recall by 0.5 seconds\"],\"ranks\":1,\"prereq\":\"0\",\"image\":{\"full\":\"4311.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":432,\"y\":144,\"w\":48,\"h\":48}},\"4314\":{\"id\":4314,\"name\":\"Scout\",\"description\":[\"Increases
100
+ the cast range of trinket items by 15%\"],\"sanitizedDescription\":[\"Increases
101
+ the cast range of trinket items by 15%\"],\"ranks\":1,\"prereq\":\"0\",\"image\":{\"full\":\"4314.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":96,\"y\":192,\"w\":48,\"h\":48}},\"4362\":{\"id\":4362,\"name\":\"Wanderer\",\"description\":[\"+5%
102
+ Movement Speed out of combat\"],\"sanitizedDescription\":[\"+5% Movement Speed
103
+ out of combat\"],\"ranks\":1,\"prereq\":\"0\",\"image\":{\"full\":\"4362.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":288,\"y\":240,\"w\":48,\"h\":48}},\"4313\":{\"id\":4313,\"name\":\"Meditation\",\"description\":[\"+1
104
+ Mana Regen per 5 seconds\",\"+2 Mana Regen per 5 seconds\",\"+3 Mana Regen
105
+ per 5 seconds\"],\"sanitizedDescription\":[\"+1 Mana Regen per 5 seconds\",\"+2
106
+ Mana Regen per 5 seconds\",\"+3 Mana Regen per 5 seconds\"],\"ranks\":3,\"prereq\":\"0\",\"image\":{\"full\":\"4313.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":48,\"y\":192,\"w\":48,\"h\":48}},\"4312\":{\"id\":4312,\"name\":\"Fleet
107
+ of Foot\",\"description\":[\"+0.5% Movement Speed\",\"+1% Movement Speed\",\"+1.5%
108
+ Movement Speed\"],\"sanitizedDescription\":[\"+0.5% Movement Speed\",\"+1%
109
+ Movement Speed\",\"+1.5% Movement Speed\"],\"ranks\":3,\"prereq\":\"0\",\"image\":{\"full\":\"4312.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":0,\"y\":192,\"w\":48,\"h\":48}},\"4213\":{\"id\":4213,\"name\":\"Enchanted
110
+ Armor\",\"description\":[\"Increases bonus Armor and Magic Resistance by 2.5%\",\"Increases
111
+ bonus Armor and Magic Resistance by 5%\"],\"sanitizedDescription\":[\"Increases
112
+ bonus Armor and Magic Resistance by 2.5%\",\"Increases bonus Armor and Magic
113
+ Resistance by 5%\"],\"ranks\":2,\"prereq\":\"0\",\"image\":{\"full\":\"4213.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":96,\"y\":96,\"w\":48,\"h\":48}},\"4214\":{\"id\":4214,\"name\":\"Tough
114
+ Skin\",\"description\":[\"Reduces damage taken from neutral monsters by 1<br><br>This
115
+ does not affect lane minions\",\"Reduces damage taken from neutral monsters
116
+ by 2<br><br>This does not affect lane minions\"],\"sanitizedDescription\":[\"Reduces
117
+ damage taken from neutral monsters by 1 This does not affect lane minions\",\"Reduces
118
+ damage taken from neutral monsters by 2 This does not affect lane minions\"],\"ranks\":2,\"prereq\":\"0\",\"image\":{\"full\":\"4214.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":144,\"y\":96,\"w\":48,\"h\":48}},\"4114\":{\"id\":4114,\"name\":\"Butcher\",\"description\":[\"Basic
119
+ attacks and single target spells deal an additional 2 damage to minions and
120
+ monsters<br><br>This does not trigger off of area of effect damage or damage
121
+ over time effects\"],\"sanitizedDescription\":[\"Basic attacks and single
122
+ target spells deal an additional 2 damage to minions and monsters This does
123
+ not trigger off of area of effect damage or damage over time effects\"],\"ranks\":1,\"prereq\":\"0\",\"image\":{\"full\":\"4114.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":144,\"y\":0,\"w\":48,\"h\":48}},\"4122\":{\"id\":4122,\"name\":\"Brute
124
+ Force\",\"description\":[\"+4 Attack Damage at level 18 (+0.22 Attack Damage
125
+ per level)\",\"+7 Attack Damage at level 18 (+0.39 Attack Damage per level)\",\"+10
126
+ Attack Damage at level 18 (+0.55 Attack Damage per level)\"],\"sanitizedDescription\":[\"+4
127
+ Attack Damage at level 18 (+0.22 Attack Damage per level)\",\"+7 Attack Damage
128
+ at level 18 (+0.39 Attack Damage per level)\",\"+10 Attack Damage at level
129
+ 18 (+0.55 Attack Damage per level)\"],\"ranks\":3,\"prereq\":\"0\",\"image\":{\"full\":\"4122.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":240,\"y\":0,\"w\":48,\"h\":48}},\"4121\":{\"id\":4121,\"name\":\"Expose
130
+ Weakness\",\"description\":[\"Damaging an enemy with a spell increases allied
131
+ champions' damage to that enemy by 1% for the next 3 seconds\"],\"sanitizedDescription\":[\"Damaging
132
+ an enemy with a spell increases allied champions' damage to that enemy by
133
+ 1% for the next 3 seconds\"],\"ranks\":1,\"prereq\":\"0\",\"image\":{\"full\":\"4121.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":192,\"y\":0,\"w\":48,\"h\":48}},\"4124\":{\"id\":4124,\"name\":\"Feast\",\"description\":[\"Killing
134
+ a unit restores 3 Health and 1 Mana\"],\"sanitizedDescription\":[\"Killing
135
+ a unit restores 3 Health and 1 Mana\"],\"ranks\":1,\"prereq\":\"4114\",\"image\":{\"full\":\"4124.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":336,\"y\":0,\"w\":48,\"h\":48}},\"4262\":{\"id\":4262,\"name\":\"Tenacious\",\"description\":[\"Reduces
136
+ the duration of crowd control effects by 15%\"],\"sanitizedDescription\":[\"Reduces
137
+ the duration of crowd control effects by 15%\"],\"ranks\":1,\"prereq\":\"0\",\"image\":{\"full\":\"4262.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":384,\"y\":144,\"w\":48,\"h\":48}},\"4123\":{\"id\":4123,\"name\":\"Mental
138
+ Force\",\"description\":[\"+6 Ability Power at level 18 (+0.33 Ability Power
139
+ per level)\",\"+11 Ability Power at level 18 (+0.61 Ability Power per level)\",\"+16
140
+ Ability Power at level 18 (+0.89 Ability Power per level)\"],\"sanitizedDescription\":[\"+6
141
+ Ability Power at level 18 (+0.33 Ability Power per level)\",\"+11 Ability
142
+ Power at level 18 (+0.61 Ability Power per level)\",\"+16 Ability Power at
143
+ level 18 (+0.89 Ability Power per level)\"],\"ranks\":3,\"prereq\":\"0\",\"image\":{\"full\":\"4123.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":288,\"y\":0,\"w\":48,\"h\":48}},\"4221\":{\"id\":4221,\"name\":\"Unyielding\",\"description\":[\"Melee
144
+ - Reduces all incoming damage from champions by 2<br>Ranged - Reduces all
145
+ incoming damage from champions by 1\"],\"sanitizedDescription\":[\"Melee -
146
+ Reduces all incoming damage from champions by 2 Ranged - Reduces all incoming
147
+ damage from champions by 1\"],\"ranks\":1,\"prereq\":\"4211\",\"image\":{\"full\":\"4221.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":192,\"y\":96,\"w\":48,\"h\":48}},\"4162\":{\"id\":4162,\"name\":\"Havoc\",\"description\":[\"+3%
148
+ increased damage\"],\"sanitizedDescription\":[\"+3% increased damage\"],\"ranks\":1,\"prereq\":\"0\",\"image\":{\"full\":\"4162.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":432,\"y\":48,\"w\":48,\"h\":48}},\"4222\":{\"id\":4222,\"name\":\"Veteran's
149
+ Scars\",\"description\":[\"+12 Health\",\"+24 Health\",\"+36 Health\"],\"sanitizedDescription\":[\"+12
150
+ Health\",\"+24 Health\",\"+36 Health\"],\"ranks\":3,\"prereq\":\"0\",\"image\":{\"full\":\"4222.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":240,\"y\":96,\"w\":48,\"h\":48}},\"4322\":{\"id\":4322,\"name\":\"Summoner's
151
+ Insight\",\"description\":[\"Reduces the cooldown of Summoner Spells by 4%\",\"Reduces
152
+ the cooldown of Summoner Spells by 7%\",\"Reduces the cooldown of Summoner
153
+ Spells by 10%\"],\"sanitizedDescription\":[\"Reduces the cooldown of Summoner
154
+ Spells by 4%\",\"Reduces the cooldown of Summoner Spells by 7%\",\"Reduces
155
+ the cooldown of Summoner Spells by 10%\"],\"ranks\":3,\"prereq\":\"0\",\"image\":{\"full\":\"4322.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":144,\"y\":192,\"w\":48,\"h\":48}},\"4333\":{\"id\":4333,\"name\":\"Vampirism\",\"description\":[\"+1%
156
+ Lifesteal and Spellvamp\",\"+2% Lifesteal and Spellvamp\",\"+3% Lifesteal
157
+ and Spellvamp\"],\"sanitizedDescription\":[\"+1% Lifesteal and Spellvamp\",\"+2%
158
+ Lifesteal and Spellvamp\",\"+3% Lifesteal and Spellvamp\"],\"ranks\":3,\"prereq\":\"0\",\"image\":{\"full\":\"4333.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":384,\"y\":192,\"w\":48,\"h\":48}},\"4332\":{\"id\":4332,\"name\":\"Runic
159
+ Affinity\",\"description\":[\"Increases the duration of shrine, relic, quest,
160
+ and neutral monster buffs by 20%\"],\"sanitizedDescription\":[\"Increases
161
+ the duration of shrine, relic, quest, and neutral monster buffs by 20%\"],\"ranks\":1,\"prereq\":\"0\",\"image\":{\"full\":\"4332.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":336,\"y\":192,\"w\":48,\"h\":48}},\"4224\":{\"id\":4224,\"name\":\"Bladed
162
+ Armor\",\"description\":[\"Taking Basic Attack Damage from neutral monsters
163
+ cause them to bleed, dealing physical damage equal to 1% of their current
164
+ Health each second<br>This does not work against lane minions\"],\"sanitizedDescription\":[\"Taking
165
+ Basic Attack Damage from neutral monsters cause them to bleed, dealing physical
166
+ damage equal to 1% of their current Health each second This does not work
167
+ against lane minions\"],\"ranks\":1,\"prereq\":\"4214\",\"image\":{\"full\":\"4224.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":288,\"y\":96,\"w\":48,\"h\":48}},\"4331\":{\"id\":4331,\"name\":\"Greed\",\"description\":[\"+0.5
168
+ Gold every 10 seconds\",\"+1 Gold every 10 seconds\",\"+1.5 Gold every 10
169
+ seconds\"],\"sanitizedDescription\":[\"+0.5 Gold every 10 seconds\",\"+1 Gold
170
+ every 10 seconds\",\"+1.5 Gold every 10 seconds\"],\"ranks\":3,\"prereq\":\"0\",\"image\":{\"full\":\"4331.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":288,\"y\":192,\"w\":48,\"h\":48}},\"4134\":{\"id\":4134,\"name\":\"Executioner\",\"description\":[\"Increases
171
+ damage dealt to champions below 20% Health by 5%\",\"Increases damage dealt
172
+ to champions below 35% Health by 5%\",\"Increases damage dealt to champions
173
+ below 50% Health by 5%\"],\"sanitizedDescription\":[\"Increases damage dealt
174
+ to champions below 20% Health by 5%\",\"Increases damage dealt to champions
175
+ below 35% Health by 5%\",\"Increases damage dealt to champions below 50% Health
176
+ by 5%\"],\"ranks\":3,\"prereq\":\"0\",\"image\":{\"full\":\"4134.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":48,\"y\":48,\"w\":48,\"h\":48}},\"4132\":{\"id\":4132,\"name\":\"Martial
177
+ Mastery\",\"description\":[\"+4 Attack Damage\"],\"sanitizedDescription\":[\"+4
178
+ Attack Damage\"],\"ranks\":1,\"prereq\":\"4122\",\"image\":{\"full\":\"4132.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":432,\"y\":0,\"w\":48,\"h\":48}},\"4133\":{\"id\":4133,\"name\":\"Arcane
179
+ Mastery\",\"description\":[\"+6 Ability Power\"],\"sanitizedDescription\":[\"+6
180
+ Ability Power\"],\"ranks\":1,\"prereq\":\"4123\",\"image\":{\"full\":\"4133.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":0,\"y\":48,\"w\":48,\"h\":48}},\"4234\":{\"id\":4234,\"name\":\"Resistance\",\"description\":[\"+2
181
+ Magic Resist\",\"+3.5 Magic Resistance\",\"+5 Magic Resistance\"],\"sanitizedDescription\":[\"+2
182
+ Magic Resist\",\"+3.5 Magic Resistance\",\"+5 Magic Resistance\"],\"ranks\":3,\"prereq\":\"0\",\"image\":{\"full\":\"4234.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":0,\"y\":144,\"w\":48,\"h\":48}},\"4131\":{\"id\":4131,\"name\":\"Spell
183
+ Weaving\",\"description\":[\"Damaging an enemy champion with a Basic Attack
184
+ increases Spell Damage by 1%, stacking up to 3 times (max 3% damage increase)\"],\"sanitizedDescription\":[\"Damaging
185
+ an enemy champion with a Basic Attack increases Spell Damage by 1%, stacking
186
+ up to 3 times (max 3% damage increase)\"],\"ranks\":1,\"prereq\":\"0\",\"image\":{\"full\":\"4131.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":384,\"y\":0,\"w\":48,\"h\":48}},\"4233\":{\"id\":4233,\"name\":\"Hardiness\",\"description\":[\"+2
187
+ Armor\",\"+3.5 Armor\",\"+5 Armor\"],\"sanitizedDescription\":[\"+2 Armor\",\"+3.5
188
+ Armor\",\"+5 Armor\"],\"ranks\":3,\"prereq\":\"0\",\"image\":{\"full\":\"4233.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":432,\"y\":96,\"w\":48,\"h\":48}},\"4232\":{\"id\":4232,\"name\":\"Juggernaut\",\"description\":[\"+3%
189
+ Maximum Health\"],\"sanitizedDescription\":[\"+3% Maximum Health\"],\"ranks\":1,\"prereq\":\"4222\",\"image\":{\"full\":\"4232.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":384,\"y\":96,\"w\":48,\"h\":48}},\"4323\":{\"id\":4323,\"name\":\"Strength
190
+ of Spirit\",\"description\":[\"+1 Health Regen per 5 seconds for every 300
191
+ maximum Mana\"],\"sanitizedDescription\":[\"+1 Health Regen per 5 seconds
192
+ for every 300 maximum Mana\"],\"ranks\":1,\"prereq\":\"4313\",\"image\":{\"full\":\"4323.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":192,\"y\":192,\"w\":48,\"h\":48}},\"4231\":{\"id\":4231,\"name\":\"Oppression\",\"description\":[\"Reduces
193
+ damage taken by 3% from enemies that have impaired movement (slows, snares,
194
+ taunts, stuns, etc.)\"],\"sanitizedDescription\":[\"Reduces damage taken by
195
+ 3% from enemies that have impaired movement (slows, snares, taunts, stuns,
196
+ etc.)\"],\"ranks\":1,\"prereq\":\"0\",\"image\":{\"full\":\"4231.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":336,\"y\":96,\"w\":48,\"h\":48}},\"4324\":{\"id\":4324,\"name\":\"Alchemist\",\"description\":[\"Increases
197
+ the duration of potions and elixirs by 10%\"],\"sanitizedDescription\":[\"Increases
198
+ the duration of potions and elixirs by 10%\"],\"ranks\":1,\"prereq\":\"0\",\"image\":{\"full\":\"4324.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":240,\"y\":192,\"w\":48,\"h\":48}},\"4342\":{\"id\":4342,\"name\":\"Wealth\",\"description\":[\"+40
199
+ Starting Gold\"],\"sanitizedDescription\":[\"+40 Starting Gold\"],\"ranks\":1,\"prereq\":\"0\",\"image\":{\"full\":\"4342.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":48,\"y\":240,\"w\":48,\"h\":48}},\"4341\":{\"id\":4341,\"name\":\"Scavenger\",\"description\":[\"+1
200
+ Gold each time an ally kills a nearby lane minion\"],\"sanitizedDescription\":[\"+1
201
+ Gold each time an ally kills a nearby lane minion\"],\"ranks\":1,\"prereq\":\"4331\",\"image\":{\"full\":\"4341.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":0,\"y\":240,\"w\":48,\"h\":48}},\"4344\":{\"id\":4344,\"name\":\"Inspiration\",\"description\":[\"+5
202
+ Experience every 10 seconds while near a higher level allied champion\",\"+10
203
+ Experience every 10 seconds while near a higher level allied champion\"],\"sanitizedDescription\":[\"+5
204
+ Experience every 10 seconds while near a higher level allied champion\",\"+10
205
+ Experience every 10 seconds while near a higher level allied champion\"],\"ranks\":2,\"prereq\":\"0\",\"image\":{\"full\":\"4344.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":144,\"y\":240,\"w\":48,\"h\":48}},\"4343\":{\"id\":4343,\"name\":\"Expanded
206
+ Mind\",\"description\":[\"+2% increased maximum Mana\",\"+3.5% increased maximum
207
+ Mana\",\"+5% increased maximum Mana\"],\"sanitizedDescription\":[\"+2% increased
208
+ maximum Mana\",\"+3.5% increased maximum Mana\",\"+5% increased maximum Mana\"],\"ranks\":3,\"prereq\":\"0\",\"image\":{\"full\":\"4343.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":96,\"y\":240,\"w\":48,\"h\":48}},\"4143\":{\"id\":4143,\"name\":\"Archmage\",\"description\":[\"Increases
209
+ Ability Power by 2%\",\"Increases Ability Power by 3.5%\",\"Increases Ability
210
+ Power by 5%\"],\"sanitizedDescription\":[\"Increases Ability Power by 2%\",\"Increases
211
+ Ability Power by 3.5%\",\"Increases Ability Power by 5%\"],\"ranks\":3,\"prereq\":\"0\",\"image\":{\"full\":\"4143.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":192,\"y\":48,\"w\":48,\"h\":48}},\"4144\":{\"id\":4144,\"name\":\"Dangerous
212
+ Game\",\"description\":[\"Champion kills and assists restore 5% missing Health
213
+ and Mana\"],\"sanitizedDescription\":[\"Champion kills and assists restore
214
+ 5% missing Health and Mana\"],\"ranks\":1,\"prereq\":\"4134\",\"image\":{\"full\":\"4144.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":240,\"y\":48,\"w\":48,\"h\":48}},\"4241\":{\"id\":4241,\"name\":\"Perseverance
215
+ \",\"description\":[\"Regenerates 0.35% of missing Health every 5 seconds\",\"Regenerates
216
+ 0.675% of missing Health every 5 seconds\",\"Regenerates 1% of missing Health
217
+ every 5 seconds\"],\"sanitizedDescription\":[\"Regenerates 0.35% of missing
218
+ Health every 5 seconds\",\"Regenerates 0.675% of missing Health every 5 seconds\",\"Regenerates
219
+ 1% of missing Health every 5 seconds\"],\"ranks\":3,\"prereq\":\"0\",\"image\":{\"full\":\"4241.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":48,\"y\":144,\"w\":48,\"h\":48}},\"4334\":{\"id\":4334,\"name\":\"Culinary
220
+ Master\",\"description\":[\"Health potions are upgraded into Biscuits that
221
+ restore an additional 20 Health and 10 Mana instantly upon consumption\"],\"sanitizedDescription\":[\"Health
222
+ potions are upgraded into Biscuits that restore an additional 20 Health and
223
+ 10 Mana instantly upon consumption\"],\"ranks\":1,\"prereq\":\"4324\",\"image\":{\"full\":\"4334.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":432,\"y\":192,\"w\":48,\"h\":48}},\"4243\":{\"id\":4243,\"name\":\"Reinforced
224
+ Armor\",\"description\":[\"Reduces damage taken from critical strikes by 10%\"],\"sanitizedDescription\":[\"Reduces
225
+ damage taken from critical strikes by 10%\"],\"ranks\":1,\"prereq\":\"4233\",\"image\":{\"full\":\"4243.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":144,\"y\":144,\"w\":48,\"h\":48}},\"4242\":{\"id\":4242,\"name\":\"Swiftness\",\"description\":[\"Reduces
226
+ the effectiveness of slows by 10%\"],\"sanitizedDescription\":[\"Reduces the
227
+ effectiveness of slows by 10%\"],\"ranks\":1,\"prereq\":\"0\",\"image\":{\"full\":\"4242.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":96,\"y\":144,\"w\":48,\"h\":48}},\"4141\":{\"id\":4141,\"name\":\"Blade
228
+ Weaving\",\"description\":[\"Damaging an enemy champion with a spell increases
229
+ Basic Attack Damage by 1%, stacking up to 3 times (max 3% damage increase)\"],\"sanitizedDescription\":[\"Damaging
230
+ an enemy champion with a spell increases Basic Attack Damage by 1%, stacking
231
+ up to 3 times (max 3% damage increase)\"],\"ranks\":1,\"prereq\":\"4131\",\"image\":{\"full\":\"4141.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":96,\"y\":48,\"w\":48,\"h\":48}},\"4142\":{\"id\":4142,\"name\":\"Warlord\",\"description\":[\"Increases
232
+ bonus Attack Damage by 2%\",\"Increases Bonus Attack Damage by 3.5%\",\"Increases
233
+ Bonus Attack Damage by 5%\"],\"sanitizedDescription\":[\"Increases bonus Attack
234
+ Damage by 2%\",\"Increases Bonus Attack Damage by 3.5%\",\"Increases Bonus
235
+ Attack Damage by 5%\"],\"ranks\":3,\"prereq\":\"0\",\"image\":{\"full\":\"4142.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":144,\"y\":48,\"w\":48,\"h\":48}},\"4244\":{\"id\":4244,\"name\":\"Evasive\",\"description\":[\"Reduces
236
+ damage taken by 4% from Area of Effect magic damage\"],\"sanitizedDescription\":[\"Reduces
237
+ damage taken by 4% from Area of Effect magic damage\"],\"ranks\":1,\"prereq\":\"4234\",\"image\":{\"full\":\"4244.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":192,\"y\":144,\"w\":48,\"h\":48}}},\"tree\":{\"Defense\":[{\"masteryTreeItems\":[{\"prereq\":\"0\",\"masteryId\":4211},{\"prereq\":\"0\",\"masteryId\":4212},{\"prereq\":\"0\",\"masteryId\":4213},{\"prereq\":\"0\",\"masteryId\":4214}]},{\"masteryTreeItems\":[{\"prereq\":\"4211\",\"masteryId\":4221},{\"prereq\":\"0\",\"masteryId\":4222},{\"prereq\":\"4214\",\"masteryId\":4224}]},{\"masteryTreeItems\":[{\"prereq\":\"0\",\"masteryId\":4231},{\"prereq\":\"4222\",\"masteryId\":4232},{\"prereq\":\"0\",\"masteryId\":4233},{\"prereq\":\"0\",\"masteryId\":4234}]},{\"masteryTreeItems\":[{\"prereq\":\"0\",\"masteryId\":4241},{\"prereq\":\"0\",\"masteryId\":4242},{\"prereq\":\"4233\",\"masteryId\":4243},{\"prereq\":\"4234\",\"masteryId\":4244}]},{\"masteryTreeItems\":[{\"prereq\":\"4241\",\"masteryId\":4251},{\"prereq\":\"0\",\"masteryId\":4252},{\"prereq\":\"0\",\"masteryId\":4253}]},{\"masteryTreeItems\":[{\"prereq\":\"0\",\"masteryId\":4262}]}],\"Offense\":[{\"masteryTreeItems\":[{\"prereq\":\"0\",\"masteryId\":4111},{\"prereq\":\"0\",\"masteryId\":4112},{\"prereq\":\"0\",\"masteryId\":4113},{\"prereq\":\"0\",\"masteryId\":4114}]},{\"masteryTreeItems\":[{\"prereq\":\"0\",\"masteryId\":4121},{\"prereq\":\"0\",\"masteryId\":4122},{\"prereq\":\"0\",\"masteryId\":4123},{\"prereq\":\"4114\",\"masteryId\":4124}]},{\"masteryTreeItems\":[{\"prereq\":\"0\",\"masteryId\":4131},{\"prereq\":\"4122\",\"masteryId\":4132},{\"prereq\":\"4123\",\"masteryId\":4133},{\"prereq\":\"0\",\"masteryId\":4134}]},{\"masteryTreeItems\":[{\"prereq\":\"4131\",\"masteryId\":4141},{\"prereq\":\"0\",\"masteryId\":4142},{\"prereq\":\"0\",\"masteryId\":4143},{\"prereq\":\"4134\",\"masteryId\":4144}]},{\"masteryTreeItems\":[{\"prereq\":\"0\",\"masteryId\":4151},{\"prereq\":\"0\",\"masteryId\":4152},{\"prereq\":\"0\",\"masteryId\":4154}]},{\"masteryTreeItems\":[{\"prereq\":\"0\",\"masteryId\":4162}]}],\"Utility\":[{\"masteryTreeItems\":[{\"prereq\":\"0\",\"masteryId\":4311},{\"prereq\":\"0\",\"masteryId\":4312},{\"prereq\":\"0\",\"masteryId\":4313},{\"prereq\":\"0\",\"masteryId\":4314}]},{\"masteryTreeItems\":[{\"prereq\":\"0\",\"masteryId\":4322},{\"prereq\":\"4313\",\"masteryId\":4323},{\"prereq\":\"0\",\"masteryId\":4324}]},{\"masteryTreeItems\":[{\"prereq\":\"0\",\"masteryId\":4331},{\"prereq\":\"0\",\"masteryId\":4332},{\"prereq\":\"0\",\"masteryId\":4333},{\"prereq\":\"4324\",\"masteryId\":4334}]},{\"masteryTreeItems\":[{\"prereq\":\"4331\",\"masteryId\":4341},{\"prereq\":\"0\",\"masteryId\":4342},{\"prereq\":\"0\",\"masteryId\":4343},{\"prereq\":\"0\",\"masteryId\":4344}]},{\"masteryTreeItems\":[{\"prereq\":\"4342\",\"masteryId\":4352},{\"prereq\":\"0\",\"masteryId\":4353}]},{\"masteryTreeItems\":[{\"prereq\":\"0\",\"masteryId\":4362}]}]}}"
238
+ http_version:
239
+ recorded_at: Thu, 17 Apr 2014 19:08:43 GMT
240
+ recorded_with: VCR 2.9.0
@@ -0,0 +1,240 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://prod.api.pvp.net/api/lol/static-data/na/v1.2/mastery?api_key=test_key&locale=en_US&masteryListData=all&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:09 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\":\"mastery\",\"version\":\"4.5.4\",\"data\":{\"4353\":{\"id\":4353,\"name\":\"Intelligence\",\"description\":[\"+2%
42
+ Cooldown Reduction and reduces the cooldown of Activated Items by 4%\",\"+3.5%
43
+ Cooldown Reduction and reduces the cooldown of Activated Items by 7%\",\"+5%
44
+ Cooldown Reduction and reduces the cooldown of Activated Items by 10%\"],\"sanitizedDescription\":[\"+2%
45
+ Cooldown Reduction and reduces the cooldown of Activated Items by 4%\",\"+3.5%
46
+ Cooldown Reduction and reduces the cooldown of Activated Items by 7%\",\"+5%
47
+ Cooldown Reduction and reduces the cooldown of Activated Items by 10%\"],\"ranks\":3,\"prereq\":\"0\",\"image\":{\"full\":\"4353.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":240,\"y\":240,\"w\":48,\"h\":48}},\"4352\":{\"id\":4352,\"name\":\"Bandit\",\"description\":[\"Melee
48
+ - Grants +15 Gold on champion kill or assist<br>Ranged - Grants +3 Gold each
49
+ time an enemy champion is attacked. This cannot trigger on the same champion
50
+ more than once every 5 seconds\"],\"sanitizedDescription\":[\"Melee - Grants
51
+ +15 Gold on champion kill or assist Ranged - Grants +3 Gold each time an enemy
52
+ champion is attacked. This cannot trigger on the same champion more than once
53
+ every 5 seconds\"],\"ranks\":1,\"prereq\":\"4342\",\"image\":{\"full\":\"4352.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":192,\"y\":240,\"w\":48,\"h\":48}},\"4253\":{\"id\":4253,\"name\":\"Runic
54
+ Blessing\",\"description\":[\"Start the game with a 50 Health shield. This
55
+ shield regenerates each time after respawning\"],\"sanitizedDescription\":[\"Start
56
+ the game with a 50 Health shield. This shield regenerates each time after
57
+ respawning\"],\"ranks\":1,\"prereq\":\"0\",\"image\":{\"full\":\"4253.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":336,\"y\":144,\"w\":48,\"h\":48}},\"4113\":{\"id\":4113,\"name\":\"Sorcery\",\"description\":[\"+1.25%
58
+ Cooldown Reduction\",\"+2.5% Cooldown Reduction\",\"+3.75% Cooldown Reduction\",\"+5%
59
+ Cooldown Reduction\"],\"sanitizedDescription\":[\"+1.25% Cooldown Reduction\",\"+2.5%
60
+ Cooldown Reduction\",\"+3.75% Cooldown Reduction\",\"+5% Cooldown Reduction\"],\"ranks\":4,\"prereq\":\"0\",\"image\":{\"full\":\"4113.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":96,\"y\":0,\"w\":48,\"h\":48}},\"4251\":{\"id\":4251,\"name\":\"Second
61
+ Wind\",\"description\":[\"Increases self-healing, Health Regen, Lifesteal,
62
+ and Spellvamp by 10% when below 25% Health\"],\"sanitizedDescription\":[\"Increases
63
+ self-healing, Health Regen, Lifesteal, and Spellvamp by 10% when below 25%
64
+ Health\"],\"ranks\":1,\"prereq\":\"4241\",\"image\":{\"full\":\"4251.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":240,\"y\":144,\"w\":48,\"h\":48}},\"4112\":{\"id\":4112,\"name\":\"Fury\",\"description\":[\"+1.25%
65
+ Attack Speed\",\"+2.5% Attack Speed\",\"+3.75% Attack Speed\",\"+5% Attack
66
+ Speed\"],\"sanitizedDescription\":[\"+1.25% Attack Speed\",\"+2.5% Attack
67
+ Speed\",\"+3.75% Attack Speed\",\"+5% Attack Speed\"],\"ranks\":4,\"prereq\":\"0\",\"image\":{\"full\":\"4112.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":48,\"y\":0,\"w\":48,\"h\":48}},\"4252\":{\"id\":4252,\"name\":\"Legendary
68
+ Guardian\",\"description\":[\"+1 Armor and 0.5 Magic Resist for each nearby
69
+ enemy champion\",\"+2 Armor and 1 Magic Resistance for each nearby enemy champion\",\"+3
70
+ Armor and 1.5 Magic Resistance for each nearby enemy champion\",\"+4 Armor
71
+ and 2 Magic Resist for each nearby enemy champion\"],\"sanitizedDescription\":[\"+1
72
+ Armor and 0.5 Magic Resist for each nearby enemy champion\",\"+2 Armor and
73
+ 1 Magic Resistance for each nearby enemy champion\",\"+3 Armor and 1.5 Magic
74
+ Resistance for each nearby enemy champion\",\"+4 Armor and 2 Magic Resist
75
+ for each nearby enemy champion\"],\"ranks\":4,\"prereq\":\"0\",\"image\":{\"full\":\"4252.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":288,\"y\":144,\"w\":48,\"h\":48}},\"4111\":{\"id\":4111,\"name\":\"Double-Edged
76
+ Sword\",\"description\":[\"Melee - Deal an additional 2% damage and receive
77
+ an additional 1% damage<br>Ranged - Deal an additional 1.5% damage and receive
78
+ an additional 1.5% damage\"],\"sanitizedDescription\":[\"Melee - Deal an additional
79
+ 2% damage and receive an additional 1% damage Ranged - Deal an additional
80
+ 1.5% damage and receive an additional 1.5% damage\"],\"ranks\":1,\"prereq\":\"0\",\"image\":{\"full\":\"4111.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":0,\"y\":0,\"w\":48,\"h\":48}},\"4152\":{\"id\":4152,\"name\":\"Devastating
81
+ Strikes\",\"description\":[\"+2% Armor and Magic Penetration\",\"+4% Armor
82
+ and Magic Penetration\",\"+6% Armor and Magic Penetration\"],\"sanitizedDescription\":[\"+2%
83
+ Armor and Magic Penetration\",\"+4% Armor and Magic Penetration\",\"+6% Armor
84
+ and Magic Penetration\"],\"ranks\":3,\"prereq\":\"0\",\"image\":{\"full\":\"4152.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":336,\"y\":48,\"w\":48,\"h\":48}},\"4212\":{\"id\":4212,\"name\":\"Recovery\",\"description\":[\"+1
85
+ Health per 5 seconds\",\"+2 Health per 5 seconds\"],\"sanitizedDescription\":[\"+1
86
+ Health per 5 seconds\",\"+2 Health per 5 seconds\"],\"ranks\":2,\"prereq\":\"0\",\"image\":{\"full\":\"4212.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":48,\"y\":96,\"w\":48,\"h\":48}},\"4211\":{\"id\":4211,\"name\":\"Block\",\"description\":[\"Reduces
87
+ incoming damage from champion basic attacks by 1\",\"Reduces incoming damage
88
+ from champion basic attacks by 2\"],\"sanitizedDescription\":[\"Reduces incoming
89
+ damage from champion basic attacks by 1\",\"Reduces incoming damage from champion
90
+ basic attacks by 2\"],\"ranks\":2,\"prereq\":\"0\",\"image\":{\"full\":\"4211.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":0,\"y\":96,\"w\":48,\"h\":48}},\"4151\":{\"id\":4151,\"name\":\"Frenzy\",\"description\":[\"Critical
91
+ hits grant +5% Attack Speed for 3 seconds (stacks up to 3 times)\"],\"sanitizedDescription\":[\"Critical
92
+ hits grant +5% Attack Speed for 3 seconds (stacks up to 3 times)\"],\"ranks\":1,\"prereq\":\"0\",\"image\":{\"full\":\"4151.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":288,\"y\":48,\"w\":48,\"h\":48}},\"4154\":{\"id\":4154,\"name\":\"Arcane
93
+ Blade\",\"description\":[\"Basic Attacks also deal bonus magic damage equal
94
+ to 5% of Ability Power\"],\"sanitizedDescription\":[\"Basic Attacks also deal
95
+ bonus magic damage equal to 5% of Ability Power\"],\"ranks\":1,\"prereq\":\"0\",\"image\":{\"full\":\"4154.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":384,\"y\":48,\"w\":48,\"h\":48}},\"4311\":{\"id\":4311,\"name\":\"Phasewalker\",\"description\":[\"Reduces
96
+ the casting time of Recall by 1 second<br><br>Dominion - Reduces the casting
97
+ time of Enhanced Recall by 0.5 seconds\"],\"sanitizedDescription\":[\"Reduces
98
+ the casting time of Recall by 1 second Dominion - Reduces the casting time
99
+ of Enhanced Recall by 0.5 seconds\"],\"ranks\":1,\"prereq\":\"0\",\"image\":{\"full\":\"4311.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":432,\"y\":144,\"w\":48,\"h\":48}},\"4314\":{\"id\":4314,\"name\":\"Scout\",\"description\":[\"Increases
100
+ the cast range of trinket items by 15%\"],\"sanitizedDescription\":[\"Increases
101
+ the cast range of trinket items by 15%\"],\"ranks\":1,\"prereq\":\"0\",\"image\":{\"full\":\"4314.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":96,\"y\":192,\"w\":48,\"h\":48}},\"4362\":{\"id\":4362,\"name\":\"Wanderer\",\"description\":[\"+5%
102
+ Movement Speed out of combat\"],\"sanitizedDescription\":[\"+5% Movement Speed
103
+ out of combat\"],\"ranks\":1,\"prereq\":\"0\",\"image\":{\"full\":\"4362.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":288,\"y\":240,\"w\":48,\"h\":48}},\"4313\":{\"id\":4313,\"name\":\"Meditation\",\"description\":[\"+1
104
+ Mana Regen per 5 seconds\",\"+2 Mana Regen per 5 seconds\",\"+3 Mana Regen
105
+ per 5 seconds\"],\"sanitizedDescription\":[\"+1 Mana Regen per 5 seconds\",\"+2
106
+ Mana Regen per 5 seconds\",\"+3 Mana Regen per 5 seconds\"],\"ranks\":3,\"prereq\":\"0\",\"image\":{\"full\":\"4313.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":48,\"y\":192,\"w\":48,\"h\":48}},\"4312\":{\"id\":4312,\"name\":\"Fleet
107
+ of Foot\",\"description\":[\"+0.5% Movement Speed\",\"+1% Movement Speed\",\"+1.5%
108
+ Movement Speed\"],\"sanitizedDescription\":[\"+0.5% Movement Speed\",\"+1%
109
+ Movement Speed\",\"+1.5% Movement Speed\"],\"ranks\":3,\"prereq\":\"0\",\"image\":{\"full\":\"4312.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":0,\"y\":192,\"w\":48,\"h\":48}},\"4213\":{\"id\":4213,\"name\":\"Enchanted
110
+ Armor\",\"description\":[\"Increases bonus Armor and Magic Resistance by 2.5%\",\"Increases
111
+ bonus Armor and Magic Resistance by 5%\"],\"sanitizedDescription\":[\"Increases
112
+ bonus Armor and Magic Resistance by 2.5%\",\"Increases bonus Armor and Magic
113
+ Resistance by 5%\"],\"ranks\":2,\"prereq\":\"0\",\"image\":{\"full\":\"4213.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":96,\"y\":96,\"w\":48,\"h\":48}},\"4214\":{\"id\":4214,\"name\":\"Tough
114
+ Skin\",\"description\":[\"Reduces damage taken from neutral monsters by 1<br><br>This
115
+ does not affect lane minions\",\"Reduces damage taken from neutral monsters
116
+ by 2<br><br>This does not affect lane minions\"],\"sanitizedDescription\":[\"Reduces
117
+ damage taken from neutral monsters by 1 This does not affect lane minions\",\"Reduces
118
+ damage taken from neutral monsters by 2 This does not affect lane minions\"],\"ranks\":2,\"prereq\":\"0\",\"image\":{\"full\":\"4214.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":144,\"y\":96,\"w\":48,\"h\":48}},\"4114\":{\"id\":4114,\"name\":\"Butcher\",\"description\":[\"Basic
119
+ attacks and single target spells deal an additional 2 damage to minions and
120
+ monsters<br><br>This does not trigger off of area of effect damage or damage
121
+ over time effects\"],\"sanitizedDescription\":[\"Basic attacks and single
122
+ target spells deal an additional 2 damage to minions and monsters This does
123
+ not trigger off of area of effect damage or damage over time effects\"],\"ranks\":1,\"prereq\":\"0\",\"image\":{\"full\":\"4114.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":144,\"y\":0,\"w\":48,\"h\":48}},\"4122\":{\"id\":4122,\"name\":\"Brute
124
+ Force\",\"description\":[\"+4 Attack Damage at level 18 (+0.22 Attack Damage
125
+ per level)\",\"+7 Attack Damage at level 18 (+0.39 Attack Damage per level)\",\"+10
126
+ Attack Damage at level 18 (+0.55 Attack Damage per level)\"],\"sanitizedDescription\":[\"+4
127
+ Attack Damage at level 18 (+0.22 Attack Damage per level)\",\"+7 Attack Damage
128
+ at level 18 (+0.39 Attack Damage per level)\",\"+10 Attack Damage at level
129
+ 18 (+0.55 Attack Damage per level)\"],\"ranks\":3,\"prereq\":\"0\",\"image\":{\"full\":\"4122.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":240,\"y\":0,\"w\":48,\"h\":48}},\"4121\":{\"id\":4121,\"name\":\"Expose
130
+ Weakness\",\"description\":[\"Damaging an enemy with a spell increases allied
131
+ champions' damage to that enemy by 1% for the next 3 seconds\"],\"sanitizedDescription\":[\"Damaging
132
+ an enemy with a spell increases allied champions' damage to that enemy by
133
+ 1% for the next 3 seconds\"],\"ranks\":1,\"prereq\":\"0\",\"image\":{\"full\":\"4121.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":192,\"y\":0,\"w\":48,\"h\":48}},\"4124\":{\"id\":4124,\"name\":\"Feast\",\"description\":[\"Killing
134
+ a unit restores 3 Health and 1 Mana\"],\"sanitizedDescription\":[\"Killing
135
+ a unit restores 3 Health and 1 Mana\"],\"ranks\":1,\"prereq\":\"4114\",\"image\":{\"full\":\"4124.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":336,\"y\":0,\"w\":48,\"h\":48}},\"4262\":{\"id\":4262,\"name\":\"Tenacious\",\"description\":[\"Reduces
136
+ the duration of crowd control effects by 15%\"],\"sanitizedDescription\":[\"Reduces
137
+ the duration of crowd control effects by 15%\"],\"ranks\":1,\"prereq\":\"0\",\"image\":{\"full\":\"4262.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":384,\"y\":144,\"w\":48,\"h\":48}},\"4123\":{\"id\":4123,\"name\":\"Mental
138
+ Force\",\"description\":[\"+6 Ability Power at level 18 (+0.33 Ability Power
139
+ per level)\",\"+11 Ability Power at level 18 (+0.61 Ability Power per level)\",\"+16
140
+ Ability Power at level 18 (+0.89 Ability Power per level)\"],\"sanitizedDescription\":[\"+6
141
+ Ability Power at level 18 (+0.33 Ability Power per level)\",\"+11 Ability
142
+ Power at level 18 (+0.61 Ability Power per level)\",\"+16 Ability Power at
143
+ level 18 (+0.89 Ability Power per level)\"],\"ranks\":3,\"prereq\":\"0\",\"image\":{\"full\":\"4123.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":288,\"y\":0,\"w\":48,\"h\":48}},\"4221\":{\"id\":4221,\"name\":\"Unyielding\",\"description\":[\"Melee
144
+ - Reduces all incoming damage from champions by 2<br>Ranged - Reduces all
145
+ incoming damage from champions by 1\"],\"sanitizedDescription\":[\"Melee -
146
+ Reduces all incoming damage from champions by 2 Ranged - Reduces all incoming
147
+ damage from champions by 1\"],\"ranks\":1,\"prereq\":\"4211\",\"image\":{\"full\":\"4221.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":192,\"y\":96,\"w\":48,\"h\":48}},\"4162\":{\"id\":4162,\"name\":\"Havoc\",\"description\":[\"+3%
148
+ increased damage\"],\"sanitizedDescription\":[\"+3% increased damage\"],\"ranks\":1,\"prereq\":\"0\",\"image\":{\"full\":\"4162.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":432,\"y\":48,\"w\":48,\"h\":48}},\"4222\":{\"id\":4222,\"name\":\"Veteran's
149
+ Scars\",\"description\":[\"+12 Health\",\"+24 Health\",\"+36 Health\"],\"sanitizedDescription\":[\"+12
150
+ Health\",\"+24 Health\",\"+36 Health\"],\"ranks\":3,\"prereq\":\"0\",\"image\":{\"full\":\"4222.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":240,\"y\":96,\"w\":48,\"h\":48}},\"4322\":{\"id\":4322,\"name\":\"Summoner's
151
+ Insight\",\"description\":[\"Reduces the cooldown of Summoner Spells by 4%\",\"Reduces
152
+ the cooldown of Summoner Spells by 7%\",\"Reduces the cooldown of Summoner
153
+ Spells by 10%\"],\"sanitizedDescription\":[\"Reduces the cooldown of Summoner
154
+ Spells by 4%\",\"Reduces the cooldown of Summoner Spells by 7%\",\"Reduces
155
+ the cooldown of Summoner Spells by 10%\"],\"ranks\":3,\"prereq\":\"0\",\"image\":{\"full\":\"4322.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":144,\"y\":192,\"w\":48,\"h\":48}},\"4333\":{\"id\":4333,\"name\":\"Vampirism\",\"description\":[\"+1%
156
+ Lifesteal and Spellvamp\",\"+2% Lifesteal and Spellvamp\",\"+3% Lifesteal
157
+ and Spellvamp\"],\"sanitizedDescription\":[\"+1% Lifesteal and Spellvamp\",\"+2%
158
+ Lifesteal and Spellvamp\",\"+3% Lifesteal and Spellvamp\"],\"ranks\":3,\"prereq\":\"0\",\"image\":{\"full\":\"4333.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":384,\"y\":192,\"w\":48,\"h\":48}},\"4332\":{\"id\":4332,\"name\":\"Runic
159
+ Affinity\",\"description\":[\"Increases the duration of shrine, relic, quest,
160
+ and neutral monster buffs by 20%\"],\"sanitizedDescription\":[\"Increases
161
+ the duration of shrine, relic, quest, and neutral monster buffs by 20%\"],\"ranks\":1,\"prereq\":\"0\",\"image\":{\"full\":\"4332.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":336,\"y\":192,\"w\":48,\"h\":48}},\"4224\":{\"id\":4224,\"name\":\"Bladed
162
+ Armor\",\"description\":[\"Taking Basic Attack Damage from neutral monsters
163
+ cause them to bleed, dealing physical damage equal to 1% of their current
164
+ Health each second<br>This does not work against lane minions\"],\"sanitizedDescription\":[\"Taking
165
+ Basic Attack Damage from neutral monsters cause them to bleed, dealing physical
166
+ damage equal to 1% of their current Health each second This does not work
167
+ against lane minions\"],\"ranks\":1,\"prereq\":\"4214\",\"image\":{\"full\":\"4224.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":288,\"y\":96,\"w\":48,\"h\":48}},\"4331\":{\"id\":4331,\"name\":\"Greed\",\"description\":[\"+0.5
168
+ Gold every 10 seconds\",\"+1 Gold every 10 seconds\",\"+1.5 Gold every 10
169
+ seconds\"],\"sanitizedDescription\":[\"+0.5 Gold every 10 seconds\",\"+1 Gold
170
+ every 10 seconds\",\"+1.5 Gold every 10 seconds\"],\"ranks\":3,\"prereq\":\"0\",\"image\":{\"full\":\"4331.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":288,\"y\":192,\"w\":48,\"h\":48}},\"4134\":{\"id\":4134,\"name\":\"Executioner\",\"description\":[\"Increases
171
+ damage dealt to champions below 20% Health by 5%\",\"Increases damage dealt
172
+ to champions below 35% Health by 5%\",\"Increases damage dealt to champions
173
+ below 50% Health by 5%\"],\"sanitizedDescription\":[\"Increases damage dealt
174
+ to champions below 20% Health by 5%\",\"Increases damage dealt to champions
175
+ below 35% Health by 5%\",\"Increases damage dealt to champions below 50% Health
176
+ by 5%\"],\"ranks\":3,\"prereq\":\"0\",\"image\":{\"full\":\"4134.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":48,\"y\":48,\"w\":48,\"h\":48}},\"4132\":{\"id\":4132,\"name\":\"Martial
177
+ Mastery\",\"description\":[\"+4 Attack Damage\"],\"sanitizedDescription\":[\"+4
178
+ Attack Damage\"],\"ranks\":1,\"prereq\":\"4122\",\"image\":{\"full\":\"4132.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":432,\"y\":0,\"w\":48,\"h\":48}},\"4133\":{\"id\":4133,\"name\":\"Arcane
179
+ Mastery\",\"description\":[\"+6 Ability Power\"],\"sanitizedDescription\":[\"+6
180
+ Ability Power\"],\"ranks\":1,\"prereq\":\"4123\",\"image\":{\"full\":\"4133.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":0,\"y\":48,\"w\":48,\"h\":48}},\"4234\":{\"id\":4234,\"name\":\"Resistance\",\"description\":[\"+2
181
+ Magic Resist\",\"+3.5 Magic Resistance\",\"+5 Magic Resistance\"],\"sanitizedDescription\":[\"+2
182
+ Magic Resist\",\"+3.5 Magic Resistance\",\"+5 Magic Resistance\"],\"ranks\":3,\"prereq\":\"0\",\"image\":{\"full\":\"4234.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":0,\"y\":144,\"w\":48,\"h\":48}},\"4131\":{\"id\":4131,\"name\":\"Spell
183
+ Weaving\",\"description\":[\"Damaging an enemy champion with a Basic Attack
184
+ increases Spell Damage by 1%, stacking up to 3 times (max 3% damage increase)\"],\"sanitizedDescription\":[\"Damaging
185
+ an enemy champion with a Basic Attack increases Spell Damage by 1%, stacking
186
+ up to 3 times (max 3% damage increase)\"],\"ranks\":1,\"prereq\":\"0\",\"image\":{\"full\":\"4131.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":384,\"y\":0,\"w\":48,\"h\":48}},\"4233\":{\"id\":4233,\"name\":\"Hardiness\",\"description\":[\"+2
187
+ Armor\",\"+3.5 Armor\",\"+5 Armor\"],\"sanitizedDescription\":[\"+2 Armor\",\"+3.5
188
+ Armor\",\"+5 Armor\"],\"ranks\":3,\"prereq\":\"0\",\"image\":{\"full\":\"4233.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":432,\"y\":96,\"w\":48,\"h\":48}},\"4232\":{\"id\":4232,\"name\":\"Juggernaut\",\"description\":[\"+3%
189
+ Maximum Health\"],\"sanitizedDescription\":[\"+3% Maximum Health\"],\"ranks\":1,\"prereq\":\"4222\",\"image\":{\"full\":\"4232.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":384,\"y\":96,\"w\":48,\"h\":48}},\"4323\":{\"id\":4323,\"name\":\"Strength
190
+ of Spirit\",\"description\":[\"+1 Health Regen per 5 seconds for every 300
191
+ maximum Mana\"],\"sanitizedDescription\":[\"+1 Health Regen per 5 seconds
192
+ for every 300 maximum Mana\"],\"ranks\":1,\"prereq\":\"4313\",\"image\":{\"full\":\"4323.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":192,\"y\":192,\"w\":48,\"h\":48}},\"4231\":{\"id\":4231,\"name\":\"Oppression\",\"description\":[\"Reduces
193
+ damage taken by 3% from enemies that have impaired movement (slows, snares,
194
+ taunts, stuns, etc.)\"],\"sanitizedDescription\":[\"Reduces damage taken by
195
+ 3% from enemies that have impaired movement (slows, snares, taunts, stuns,
196
+ etc.)\"],\"ranks\":1,\"prereq\":\"0\",\"image\":{\"full\":\"4231.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":336,\"y\":96,\"w\":48,\"h\":48}},\"4324\":{\"id\":4324,\"name\":\"Alchemist\",\"description\":[\"Increases
197
+ the duration of potions and elixirs by 10%\"],\"sanitizedDescription\":[\"Increases
198
+ the duration of potions and elixirs by 10%\"],\"ranks\":1,\"prereq\":\"0\",\"image\":{\"full\":\"4324.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":240,\"y\":192,\"w\":48,\"h\":48}},\"4342\":{\"id\":4342,\"name\":\"Wealth\",\"description\":[\"+40
199
+ Starting Gold\"],\"sanitizedDescription\":[\"+40 Starting Gold\"],\"ranks\":1,\"prereq\":\"0\",\"image\":{\"full\":\"4342.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":48,\"y\":240,\"w\":48,\"h\":48}},\"4341\":{\"id\":4341,\"name\":\"Scavenger\",\"description\":[\"+1
200
+ Gold each time an ally kills a nearby lane minion\"],\"sanitizedDescription\":[\"+1
201
+ Gold each time an ally kills a nearby lane minion\"],\"ranks\":1,\"prereq\":\"4331\",\"image\":{\"full\":\"4341.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":0,\"y\":240,\"w\":48,\"h\":48}},\"4344\":{\"id\":4344,\"name\":\"Inspiration\",\"description\":[\"+5
202
+ Experience every 10 seconds while near a higher level allied champion\",\"+10
203
+ Experience every 10 seconds while near a higher level allied champion\"],\"sanitizedDescription\":[\"+5
204
+ Experience every 10 seconds while near a higher level allied champion\",\"+10
205
+ Experience every 10 seconds while near a higher level allied champion\"],\"ranks\":2,\"prereq\":\"0\",\"image\":{\"full\":\"4344.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":144,\"y\":240,\"w\":48,\"h\":48}},\"4343\":{\"id\":4343,\"name\":\"Expanded
206
+ Mind\",\"description\":[\"+2% increased maximum Mana\",\"+3.5% increased maximum
207
+ Mana\",\"+5% increased maximum Mana\"],\"sanitizedDescription\":[\"+2% increased
208
+ maximum Mana\",\"+3.5% increased maximum Mana\",\"+5% increased maximum Mana\"],\"ranks\":3,\"prereq\":\"0\",\"image\":{\"full\":\"4343.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":96,\"y\":240,\"w\":48,\"h\":48}},\"4143\":{\"id\":4143,\"name\":\"Archmage\",\"description\":[\"Increases
209
+ Ability Power by 2%\",\"Increases Ability Power by 3.5%\",\"Increases Ability
210
+ Power by 5%\"],\"sanitizedDescription\":[\"Increases Ability Power by 2%\",\"Increases
211
+ Ability Power by 3.5%\",\"Increases Ability Power by 5%\"],\"ranks\":3,\"prereq\":\"0\",\"image\":{\"full\":\"4143.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":192,\"y\":48,\"w\":48,\"h\":48}},\"4144\":{\"id\":4144,\"name\":\"Dangerous
212
+ Game\",\"description\":[\"Champion kills and assists restore 5% missing Health
213
+ and Mana\"],\"sanitizedDescription\":[\"Champion kills and assists restore
214
+ 5% missing Health and Mana\"],\"ranks\":1,\"prereq\":\"4134\",\"image\":{\"full\":\"4144.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":240,\"y\":48,\"w\":48,\"h\":48}},\"4241\":{\"id\":4241,\"name\":\"Perseverance
215
+ \",\"description\":[\"Regenerates 0.35% of missing Health every 5 seconds\",\"Regenerates
216
+ 0.675% of missing Health every 5 seconds\",\"Regenerates 1% of missing Health
217
+ every 5 seconds\"],\"sanitizedDescription\":[\"Regenerates 0.35% of missing
218
+ Health every 5 seconds\",\"Regenerates 0.675% of missing Health every 5 seconds\",\"Regenerates
219
+ 1% of missing Health every 5 seconds\"],\"ranks\":3,\"prereq\":\"0\",\"image\":{\"full\":\"4241.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":48,\"y\":144,\"w\":48,\"h\":48}},\"4334\":{\"id\":4334,\"name\":\"Culinary
220
+ Master\",\"description\":[\"Health potions are upgraded into Biscuits that
221
+ restore an additional 20 Health and 10 Mana instantly upon consumption\"],\"sanitizedDescription\":[\"Health
222
+ potions are upgraded into Biscuits that restore an additional 20 Health and
223
+ 10 Mana instantly upon consumption\"],\"ranks\":1,\"prereq\":\"4324\",\"image\":{\"full\":\"4334.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":432,\"y\":192,\"w\":48,\"h\":48}},\"4243\":{\"id\":4243,\"name\":\"Reinforced
224
+ Armor\",\"description\":[\"Reduces damage taken from critical strikes by 10%\"],\"sanitizedDescription\":[\"Reduces
225
+ damage taken from critical strikes by 10%\"],\"ranks\":1,\"prereq\":\"4233\",\"image\":{\"full\":\"4243.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":144,\"y\":144,\"w\":48,\"h\":48}},\"4242\":{\"id\":4242,\"name\":\"Swiftness\",\"description\":[\"Reduces
226
+ the effectiveness of slows by 10%\"],\"sanitizedDescription\":[\"Reduces the
227
+ effectiveness of slows by 10%\"],\"ranks\":1,\"prereq\":\"0\",\"image\":{\"full\":\"4242.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":96,\"y\":144,\"w\":48,\"h\":48}},\"4141\":{\"id\":4141,\"name\":\"Blade
228
+ Weaving\",\"description\":[\"Damaging an enemy champion with a spell increases
229
+ Basic Attack Damage by 1%, stacking up to 3 times (max 3% damage increase)\"],\"sanitizedDescription\":[\"Damaging
230
+ an enemy champion with a spell increases Basic Attack Damage by 1%, stacking
231
+ up to 3 times (max 3% damage increase)\"],\"ranks\":1,\"prereq\":\"4131\",\"image\":{\"full\":\"4141.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":96,\"y\":48,\"w\":48,\"h\":48}},\"4142\":{\"id\":4142,\"name\":\"Warlord\",\"description\":[\"Increases
232
+ bonus Attack Damage by 2%\",\"Increases Bonus Attack Damage by 3.5%\",\"Increases
233
+ Bonus Attack Damage by 5%\"],\"sanitizedDescription\":[\"Increases bonus Attack
234
+ Damage by 2%\",\"Increases Bonus Attack Damage by 3.5%\",\"Increases Bonus
235
+ Attack Damage by 5%\"],\"ranks\":3,\"prereq\":\"0\",\"image\":{\"full\":\"4142.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":144,\"y\":48,\"w\":48,\"h\":48}},\"4244\":{\"id\":4244,\"name\":\"Evasive\",\"description\":[\"Reduces
236
+ damage taken by 4% from Area of Effect magic damage\"],\"sanitizedDescription\":[\"Reduces
237
+ damage taken by 4% from Area of Effect magic damage\"],\"ranks\":1,\"prereq\":\"4234\",\"image\":{\"full\":\"4244.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":192,\"y\":144,\"w\":48,\"h\":48}}},\"tree\":{\"Defense\":[{\"masteryTreeItems\":[{\"prereq\":\"0\",\"masteryId\":4211},{\"prereq\":\"0\",\"masteryId\":4212},{\"prereq\":\"0\",\"masteryId\":4213},{\"prereq\":\"0\",\"masteryId\":4214}]},{\"masteryTreeItems\":[{\"prereq\":\"4211\",\"masteryId\":4221},{\"prereq\":\"0\",\"masteryId\":4222},{\"prereq\":\"4214\",\"masteryId\":4224}]},{\"masteryTreeItems\":[{\"prereq\":\"0\",\"masteryId\":4231},{\"prereq\":\"4222\",\"masteryId\":4232},{\"prereq\":\"0\",\"masteryId\":4233},{\"prereq\":\"0\",\"masteryId\":4234}]},{\"masteryTreeItems\":[{\"prereq\":\"0\",\"masteryId\":4241},{\"prereq\":\"0\",\"masteryId\":4242},{\"prereq\":\"4233\",\"masteryId\":4243},{\"prereq\":\"4234\",\"masteryId\":4244}]},{\"masteryTreeItems\":[{\"prereq\":\"4241\",\"masteryId\":4251},{\"prereq\":\"0\",\"masteryId\":4252},{\"prereq\":\"0\",\"masteryId\":4253}]},{\"masteryTreeItems\":[{\"prereq\":\"0\",\"masteryId\":4262}]}],\"Offense\":[{\"masteryTreeItems\":[{\"prereq\":\"0\",\"masteryId\":4111},{\"prereq\":\"0\",\"masteryId\":4112},{\"prereq\":\"0\",\"masteryId\":4113},{\"prereq\":\"0\",\"masteryId\":4114}]},{\"masteryTreeItems\":[{\"prereq\":\"0\",\"masteryId\":4121},{\"prereq\":\"0\",\"masteryId\":4122},{\"prereq\":\"0\",\"masteryId\":4123},{\"prereq\":\"4114\",\"masteryId\":4124}]},{\"masteryTreeItems\":[{\"prereq\":\"0\",\"masteryId\":4131},{\"prereq\":\"4122\",\"masteryId\":4132},{\"prereq\":\"4123\",\"masteryId\":4133},{\"prereq\":\"0\",\"masteryId\":4134}]},{\"masteryTreeItems\":[{\"prereq\":\"4131\",\"masteryId\":4141},{\"prereq\":\"0\",\"masteryId\":4142},{\"prereq\":\"0\",\"masteryId\":4143},{\"prereq\":\"4134\",\"masteryId\":4144}]},{\"masteryTreeItems\":[{\"prereq\":\"0\",\"masteryId\":4151},{\"prereq\":\"0\",\"masteryId\":4152},{\"prereq\":\"0\",\"masteryId\":4154}]},{\"masteryTreeItems\":[{\"prereq\":\"0\",\"masteryId\":4162}]}],\"Utility\":[{\"masteryTreeItems\":[{\"prereq\":\"0\",\"masteryId\":4311},{\"prereq\":\"0\",\"masteryId\":4312},{\"prereq\":\"0\",\"masteryId\":4313},{\"prereq\":\"0\",\"masteryId\":4314}]},{\"masteryTreeItems\":[{\"prereq\":\"0\",\"masteryId\":4322},{\"prereq\":\"4313\",\"masteryId\":4323},{\"prereq\":\"0\",\"masteryId\":4324}]},{\"masteryTreeItems\":[{\"prereq\":\"0\",\"masteryId\":4331},{\"prereq\":\"0\",\"masteryId\":4332},{\"prereq\":\"0\",\"masteryId\":4333},{\"prereq\":\"4324\",\"masteryId\":4334}]},{\"masteryTreeItems\":[{\"prereq\":\"4331\",\"masteryId\":4341},{\"prereq\":\"0\",\"masteryId\":4342},{\"prereq\":\"0\",\"masteryId\":4343},{\"prereq\":\"0\",\"masteryId\":4344}]},{\"masteryTreeItems\":[{\"prereq\":\"4342\",\"masteryId\":4352},{\"prereq\":\"0\",\"masteryId\":4353}]},{\"masteryTreeItems\":[{\"prereq\":\"0\",\"masteryId\":4362}]}]}}"
238
+ http_version:
239
+ recorded_at: Thu, 17 Apr 2014 19:08:43 GMT
240
+ recorded_with: VCR 2.9.0