ruby-lol 0.9.3 → 0.9.4
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.
- checksums.yaml +4 -4
- data/lib/lol/summoner_request.rb +1 -1
- data/lib/lol/team.rb +5 -1
- data/lib/lol/team_request.rb +1 -1
- data/lib/lol/team_statistic.rb +9 -1
- data/lib/lol/version.rb +1 -1
- data/spec/acceptance_spec.rb +2 -2
- data/spec/api_version_spec.rb +2 -2
- data/spec/fixtures/v1.2/get-summoner-by-name.json +1 -0
- data/spec/fixtures/v1.2/get-summoner-masteries.json +1 -0
- data/spec/fixtures/v1.2/get-summoner-name.json +1 -0
- data/spec/fixtures/v1.2/get-summoner-runes.json +1 -0
- data/spec/fixtures/v1.2/get-summoner.json +1 -0
- data/spec/fixtures/v2.2/get-team.json +678 -0
- data/spec/lol/summoner_request_spec.rb +1 -1
- data/spec/lol/team_spec.rb +1 -1
- data/spec/lol/team_statistic_spec.rb +1 -1
- metadata +14 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 185946617f6f83c48386721358b7ac61e939eefb
|
4
|
+
data.tar.gz: 2a0f58180518ce123932ea8643ee164b83a79575
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3208bf2d80bed837cc70e57af92c69d97d13d1ea5f0ddb31dcbfa6fc9ecbeb38d3ec13c2dae93eaa3779438a239a7b3a42926cbdd8aa445af059446366bf51f6
|
7
|
+
data.tar.gz: 4b6e792255cf2458cd4a83458a251c9ec77f8b3557a39306933aeba7876404e2ea9ea04c0a6da78b204d6a755ca65f59967f88d13a23129cc98c1d10e086bd76
|
data/lib/lol/summoner_request.rb
CHANGED
data/lib/lol/team.rb
CHANGED
@@ -2,6 +2,10 @@ require 'lol/model'
|
|
2
2
|
|
3
3
|
module Lol
|
4
4
|
class Team < Lol::Model
|
5
|
+
# @!attribute [r] full_id
|
6
|
+
# @return [String] Full Team ID
|
7
|
+
attr_reader :full_id
|
8
|
+
|
5
9
|
# @!attribute [r] create_date
|
6
10
|
# @return [Time] Create Date
|
7
11
|
attr_reader :create_date
|
@@ -68,7 +72,7 @@ module Lol
|
|
68
72
|
|
69
73
|
private
|
70
74
|
|
71
|
-
attr_writer :message_of_day, :name, :status, :tag, :timestamp
|
75
|
+
attr_writer :message_of_day, :name, :status, :tag, :timestamp, :full_id
|
72
76
|
|
73
77
|
def create_date= value
|
74
78
|
@create_date = value.is_a?(Numeric) && Time.at(value / 1000) || value
|
data/lib/lol/team_request.rb
CHANGED
data/lib/lol/team_statistic.rb
CHANGED
@@ -2,6 +2,14 @@ require 'lol/model'
|
|
2
2
|
|
3
3
|
module Lol
|
4
4
|
class TeamStatistic < Lol::Model
|
5
|
+
# @!attribute [r] full_id
|
6
|
+
# @return [String] Full Team ID
|
7
|
+
attr_reader :full_id
|
8
|
+
|
9
|
+
# @!attribute [r] average_games_played
|
10
|
+
# @return [Fixnum] Average games played
|
11
|
+
attr_reader :average_games_played
|
12
|
+
|
5
13
|
# @!attribute [r] average_games_played
|
6
14
|
# @return [Fixnum] Average games played
|
7
15
|
attr_reader :average_games_played
|
@@ -36,7 +44,7 @@ module Lol
|
|
36
44
|
|
37
45
|
private
|
38
46
|
|
39
|
-
attr_writer :average_games_played, :losses, :max_rating, :rating, :seed_rating, :team_stat_type, :wins
|
47
|
+
attr_writer :average_games_played, :losses, :max_rating, :rating, :seed_rating, :team_stat_type, :wins, :full_id
|
40
48
|
|
41
49
|
def team_id= value
|
42
50
|
@team_id = value.is_a?(Hash) && value['fullId'] || value
|
data/lib/lol/version.rb
CHANGED
data/spec/acceptance_spec.rb
CHANGED
@@ -16,7 +16,7 @@ describe "Live API testing", :remote => true do
|
|
16
16
|
let(:br) { Lol::Client.new ENV['RIOT_GAMES_API_KEY'], :region => "br"}
|
17
17
|
let(:tr) { Lol::Client.new ENV['RIOT_GAMES_API_KEY'], :region => "tr"}
|
18
18
|
|
19
|
-
describe "champion
|
19
|
+
describe "champion" do
|
20
20
|
context "working realms" do
|
21
21
|
%w(euw na eune).each do |realm|
|
22
22
|
it "works on #{realm}" do
|
@@ -27,7 +27,7 @@ describe "Live API testing", :remote => true do
|
|
27
27
|
end
|
28
28
|
end
|
29
29
|
|
30
|
-
describe "game
|
30
|
+
describe "game" do
|
31
31
|
context "working realms" do
|
32
32
|
%w(euw na eune).each do |realm|
|
33
33
|
it "works on #{realm}" do
|
data/spec/api_version_spec.rb
CHANGED
@@ -17,6 +17,6 @@ describe "API Versions" do
|
|
17
17
|
check_api_version(GameRequest, "v1.2")
|
18
18
|
check_api_version(LeagueRequest, "v2.2")
|
19
19
|
check_api_version(StatsRequest, "v1.2")
|
20
|
-
check_api_version(SummonerRequest, "v1.
|
21
|
-
check_api_version(TeamRequest, "v2.
|
20
|
+
check_api_version(SummonerRequest, "v1.2")
|
21
|
+
check_api_version(TeamRequest, "v2.2")
|
22
22
|
end
|
@@ -0,0 +1 @@
|
|
1
|
+
{"id":30743211,"name":"intinig","profileIconId":599,"summonerLevel":30,"revisionDate":1388318141000}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"summonerId":30743211,"pages":[{"id":34170136,"name":"AD (more atk)","current":false,"talents":[{"id":4212,"name":"Recovery","rank":2},{"id":4211,"name":"Block","rank":2},{"id":4134,"name":"Executioner","rank":3},{"id":4124,"name":"Feast","rank":1},{"id":4114,"name":"Butcher","rank":1},{"id":4151,"name":"Frenzy","rank":1},{"id":4222,"name":"Veteran's Scars","rank":3},{"id":4221,"name":"Unyielding","rank":1},{"id":4152,"name":"Devastating Strikes","rank":3},{"id":4122,"name":"Brute Force","rank":3},{"id":4111,"name":"Double-Edged Sword","rank":1},{"id":4132,"name":"Martial Mastery","rank":1},{"id":4142,"name":"Warlord","rank":3},{"id":4232,"name":"Juggernaut","rank":1},{"id":4162,"name":"Havoc","rank":1},{"id":4112,"name":"Fury","rank":3}]},{"id":34170137,"name":"AD (more def)","current":false,"talents":[{"id":4212,"name":"Recovery","rank":2},{"id":4242,"name":"Swiftness","rank":1},{"id":4211,"name":"Block","rank":2},{"id":4222,"name":"Veteran's Scars","rank":3},{"id":4112,"name":"Fury","rank":4},{"id":4221,"name":"Unyielding","rank":1},{"id":4252,"name":"Legendary Guardian","rank":4},{"id":4262,"name":"Tenacious","rank":1},{"id":4312,"name":"Fleet of Foot","rank":3},{"id":4231,"name":"Oppression","rank":1},{"id":4241,"name":"Perseverance","rank":3},{"id":4232,"name":"Juggernaut","rank":1},{"id":4122,"name":"Brute Force","rank":2},{"id":4233,"name":"Hardiness","rank":2}]},{"id":34170138,"name":"AD (more atk, cdr)","current":false,"talents":[{"id":4212,"name":"Recovery","rank":2},{"id":4211,"name":"Block","rank":2},{"id":4121,"name":"Expose Weakness","rank":1},{"id":4124,"name":"Feast","rank":1},{"id":4114,"name":"Butcher","rank":1},{"id":4221,"name":"Unyielding","rank":1},{"id":4222,"name":"Veteran's Scars","rank":1},{"id":4152,"name":"Devastating Strikes","rank":3},{"id":4122,"name":"Brute Force","rank":3},{"id":4141,"name":"Blade Weaving","rank":1},{"id":4113,"name":"Sorcery","rank":2},{"id":4312,"name":"Fleet of Foot","rank":3},{"id":4111,"name":"Double-Edged Sword","rank":1},{"id":4134,"name":"Executioner","rank":2},{"id":4132,"name":"Martial Mastery","rank":1},{"id":4142,"name":"Warlord","rank":3},{"id":4162,"name":"Havoc","rank":1},{"id":4131,"name":"Spell Weaving","rank":1}]},{"id":34170139,"name":"AD (more def, cdr)","current":false,"talents":[{"id":4212,"name":"Recovery","rank":2},{"id":4242,"name":"Swiftness","rank":1},{"id":4211,"name":"Block","rank":2},{"id":4222,"name":"Veteran's Scars","rank":3},{"id":4113,"name":"Sorcery","rank":4},{"id":4221,"name":"Unyielding","rank":1},{"id":4252,"name":"Legendary Guardian","rank":4},{"id":4262,"name":"Tenacious","rank":1},{"id":4312,"name":"Fleet of Foot","rank":3},{"id":4231,"name":"Oppression","rank":1},{"id":4241,"name":"Perseverance","rank":3},{"id":4122,"name":"Brute Force","rank":2},{"id":4232,"name":"Juggernaut","rank":1},{"id":4233,"name":"Hardiness","rank":2}]},{"id":34170140,"name":"Jungle AD (more atk)","current":false,"talents":[{"id":4212,"name":"Recovery","rank":2},{"id":4211,"name":"Block","rank":2},{"id":4214,"name":"Tough Skin","rank":2},{"id":4124,"name":"Feast","rank":1},{"id":4114,"name":"Butcher","rank":1},{"id":4151,"name":"Frenzy","rank":1},{"id":4222,"name":"Veteran's Scars","rank":2},{"id":4112,"name":"Fury","rank":4},{"id":4221,"name":"Unyielding","rank":1},{"id":4152,"name":"Devastating Strikes","rank":3},{"id":4122,"name":"Brute Force","rank":3},{"id":4141,"name":"Blade Weaving","rank":1},{"id":4132,"name":"Martial Mastery","rank":1},{"id":4134,"name":"Executioner","rank":1},{"id":4142,"name":"Warlord","rank":3},{"id":4162,"name":"Havoc","rank":1},{"id":4131,"name":"Spell Weaving","rank":1}]},{"id":34170141,"name":"Jungle AD (more def)","current":false,"talents":[{"id":4242,"name":"Swiftness","rank":1},{"id":4211,"name":"Block","rank":2},{"id":4214,"name":"Tough Skin","rank":2},{"id":4213,"name":"Enchanted Armor","rank":2},{"id":4124,"name":"Feast","rank":1},{"id":4114,"name":"Butcher","rank":1},{"id":4251,"name":"Second Wind","rank":1},{"id":4222,"name":"Veteran's Scars","rank":3},{"id":4221,"name":"Unyielding","rank":1},{"id":4122,"name":"Brute Force","rank":3},{"id":4262,"name":"Tenacious","rank":1},{"id":4231,"name":"Oppression","rank":1},{"id":4252,"name":"Legendary Guardian","rank":3},{"id":4132,"name":"Martial Mastery","rank":1},{"id":4241,"name":"Perseverance","rank":3},{"id":4232,"name":"Juggernaut","rank":1},{"id":4112,"name":"Fury","rank":3}]},{"id":34170142,"name":"Jungle AD (more atk, cdr)","current":false,"talents":[{"id":4214,"name":"Tough Skin","rank":2},{"id":4134,"name":"Executioner","rank":3},{"id":4213,"name":"Enchanted Armor","rank":2},{"id":4124,"name":"Feast","rank":1},{"id":4114,"name":"Butcher","rank":1},{"id":4222,"name":"Veteran's Scars","rank":3},{"id":4144,"name":"Dangerous Game","rank":1},{"id":4122,"name":"Brute Force","rank":3},{"id":4152,"name":"Devastating Strikes","rank":3},{"id":4224,"name":"Bladed Armor","rank":1},{"id":4111,"name":"Double-Edged Sword","rank":1},{"id":4132,"name":"Martial Mastery","rank":1},{"id":4142,"name":"Warlord","rank":3},{"id":4232,"name":"Juggernaut","rank":1},{"id":4162,"name":"Havoc","rank":1},{"id":4113,"name":"Sorcery","rank":3}]},{"id":34170143,"name":"Jungle AD (more def, cdr)","current":false,"talents":[{"id":4212,"name":"Recovery","rank":2},{"id":4242,"name":"Swiftness","rank":1},{"id":4211,"name":"Block","rank":2},{"id":4214,"name":"Tough Skin","rank":2},{"id":4124,"name":"Feast","rank":1},{"id":4114,"name":"Butcher","rank":1},{"id":4222,"name":"Veteran's Scars","rank":3},{"id":4252,"name":"Legendary Guardian","rank":4},{"id":4122,"name":"Brute Force","rank":3},{"id":4262,"name":"Tenacious","rank":1},{"id":4224,"name":"Bladed Armor","rank":1},{"id":4231,"name":"Oppression","rank":1},{"id":4132,"name":"Martial Mastery","rank":1},{"id":4241,"name":"Perseverance","rank":3},{"id":4232,"name":"Juggernaut","rank":1},{"id":4113,"name":"Sorcery","rank":3}]},{"id":34170144,"name":"Support","current":false,"talents":[{"id":4212,"name":"Recovery","rank":2},{"id":4211,"name":"Block","rank":2},{"id":4353,"name":"Intelligence","rank":3},{"id":4362,"name":"Wanderer","rank":1},{"id":4334,"name":"Culinary Master","rank":1},{"id":4344,"name":"Inspiration","rank":2},{"id":4352,"name":"Bandit","rank":1},{"id":4314,"name":"Scout","rank":1},{"id":4113,"name":"Sorcery","rank":4},{"id":4221,"name":"Unyielding","rank":1},{"id":4331,"name":"Greed","rank":3},{"id":4324,"name":"Alchemist","rank":1},{"id":4312,"name":"Fleet of Foot","rank":3},{"id":4313,"name":"Meditation","rank":3},{"id":4342,"name":"Wealth","rank":1},{"id":4341,"name":"Scavenger","rank":1}]},{"id":34170145,"name":"TEEMO","current":false,"talents":[{"id":4134,"name":"Executioner","rank":3},{"id":4154,"name":"Arcane Blade","rank":1},{"id":4112,"name":"Fury","rank":4},{"id":4144,"name":"Dangerous Game","rank":1},{"id":4122,"name":"Brute Force","rank":3},{"id":4152,"name":"Devastating Strikes","rank":3},{"id":4123,"name":"Mental Force","rank":3},{"id":4141,"name":"Blade Weaving","rank":1},{"id":4111,"name":"Double-Edged Sword","rank":1},{"id":4132,"name":"Martial Mastery","rank":1},{"id":4133,"name":"Arcane Mastery","rank":1},{"id":4142,"name":"Warlord","rank":3},{"id":4143,"name":"Archmage","rank":3},{"id":4162,"name":"Havoc","rank":1},{"id":4131,"name":"Spell Weaving","rank":1}]},{"id":34170146,"name":"Cho Gath","current":false,"talents":[{"id":4212,"name":"Recovery","rank":2},{"id":4233,"name":"Hardiness","rank":3},{"id":4242,"name":"Swiftness","rank":1},{"id":4243,"name":"Reinforced Armor","rank":1},{"id":4214,"name":"Tough Skin","rank":2},{"id":4124,"name":"Feast","rank":1},{"id":4251,"name":"Second Wind","rank":1},{"id":4114,"name":"Butcher","rank":1},{"id":4252,"name":"Legendary Guardian","rank":2},{"id":4222,"name":"Veteran's Scars","rank":3},{"id":4123,"name":"Mental Force","rank":3},{"id":4262,"name":"Tenacious","rank":1},{"id":4224,"name":"Bladed Armor","rank":1},{"id":4133,"name":"Arcane Mastery","rank":1},{"id":4241,"name":"Perseverance","rank":3},{"id":4232,"name":"Juggernaut","rank":1},{"id":4112,"name":"Fury","rank":3}]},{"id":34170147,"name":"Jungle AP Gragas","current":false,"talents":[{"id":4212,"name":"Recovery","rank":2},{"id":4211,"name":"Block","rank":2},{"id":4214,"name":"Tough Skin","rank":2},{"id":4134,"name":"Executioner","rank":3},{"id":4124,"name":"Feast","rank":1},{"id":4154,"name":"Arcane Blade","rank":1},{"id":4114,"name":"Butcher","rank":1},{"id":4144,"name":"Dangerous Game","rank":1},{"id":4152,"name":"Devastating Strikes","rank":3},{"id":4123,"name":"Mental Force","rank":3},{"id":4312,"name":"Fleet of Foot","rank":3},{"id":4133,"name":"Arcane Mastery","rank":1},{"id":4143,"name":"Archmage","rank":3},{"id":4162,"name":"Havoc","rank":1},{"id":4113,"name":"Sorcery","rank":3}]},{"id":34170148,"name":"AP Jungle 21/6/3","current":false,"talents":[{"id":4211,"name":"Block","rank":2},{"id":4214,"name":"Tough Skin","rank":2},{"id":4134,"name":"Executioner","rank":3},{"id":4124,"name":"Feast","rank":1},{"id":4154,"name":"Arcane Blade","rank":1},{"id":4114,"name":"Butcher","rank":1},{"id":4221,"name":"Unyielding","rank":1},{"id":4152,"name":"Devastating Strikes","rank":3},{"id":4123,"name":"Mental Force","rank":3},{"id":4224,"name":"Bladed Armor","rank":1},{"id":4312,"name":"Fleet of Foot","rank":3},{"id":4111,"name":"Double-Edged Sword","rank":1},{"id":4133,"name":"Arcane Mastery","rank":1},{"id":4143,"name":"Archmage","rank":3},{"id":4162,"name":"Havoc","rank":1},{"id":4113,"name":"Sorcery","rank":3}]},{"id":34170149,"name":"ADC","current":false,"talents":[{"id":4212,"name":"Recovery","rank":2},{"id":4211,"name":"Block","rank":2},{"id":4134,"name":"Executioner","rank":3},{"id":4124,"name":"Feast","rank":1},{"id":4114,"name":"Butcher","rank":1},{"id":4222,"name":"Veteran's Scars","rank":3},{"id":4221,"name":"Unyielding","rank":1},{"id":4122,"name":"Brute Force","rank":3},{"id":4152,"name":"Devastating Strikes","rank":3},{"id":4112,"name":"Fury","rank":2},{"id":4141,"name":"Blade Weaving","rank":1},{"id":4111,"name":"Double-Edged Sword","rank":1},{"id":4132,"name":"Martial Mastery","rank":1},{"id":4142,"name":"Warlord","rank":3},{"id":4232,"name":"Juggernaut","rank":1},{"id":4162,"name":"Havoc","rank":1},{"id":4131,"name":"Spell Weaving","rank":1}]},{"id":34170150,"name":"Shyvana Jungle","current":false,"talents":[{"id":4212,"name":"Recovery","rank":2},{"id":4242,"name":"Swiftness","rank":1},{"id":4211,"name":"Block","rank":2},{"id":4214,"name":"Tough Skin","rank":2},{"id":4251,"name":"Second Wind","rank":1},{"id":4222,"name":"Veteran's Scars","rank":3},{"id":4113,"name":"Sorcery","rank":4},{"id":4221,"name":"Unyielding","rank":1},{"id":4252,"name":"Legendary Guardian","rank":4},{"id":4224,"name":"Bladed Armor","rank":1},{"id":4262,"name":"Tenacious","rank":1},{"id":4231,"name":"Oppression","rank":1},{"id":4312,"name":"Fleet of Foot","rank":3},{"id":4241,"name":"Perseverance","rank":3},{"id":4232,"name":"Juggernaut","rank":1}]},{"id":34170151,"name":"TANK","current":false,"talents":[{"id":4212,"name":"Recovery","rank":2},{"id":4233,"name":"Hardiness","rank":3},{"id":4242,"name":"Swiftness","rank":1},{"id":4243,"name":"Reinforced Armor","rank":1},{"id":4211,"name":"Block","rank":2},{"id":4213,"name":"Enchanted Armor","rank":2},{"id":4244,"name":"Evasive","rank":1},{"id":4234,"name":"Resistance","rank":3},{"id":4251,"name":"Second Wind","rank":1},{"id":4222,"name":"Veteran's Scars","rank":3},{"id":4221,"name":"Unyielding","rank":1},{"id":4252,"name":"Legendary Guardian","rank":4},{"id":4262,"name":"Tenacious","rank":1},{"id":4231,"name":"Oppression","rank":1},{"id":4241,"name":"Perseverance","rank":3},{"id":4232,"name":"Juggernaut","rank":1}]},{"id":34170152,"name":"Eve Jungle","current":true,"talents":[{"id":4214,"name":"Tough Skin","rank":2},{"id":4312,"name":"Fleet of Foot","rank":2},{"id":4134,"name":"Executioner","rank":3},{"id":4154,"name":"Arcane Blade","rank":1},{"id":4113,"name":"Sorcery","rank":4},{"id":4144,"name":"Dangerous Game","rank":1},{"id":4122,"name":"Brute Force","rank":3},{"id":4152,"name":"Devastating Strikes","rank":3},{"id":4123,"name":"Mental Force","rank":3},{"id":4111,"name":"Double-Edged Sword","rank":1},{"id":4132,"name":"Martial Mastery","rank":1},{"id":4133,"name":"Arcane Mastery","rank":1},{"id":4143,"name":"Archmage","rank":3},{"id":4162,"name":"Havoc","rank":1},{"id":4131,"name":"Spell Weaving","rank":1}]},{"id":34170153,"name":"Mundo Giungla","current":false,"talents":[{"id":4212,"name":"Recovery","rank":2},{"id":4242,"name":"Swiftness","rank":1},{"id":4233,"name":"Hardiness","rank":3},{"id":4243,"name":"Reinforced Armor","rank":1},{"id":4211,"name":"Block","rank":2},{"id":4214,"name":"Tough Skin","rank":2},{"id":4114,"name":"Butcher","rank":1},{"id":4251,"name":"Second Wind","rank":1},{"id":4222,"name":"Veteran's Scars","rank":3},{"id":4221,"name":"Unyielding","rank":1},{"id":4252,"name":"Legendary Guardian","rank":4},{"id":4224,"name":"Bladed Armor","rank":1},{"id":4262,"name":"Tenacious","rank":1},{"id":4312,"name":"Fleet of Foot","rank":3},{"id":4241,"name":"Perseverance","rank":3},{"id":4232,"name":"Juggernaut","rank":1}]},{"id":34170154,"name":"Tank / Uti 0/21/9","current":false,"talents":[{"id":4242,"name":"Swiftness","rank":1},{"id":4212,"name":"Recovery","rank":2},{"id":4211,"name":"Block","rank":2},{"id":4213,"name":"Enchanted Armor","rank":2},{"id":4322,"name":"Summoner's Insight","rank":3},{"id":4334,"name":"Culinary Master","rank":1},{"id":4251,"name":"Second Wind","rank":1},{"id":4222,"name":"Veteran's Scars","rank":3},{"id":4314,"name":"Scout","rank":1},{"id":4221,"name":"Unyielding","rank":1},{"id":4324,"name":"Alchemist","rank":1},{"id":4262,"name":"Tenacious","rank":1},{"id":4231,"name":"Oppression","rank":1},{"id":4312,"name":"Fleet of Foot","rank":3},{"id":4252,"name":"Legendary Guardian","rank":3},{"id":4241,"name":"Perseverance","rank":3},{"id":4232,"name":"Juggernaut","rank":1}]},{"id":34170155,"name":"AP Support","current":false,"talents":[{"id":4212,"name":"Recovery","rank":2},{"id":4211,"name":"Block","rank":2},{"id":4134,"name":"Executioner","rank":3},{"id":4154,"name":"Arcane Blade","rank":1},{"id":4222,"name":"Veteran's Scars","rank":3},{"id":4113,"name":"Sorcery","rank":4},{"id":4144,"name":"Dangerous Game","rank":1},{"id":4221,"name":"Unyielding","rank":1},{"id":4152,"name":"Devastating Strikes","rank":3},{"id":4123,"name":"Mental Force","rank":3},{"id":4231,"name":"Oppression","rank":1},{"id":4111,"name":"Double-Edged Sword","rank":1},{"id":4133,"name":"Arcane Mastery","rank":1},{"id":4143,"name":"Archmage","rank":3},{"id":4162,"name":"Havoc","rank":1}]}]}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"summoners":[{"id":30743211,"name":"intinig"},{"id":30743212,"name":"jackolefdp"}]}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"summonerId":30743211,"pages":[{"id":27908064,"name":"Mid MP AP","current":false,"slots":[{"runeSlotId":2,"rune":{"id":5273,"name":"Greater Mark of Magic Penetration","description":"+0.87 magic penetration","tier":3}},{"runeSlotId":3,"rune":{"id":5273,"name":"Greater Mark of Magic Penetration","description":"+0.87 magic penetration","tier":3}},{"runeSlotId":1,"rune":{"id":5273,"name":"Greater Mark of Magic Penetration","description":"+0.87 magic penetration","tier":3}},{"runeSlotId":6,"rune":{"id":5273,"name":"Greater Mark of Magic Penetration","description":"+0.87 magic penetration","tier":3}},{"runeSlotId":7,"rune":{"id":5273,"name":"Greater Mark of Magic Penetration","description":"+0.87 magic penetration","tier":3}},{"runeSlotId":4,"rune":{"id":5273,"name":"Greater Mark of Magic Penetration","description":"+0.87 magic penetration","tier":3}},{"runeSlotId":5,"rune":{"id":5273,"name":"Greater Mark of Magic Penetration","description":"+0.87 magic penetration","tier":3}},{"runeSlotId":9,"rune":{"id":5273,"name":"Greater Mark of Magic Penetration","description":"+0.87 magic penetration","tier":3}},{"runeSlotId":8,"rune":{"id":5273,"name":"Greater Mark of Magic Penetration","description":"+0.87 magic penetration","tier":3}},{"runeSlotId":30,"rune":{"id":5357,"name":"Greater Quintessence of Ability Power","description":"+4.95 ability power","tier":3}},{"runeSlotId":22,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":23,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":20,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":28,"rune":{"id":5357,"name":"Greater Quintessence of Ability Power","description":"+4.95 ability power","tier":3}},{"runeSlotId":21,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":29,"rune":{"id":5357,"name":"Greater Quintessence of Ability Power","description":"+4.95 ability power","tier":3}},{"runeSlotId":19,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":18,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":17,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":16,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":15,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":27,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":14,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":26,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":25,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":13,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":24,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":12,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":11,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":10,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}}]},{"id":27908065,"name":"Support MP","current":false,"slots":[{"runeSlotId":2,"rune":{"id":5273,"name":"Greater Mark of Magic Penetration","description":"+0.87 magic penetration","tier":3}},{"runeSlotId":3,"rune":{"id":5273,"name":"Greater Mark of Magic Penetration","description":"+0.87 magic penetration","tier":3}},{"runeSlotId":1,"rune":{"id":5273,"name":"Greater Mark of Magic Penetration","description":"+0.87 magic penetration","tier":3}},{"runeSlotId":6,"rune":{"id":5273,"name":"Greater Mark of Magic Penetration","description":"+0.87 magic penetration","tier":3}},{"runeSlotId":7,"rune":{"id":5273,"name":"Greater Mark of Magic Penetration","description":"+0.87 magic penetration","tier":3}},{"runeSlotId":4,"rune":{"id":5273,"name":"Greater Mark of Magic Penetration","description":"+0.87 magic penetration","tier":3}},{"runeSlotId":5,"rune":{"id":5273,"name":"Greater Mark of Magic Penetration","description":"+0.87 magic penetration","tier":3}},{"runeSlotId":21,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":22,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":23,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":24,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":19,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":20,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":26,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":25,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":27,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":9,"rune":{"id":5273,"name":"Greater Mark of Magic Penetration","description":"+0.87 magic penetration","tier":3}},{"runeSlotId":8,"rune":{"id":5273,"name":"Greater Mark of Magic Penetration","description":"+0.87 magic penetration","tier":3}},{"runeSlotId":30,"rune":{"id":5367,"name":"Greater Quintessence of Gold","description":"+1 gold / 10 sec.","tier":3}},{"runeSlotId":29,"rune":{"id":5367,"name":"Greater Quintessence of Gold","description":"+1 gold / 10 sec.","tier":3}},{"runeSlotId":28,"rune":{"id":5367,"name":"Greater Quintessence of Gold","description":"+1 gold / 10 sec.","tier":3}},{"runeSlotId":18,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":17,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":16,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":15,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":14,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":13,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":12,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":11,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":10,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}}]},{"id":31038297,"name":"Jungle AS AD","current":false,"slots":[{"runeSlotId":29,"rune":{"id":5335,"name":"Greater Quintessence of Attack Damage","description":"+2.25 attack damage","tier":3}},{"runeSlotId":7,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":28,"rune":{"id":5335,"name":"Greater Quintessence of Attack Damage","description":"+2.25 attack damage","tier":3}},{"runeSlotId":6,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":9,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":8,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":1,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":3,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":2,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":5,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":4,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":30,"rune":{"id":5335,"name":"Greater Quintessence of Attack Damage","description":"+2.25 attack damage","tier":3}},{"runeSlotId":22,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":23,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":20,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":21,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":19,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":18,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":17,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":16,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":15,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":27,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":14,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":26,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":25,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":13,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":24,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":12,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":11,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":10,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}}]},{"id":31038298,"name":"Bruiser AD AD","current":false,"slots":[{"runeSlotId":29,"rune":{"id":5335,"name":"Greater Quintessence of Attack Damage","description":"+2.25 attack damage","tier":3}},{"runeSlotId":28,"rune":{"id":5335,"name":"Greater Quintessence of Attack Damage","description":"+2.25 attack damage","tier":3}},{"runeSlotId":30,"rune":{"id":5335,"name":"Greater Quintessence of Attack Damage","description":"+2.25 attack damage","tier":3}},{"runeSlotId":2,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":3,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":1,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":26,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":25,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":27,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":8,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":9,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":6,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":7,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":4,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":5,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":22,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":23,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":20,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":21,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":19,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":18,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":17,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":16,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":15,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":14,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":13,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":12,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":24,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":11,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":10,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}}]},{"id":31038299,"name":"Support +gold","current":false,"slots":[{"runeSlotId":21,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":22,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":23,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":24,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":8,"rune":{"id":5257,"name":"Greater Mark of Armor","description":"+0.91 armor","tier":3}},{"runeSlotId":9,"rune":{"id":5257,"name":"Greater Mark of Armor","description":"+0.91 armor","tier":3}},{"runeSlotId":19,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":20,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":26,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":25,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":27,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":30,"rune":{"id":5367,"name":"Greater Quintessence of Gold","description":"+1 gold / 10 sec.","tier":3}},{"runeSlotId":29,"rune":{"id":5367,"name":"Greater Quintessence of Gold","description":"+1 gold / 10 sec.","tier":3}},{"runeSlotId":28,"rune":{"id":5367,"name":"Greater Quintessence of Gold","description":"+1 gold / 10 sec.","tier":3}},{"runeSlotId":7,"rune":{"id":5257,"name":"Greater Mark of Armor","description":"+0.91 armor","tier":3}},{"runeSlotId":6,"rune":{"id":5257,"name":"Greater Mark of Armor","description":"+0.91 armor","tier":3}},{"runeSlotId":5,"rune":{"id":5257,"name":"Greater Mark of Armor","description":"+0.91 armor","tier":3}},{"runeSlotId":4,"rune":{"id":5257,"name":"Greater Mark of Armor","description":"+0.91 armor","tier":3}},{"runeSlotId":3,"rune":{"id":5257,"name":"Greater Mark of Armor","description":"+0.91 armor","tier":3}},{"runeSlotId":2,"rune":{"id":5257,"name":"Greater Mark of Armor","description":"+0.91 armor","tier":3}},{"runeSlotId":1,"rune":{"id":5257,"name":"Greater Mark of Armor","description":"+0.91 armor","tier":3}},{"runeSlotId":18,"rune":{"id":5403,"name":"Greater Seal of Gold","description":"+0.25 gold / 10 sec.","tier":3}},{"runeSlotId":16,"rune":{"id":5403,"name":"Greater Seal of Gold","description":"+0.25 gold / 10 sec.","tier":3}},{"runeSlotId":17,"rune":{"id":5403,"name":"Greater Seal of Gold","description":"+0.25 gold / 10 sec.","tier":3}},{"runeSlotId":14,"rune":{"id":5403,"name":"Greater Seal of Gold","description":"+0.25 gold / 10 sec.","tier":3}},{"runeSlotId":15,"rune":{"id":5403,"name":"Greater Seal of Gold","description":"+0.25 gold / 10 sec.","tier":3}},{"runeSlotId":12,"rune":{"id":5403,"name":"Greater Seal of Gold","description":"+0.25 gold / 10 sec.","tier":3}},{"runeSlotId":13,"rune":{"id":5403,"name":"Greater Seal of Gold","description":"+0.25 gold / 10 sec.","tier":3}},{"runeSlotId":10,"rune":{"id":5403,"name":"Greater Seal of Gold","description":"+0.25 gold / 10 sec.","tier":3}},{"runeSlotId":11,"rune":{"id":5403,"name":"Greater Seal of Gold","description":"+0.25 gold / 10 sec.","tier":3}}]},{"id":31038300,"name":"Udyr","current":false,"slots":[{"runeSlotId":7,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":27,"rune":{"id":5279,"name":"Greater Glyph of Critical Damage","description":"+0.56% critical damage","tier":3}},{"runeSlotId":6,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":8,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":9,"rune":{"id":5251,"name":"Greater Mark of Critical Chance","description":"+0.93% critical chance","tier":3}},{"runeSlotId":1,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":3,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":2,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":5,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":4,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":29,"rune":{"id":5365,"name":"Greater Quintessence of Movement Speed","description":"+1.5% movement speed","tier":3}},{"runeSlotId":28,"rune":{"id":5365,"name":"Greater Quintessence of Movement Speed","description":"+1.5% movement speed","tier":3}},{"runeSlotId":30,"rune":{"id":5365,"name":"Greater Quintessence of Movement Speed","description":"+1.5% movement speed","tier":3}},{"runeSlotId":18,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":17,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":16,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":15,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":14,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":19,"rune":{"id":5295,"name":"Greater Glyph of Cooldown Reduction","description":"-0.83% cooldowns","tier":3}},{"runeSlotId":13,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":20,"rune":{"id":5295,"name":"Greater Glyph of Cooldown Reduction","description":"-0.83% cooldowns","tier":3}},{"runeSlotId":12,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":21,"rune":{"id":5295,"name":"Greater Glyph of Cooldown Reduction","description":"-0.83% cooldowns","tier":3}},{"runeSlotId":11,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":22,"rune":{"id":5295,"name":"Greater Glyph of Cooldown Reduction","description":"-0.83% cooldowns","tier":3}},{"runeSlotId":23,"rune":{"id":5295,"name":"Greater Glyph of Cooldown Reduction","description":"-0.83% cooldowns","tier":3}},{"runeSlotId":10,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":24,"rune":{"id":5295,"name":"Greater Glyph of Cooldown Reduction","description":"-0.83% cooldowns","tier":3}},{"runeSlotId":25,"rune":{"id":5295,"name":"Greater Glyph of Cooldown Reduction","description":"-0.83% cooldowns","tier":3}},{"runeSlotId":26,"rune":{"id":5295,"name":"Greater Glyph of Cooldown Reduction","description":"-0.83% cooldowns","tier":3}}]},{"id":31038301,"name":"Bruiser Apn MS","current":false,"slots":[{"runeSlotId":8,"rune":{"id":5253,"name":"Greater Mark of Armor Penetration","description":"+1.28 armor penetration","tier":3}},{"runeSlotId":9,"rune":{"id":5253,"name":"Greater Mark of Armor Penetration","description":"+1.28 armor penetration","tier":3}},{"runeSlotId":4,"rune":{"id":5253,"name":"Greater Mark of Armor Penetration","description":"+1.28 armor penetration","tier":3}},{"runeSlotId":5,"rune":{"id":5253,"name":"Greater Mark of Armor Penetration","description":"+1.28 armor penetration","tier":3}},{"runeSlotId":6,"rune":{"id":5253,"name":"Greater Mark of Armor Penetration","description":"+1.28 armor penetration","tier":3}},{"runeSlotId":7,"rune":{"id":5253,"name":"Greater Mark of Armor Penetration","description":"+1.28 armor penetration","tier":3}},{"runeSlotId":21,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":22,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":23,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":24,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":19,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":20,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":26,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":25,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":27,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":29,"rune":{"id":5365,"name":"Greater Quintessence of Movement Speed","description":"+1.5% movement speed","tier":3}},{"runeSlotId":28,"rune":{"id":5365,"name":"Greater Quintessence of Movement Speed","description":"+1.5% movement speed","tier":3}},{"runeSlotId":30,"rune":{"id":5365,"name":"Greater Quintessence of Movement Speed","description":"+1.5% movement speed","tier":3}},{"runeSlotId":18,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":17,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":16,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":15,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":14,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":13,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":12,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":11,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":3,"rune":{"id":5253,"name":"Greater Mark of Armor Penetration","description":"+1.28 armor penetration","tier":3}},{"runeSlotId":2,"rune":{"id":5253,"name":"Greater Mark of Armor Penetration","description":"+1.28 armor penetration","tier":3}},{"runeSlotId":10,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":1,"rune":{"id":5253,"name":"Greater Mark of Armor Penetration","description":"+1.28 armor penetration","tier":3}}]},{"id":31038302,"name":"Jungler AS AP","current":false,"slots":[{"runeSlotId":7,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":6,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":9,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":8,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":1,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":3,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":2,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":5,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":4,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":30,"rune":{"id":5357,"name":"Greater Quintessence of Ability Power","description":"+4.95 ability power","tier":3}},{"runeSlotId":22,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":23,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":28,"rune":{"id":5357,"name":"Greater Quintessence of Ability Power","description":"+4.95 ability power","tier":3}},{"runeSlotId":20,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":29,"rune":{"id":5357,"name":"Greater Quintessence of Ability Power","description":"+4.95 ability power","tier":3}},{"runeSlotId":21,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":19,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":18,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":17,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":16,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":27,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":15,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":26,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":14,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":13,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":25,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":12,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":24,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":11,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":10,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}}]},{"id":31038303,"name":"Jungler AS MS","current":false,"slots":[{"runeSlotId":7,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":6,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":9,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":8,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":1,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":3,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":2,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":5,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":4,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":29,"rune":{"id":5365,"name":"Greater Quintessence of Movement Speed","description":"+1.5% movement speed","tier":3}},{"runeSlotId":28,"rune":{"id":5365,"name":"Greater Quintessence of Movement Speed","description":"+1.5% movement speed","tier":3}},{"runeSlotId":30,"rune":{"id":5365,"name":"Greater Quintessence of Movement Speed","description":"+1.5% movement speed","tier":3}},{"runeSlotId":22,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":23,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":20,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":21,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":19,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":18,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":17,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":16,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":27,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":15,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":26,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":14,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":13,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":25,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":12,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":24,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":11,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":10,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}}]},{"id":33903058,"name":"Jungler AD MS","current":false,"slots":[{"runeSlotId":2,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":3,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":1,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":8,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":9,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":6,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":7,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":4,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":5,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":29,"rune":{"id":5365,"name":"Greater Quintessence of Movement Speed","description":"+1.5% movement speed","tier":3}},{"runeSlotId":28,"rune":{"id":5365,"name":"Greater Quintessence of Movement Speed","description":"+1.5% movement speed","tier":3}},{"runeSlotId":30,"rune":{"id":5365,"name":"Greater Quintessence of Movement Speed","description":"+1.5% movement speed","tier":3}},{"runeSlotId":22,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":23,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":20,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":21,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":19,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":18,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":17,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":16,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":27,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":15,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":26,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":14,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":25,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":13,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":24,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":12,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":11,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":10,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}}]},{"id":33903059,"name":"Fiddle J","current":false,"slots":[{"runeSlotId":2,"rune":{"id":5273,"name":"Greater Mark of Magic Penetration","description":"+0.87 magic penetration","tier":3}},{"runeSlotId":3,"rune":{"id":5273,"name":"Greater Mark of Magic Penetration","description":"+0.87 magic penetration","tier":3}},{"runeSlotId":1,"rune":{"id":5273,"name":"Greater Mark of Magic Penetration","description":"+0.87 magic penetration","tier":3}},{"runeSlotId":6,"rune":{"id":5273,"name":"Greater Mark of Magic Penetration","description":"+0.87 magic penetration","tier":3}},{"runeSlotId":7,"rune":{"id":5273,"name":"Greater Mark of Magic Penetration","description":"+0.87 magic penetration","tier":3}},{"runeSlotId":4,"rune":{"id":5273,"name":"Greater Mark of Magic Penetration","description":"+0.87 magic penetration","tier":3}},{"runeSlotId":5,"rune":{"id":5273,"name":"Greater Mark of Magic Penetration","description":"+0.87 magic penetration","tier":3}},{"runeSlotId":9,"rune":{"id":5273,"name":"Greater Mark of Magic Penetration","description":"+0.87 magic penetration","tier":3}},{"runeSlotId":8,"rune":{"id":5273,"name":"Greater Mark of Magic Penetration","description":"+0.87 magic penetration","tier":3}},{"runeSlotId":30,"rune":{"id":5357,"name":"Greater Quintessence of Ability Power","description":"+4.95 ability power","tier":3}},{"runeSlotId":28,"rune":{"id":5357,"name":"Greater Quintessence of Ability Power","description":"+4.95 ability power","tier":3}},{"runeSlotId":29,"rune":{"id":5357,"name":"Greater Quintessence of Ability Power","description":"+4.95 ability power","tier":3}},{"runeSlotId":18,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":17,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":16,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":15,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":14,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":19,"rune":{"id":5295,"name":"Greater Glyph of Cooldown Reduction","description":"-0.83% cooldowns","tier":3}},{"runeSlotId":13,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":20,"rune":{"id":5295,"name":"Greater Glyph of Cooldown Reduction","description":"-0.83% cooldowns","tier":3}},{"runeSlotId":12,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":21,"rune":{"id":5295,"name":"Greater Glyph of Cooldown Reduction","description":"-0.83% cooldowns","tier":3}},{"runeSlotId":11,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":22,"rune":{"id":5295,"name":"Greater Glyph of Cooldown Reduction","description":"-0.83% cooldowns","tier":3}},{"runeSlotId":10,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":23,"rune":{"id":5295,"name":"Greater Glyph of Cooldown Reduction","description":"-0.83% cooldowns","tier":3}},{"runeSlotId":24,"rune":{"id":5295,"name":"Greater Glyph of Cooldown Reduction","description":"-0.83% cooldowns","tier":3}},{"runeSlotId":25,"rune":{"id":5295,"name":"Greater Glyph of Cooldown Reduction","description":"-0.83% cooldowns","tier":3}},{"runeSlotId":26,"rune":{"id":5295,"name":"Greater Glyph of Cooldown Reduction","description":"-0.83% cooldowns","tier":3}},{"runeSlotId":27,"rune":{"id":5295,"name":"Greater Glyph of Cooldown Reduction","description":"-0.83% cooldowns","tier":3}}]},{"id":33903060,"name":"Mundo Top","current":false,"slots":[{"runeSlotId":22,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":23,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":24,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":26,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":25,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":27,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":9,"rune":{"id":5402,"name":"Greater Mark of Hybrid Penetration","description":"+0.9 Armor Penetration / +0.62 Magic Penetration","tier":3}},{"runeSlotId":20,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":21,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":19,"rune":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","tier":3}},{"runeSlotId":18,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":17,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":16,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":29,"rune":{"id":5352,"name":"Greater Quintessence of Scaling Health Regeneration","description":"+0.28 health regen / 5 sec. per level (+5.04 at champion level 18)","tier":3}},{"runeSlotId":15,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":30,"rune":{"id":5352,"name":"Greater Quintessence of Scaling Health Regeneration","description":"+0.28 health regen / 5 sec. per level (+5.04 at champion level 18)","tier":3}},{"runeSlotId":14,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":13,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":28,"rune":{"id":5352,"name":"Greater Quintessence of Scaling Health Regeneration","description":"+0.28 health regen / 5 sec. per level (+5.04 at champion level 18)","tier":3}},{"runeSlotId":12,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":11,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":7,"rune":{"id":5402,"name":"Greater Mark of Hybrid Penetration","description":"+0.9 Armor Penetration / +0.62 Magic Penetration","tier":3}},{"runeSlotId":10,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":8,"rune":{"id":5402,"name":"Greater Mark of Hybrid Penetration","description":"+0.9 Armor Penetration / +0.62 Magic Penetration","tier":3}},{"runeSlotId":5,"rune":{"id":5402,"name":"Greater Mark of Hybrid Penetration","description":"+0.9 Armor Penetration / +0.62 Magic Penetration","tier":3}},{"runeSlotId":6,"rune":{"id":5402,"name":"Greater Mark of Hybrid Penetration","description":"+0.9 Armor Penetration / +0.62 Magic Penetration","tier":3}},{"runeSlotId":3,"rune":{"id":5402,"name":"Greater Mark of Hybrid Penetration","description":"+0.9 Armor Penetration / +0.62 Magic Penetration","tier":3}},{"runeSlotId":4,"rune":{"id":5402,"name":"Greater Mark of Hybrid Penetration","description":"+0.9 Armor Penetration / +0.62 Magic Penetration","tier":3}},{"runeSlotId":1,"rune":{"id":5402,"name":"Greater Mark of Hybrid Penetration","description":"+0.9 Armor Penetration / +0.62 Magic Penetration","tier":3}},{"runeSlotId":2,"rune":{"id":5402,"name":"Greater Mark of Hybrid Penetration","description":"+0.9 Armor Penetration / +0.62 Magic Penetration","tier":3}}]},{"id":33903061,"name":"Jungler MP MS or Vlad","current":false,"slots":[{"runeSlotId":2,"rune":{"id":5273,"name":"Greater Mark of Magic Penetration","description":"+0.87 magic penetration","tier":3}},{"runeSlotId":3,"rune":{"id":5273,"name":"Greater Mark of Magic Penetration","description":"+0.87 magic penetration","tier":3}},{"runeSlotId":1,"rune":{"id":5273,"name":"Greater Mark of Magic Penetration","description":"+0.87 magic penetration","tier":3}},{"runeSlotId":6,"rune":{"id":5273,"name":"Greater Mark of Magic Penetration","description":"+0.87 magic penetration","tier":3}},{"runeSlotId":7,"rune":{"id":5273,"name":"Greater Mark of Magic Penetration","description":"+0.87 magic penetration","tier":3}},{"runeSlotId":4,"rune":{"id":5273,"name":"Greater Mark of Magic Penetration","description":"+0.87 magic penetration","tier":3}},{"runeSlotId":5,"rune":{"id":5273,"name":"Greater Mark of Magic Penetration","description":"+0.87 magic penetration","tier":3}},{"runeSlotId":21,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":22,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":23,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":24,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":19,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":20,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":26,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":25,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":27,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":9,"rune":{"id":5273,"name":"Greater Mark of Magic Penetration","description":"+0.87 magic penetration","tier":3}},{"runeSlotId":8,"rune":{"id":5273,"name":"Greater Mark of Magic Penetration","description":"+0.87 magic penetration","tier":3}},{"runeSlotId":29,"rune":{"id":5365,"name":"Greater Quintessence of Movement Speed","description":"+1.5% movement speed","tier":3}},{"runeSlotId":28,"rune":{"id":5365,"name":"Greater Quintessence of Movement Speed","description":"+1.5% movement speed","tier":3}},{"runeSlotId":30,"rune":{"id":5365,"name":"Greater Quintessence of Movement Speed","description":"+1.5% movement speed","tier":3}},{"runeSlotId":18,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":17,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":16,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":15,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":14,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":13,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":12,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":11,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":10,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}}]},{"id":33903062,"name":"Uti Udyr","current":false,"slots":[{"runeSlotId":7,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":6,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":9,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":8,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":1,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":3,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":2,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":5,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":4,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":29,"rune":{"id":5365,"name":"Greater Quintessence of Movement Speed","description":"+1.5% movement speed","tier":3}},{"runeSlotId":28,"rune":{"id":5365,"name":"Greater Quintessence of Movement Speed","description":"+1.5% movement speed","tier":3}},{"runeSlotId":30,"rune":{"id":5365,"name":"Greater Quintessence of Movement Speed","description":"+1.5% movement speed","tier":3}},{"runeSlotId":18,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":17,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":16,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":15,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":19,"rune":{"id":5295,"name":"Greater Glyph of Cooldown Reduction","description":"-0.83% cooldowns","tier":3}},{"runeSlotId":14,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":20,"rune":{"id":5295,"name":"Greater Glyph of Cooldown Reduction","description":"-0.83% cooldowns","tier":3}},{"runeSlotId":13,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":21,"rune":{"id":5295,"name":"Greater Glyph of Cooldown Reduction","description":"-0.83% cooldowns","tier":3}},{"runeSlotId":12,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":22,"rune":{"id":5295,"name":"Greater Glyph of Cooldown Reduction","description":"-0.83% cooldowns","tier":3}},{"runeSlotId":11,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":10,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":23,"rune":{"id":5295,"name":"Greater Glyph of Cooldown Reduction","description":"-0.83% cooldowns","tier":3}},{"runeSlotId":24,"rune":{"id":5295,"name":"Greater Glyph of Cooldown Reduction","description":"-0.83% cooldowns","tier":3}},{"runeSlotId":25,"rune":{"id":5295,"name":"Greater Glyph of Cooldown Reduction","description":"-0.83% cooldowns","tier":3}},{"runeSlotId":26,"rune":{"id":5295,"name":"Greater Glyph of Cooldown Reduction","description":"-0.83% cooldowns","tier":3}},{"runeSlotId":27,"rune":{"id":5295,"name":"Greater Glyph of Cooldown Reduction","description":"-0.83% cooldowns","tier":3}}]},{"id":33903063,"name":"Jungle Gragas","current":false,"slots":[{"runeSlotId":7,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":6,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":9,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":8,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":1,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":3,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":2,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":5,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":4,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":23,"rune":{"id":5298,"name":"Greater Glyph of Scaling Ability Power","description":"+0.17 ability power per level (+3.06 at champion level 18)","tier":3}},{"runeSlotId":24,"rune":{"id":5298,"name":"Greater Glyph of Scaling Ability Power","description":"+0.17 ability power per level (+3.06 at champion level 18)","tier":3}},{"runeSlotId":21,"rune":{"id":5298,"name":"Greater Glyph of Scaling Ability Power","description":"+0.17 ability power per level (+3.06 at champion level 18)","tier":3}},{"runeSlotId":22,"rune":{"id":5298,"name":"Greater Glyph of Scaling Ability Power","description":"+0.17 ability power per level (+3.06 at champion level 18)","tier":3}},{"runeSlotId":19,"rune":{"id":5298,"name":"Greater Glyph of Scaling Ability Power","description":"+0.17 ability power per level (+3.06 at champion level 18)","tier":3}},{"runeSlotId":20,"rune":{"id":5298,"name":"Greater Glyph of Scaling Ability Power","description":"+0.17 ability power per level (+3.06 at champion level 18)","tier":3}},{"runeSlotId":27,"rune":{"id":5298,"name":"Greater Glyph of Scaling Ability Power","description":"+0.17 ability power per level (+3.06 at champion level 18)","tier":3}},{"runeSlotId":25,"rune":{"id":5298,"name":"Greater Glyph of Scaling Ability Power","description":"+0.17 ability power per level (+3.06 at champion level 18)","tier":3}},{"runeSlotId":26,"rune":{"id":5298,"name":"Greater Glyph of Scaling Ability Power","description":"+0.17 ability power per level (+3.06 at champion level 18)","tier":3}},{"runeSlotId":30,"rune":{"id":5357,"name":"Greater Quintessence of Ability Power","description":"+4.95 ability power","tier":3}},{"runeSlotId":28,"rune":{"id":5357,"name":"Greater Quintessence of Ability Power","description":"+4.95 ability power","tier":3}},{"runeSlotId":29,"rune":{"id":5357,"name":"Greater Quintessence of Ability Power","description":"+4.95 ability power","tier":3}},{"runeSlotId":18,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":17,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":16,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":15,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":14,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":13,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":12,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":11,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":10,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}}]},{"id":33903064,"name":"Karthus J","current":false,"slots":[{"runeSlotId":5,"rune":{"id":5268,"name":"Greater Mark of Scaling Ability Power","description":"+0.1 ability power per level (+1.8 at champion level 18)","tier":3}},{"runeSlotId":6,"rune":{"id":5268,"name":"Greater Mark of Scaling Ability Power","description":"+0.1 ability power per level (+1.8 at champion level 18)","tier":3}},{"runeSlotId":3,"rune":{"id":5268,"name":"Greater Mark of Scaling Ability Power","description":"+0.1 ability power per level (+1.8 at champion level 18)","tier":3}},{"runeSlotId":4,"rune":{"id":5268,"name":"Greater Mark of Scaling Ability Power","description":"+0.1 ability power per level (+1.8 at champion level 18)","tier":3}},{"runeSlotId":9,"rune":{"id":5268,"name":"Greater Mark of Scaling Ability Power","description":"+0.1 ability power per level (+1.8 at champion level 18)","tier":3}},{"runeSlotId":7,"rune":{"id":5268,"name":"Greater Mark of Scaling Ability Power","description":"+0.1 ability power per level (+1.8 at champion level 18)","tier":3}},{"runeSlotId":8,"rune":{"id":5268,"name":"Greater Mark of Scaling Ability Power","description":"+0.1 ability power per level (+1.8 at champion level 18)","tier":3}},{"runeSlotId":2,"rune":{"id":5268,"name":"Greater Mark of Scaling Ability Power","description":"+0.1 ability power per level (+1.8 at champion level 18)","tier":3}},{"runeSlotId":1,"rune":{"id":5268,"name":"Greater Mark of Scaling Ability Power","description":"+0.1 ability power per level (+1.8 at champion level 18)","tier":3}},{"runeSlotId":20,"rune":{"id":5297,"name":"Greater Glyph of Ability Power","description":"+1.19 ability power","tier":3}},{"runeSlotId":21,"rune":{"id":5297,"name":"Greater Glyph of Ability Power","description":"+1.19 ability power","tier":3}},{"runeSlotId":18,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":22,"rune":{"id":5297,"name":"Greater Glyph of Ability Power","description":"+1.19 ability power","tier":3}},{"runeSlotId":17,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":23,"rune":{"id":5297,"name":"Greater Glyph of Ability Power","description":"+1.19 ability power","tier":3}},{"runeSlotId":16,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":15,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":14,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":13,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":19,"rune":{"id":5297,"name":"Greater Glyph of Ability Power","description":"+1.19 ability power","tier":3}},{"runeSlotId":12,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":11,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":10,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":24,"rune":{"id":5297,"name":"Greater Glyph of Ability Power","description":"+1.19 ability power","tier":3}},{"runeSlotId":25,"rune":{"id":5297,"name":"Greater Glyph of Ability Power","description":"+1.19 ability power","tier":3}},{"runeSlotId":30,"rune":{"id":5409,"name":"Greater Quintessence of Spell Vamp","description":"+2% Spellvamp.","tier":3}},{"runeSlotId":26,"rune":{"id":5297,"name":"Greater Glyph of Ability Power","description":"+1.19 ability power","tier":3}},{"runeSlotId":29,"rune":{"id":5409,"name":"Greater Quintessence of Spell Vamp","description":"+2% Spellvamp.","tier":3}},{"runeSlotId":27,"rune":{"id":5297,"name":"Greater Glyph of Ability Power","description":"+1.19 ability power","tier":3}},{"runeSlotId":28,"rune":{"id":5409,"name":"Greater Quintessence of Spell Vamp","description":"+2% Spellvamp.","tier":3}}]},{"id":44504963,"name":"Mundo Giungla","current":false,"slots":[{"runeSlotId":7,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":6,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":9,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":8,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":21,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":22,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":1,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":23,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":24,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":3,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":2,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":5,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":19,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":4,"rune":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","tier":3}},{"runeSlotId":20,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":26,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":25,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":27,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":18,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":17,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":16,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":29,"rune":{"id":5352,"name":"Greater Quintessence of Scaling Health Regeneration","description":"+0.28 health regen / 5 sec. per level (+5.04 at champion level 18)","tier":3}},{"runeSlotId":15,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":30,"rune":{"id":5352,"name":"Greater Quintessence of Scaling Health Regeneration","description":"+0.28 health regen / 5 sec. per level (+5.04 at champion level 18)","tier":3}},{"runeSlotId":14,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":13,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":28,"rune":{"id":5352,"name":"Greater Quintessence of Scaling Health Regeneration","description":"+0.28 health regen / 5 sec. per level (+5.04 at champion level 18)","tier":3}},{"runeSlotId":12,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":11,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":10,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}}]},{"id":47524699,"name":"ADC","current":false,"slots":[{"runeSlotId":29,"rune":{"id":5412,"name":"Greater Quintessence of Life Steal","description":"+2% Lifesteal.","tier":3}},{"runeSlotId":28,"rune":{"id":5412,"name":"Greater Quintessence of Life Steal","description":"+2% Lifesteal.","tier":3}},{"runeSlotId":21,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":22,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":23,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":24,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":19,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":20,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":30,"rune":{"id":5335,"name":"Greater Quintessence of Attack Damage","description":"+2.25 attack damage","tier":3}},{"runeSlotId":2,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":3,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":26,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":25,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":27,"rune":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.15 magic resist per level (+2.7 at champion level 18)","tier":3}},{"runeSlotId":8,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":9,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":6,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":7,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":4,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":5,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":18,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":17,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":16,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":15,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":14,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":13,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":12,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":11,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":10,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":1,"rune":{"id":5251,"name":"Greater Mark of Critical Chance","description":"+0.93% critical chance","tier":3}}]},{"id":47524700,"name":"Eve Jungle","current":true,"slots":[{"runeSlotId":2,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":3,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":1,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":8,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":9,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":6,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":7,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":4,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":5,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":30,"rune":{"id":5357,"name":"Greater Quintessence of Ability Power","description":"+4.95 ability power","tier":3}},{"runeSlotId":28,"rune":{"id":5357,"name":"Greater Quintessence of Ability Power","description":"+4.95 ability power","tier":3}},{"runeSlotId":29,"rune":{"id":5357,"name":"Greater Quintessence of Ability Power","description":"+4.95 ability power","tier":3}},{"runeSlotId":20,"rune":{"id":5297,"name":"Greater Glyph of Ability Power","description":"+1.19 ability power","tier":3}},{"runeSlotId":18,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":21,"rune":{"id":5297,"name":"Greater Glyph of Ability Power","description":"+1.19 ability power","tier":3}},{"runeSlotId":17,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":22,"rune":{"id":5297,"name":"Greater Glyph of Ability Power","description":"+1.19 ability power","tier":3}},{"runeSlotId":16,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":23,"rune":{"id":5297,"name":"Greater Glyph of Ability Power","description":"+1.19 ability power","tier":3}},{"runeSlotId":15,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":14,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":13,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":12,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":19,"rune":{"id":5297,"name":"Greater Glyph of Ability Power","description":"+1.19 ability power","tier":3}},{"runeSlotId":11,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":10,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":24,"rune":{"id":5297,"name":"Greater Glyph of Ability Power","description":"+1.19 ability power","tier":3}},{"runeSlotId":25,"rune":{"id":5297,"name":"Greater Glyph of Ability Power","description":"+1.19 ability power","tier":3}},{"runeSlotId":26,"rune":{"id":5297,"name":"Greater Glyph of Ability Power","description":"+1.19 ability power","tier":3}},{"runeSlotId":27,"rune":{"id":5297,"name":"Greater Glyph of Ability Power","description":"+1.19 ability power","tier":3}}]},{"id":62085547,"name":"Snowdown AD vs AD","current":false,"slots":[{"runeSlotId":29,"rune":{"id":5412,"name":"Greater Quintessence of Life Steal","description":"+2% Lifesteal.","tier":3}},{"runeSlotId":30,"rune":{"id":5412,"name":"Greater Quintessence of Life Steal","description":"+2% Lifesteal.","tier":3}},{"runeSlotId":28,"rune":{"id":5412,"name":"Greater Quintessence of Life Steal","description":"+2% Lifesteal.","tier":3}},{"runeSlotId":2,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":3,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":19,"rune":{"id":5277,"name":"Greater Glyph of Attack Speed","description":"+0.64% attack speed","tier":3}},{"runeSlotId":22,"rune":{"id":5277,"name":"Greater Glyph of Attack Speed","description":"+0.64% attack speed","tier":3}},{"runeSlotId":23,"rune":{"id":5277,"name":"Greater Glyph of Attack Speed","description":"+0.64% attack speed","tier":3}},{"runeSlotId":8,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":20,"rune":{"id":5277,"name":"Greater Glyph of Attack Speed","description":"+0.64% attack speed","tier":3}},{"runeSlotId":9,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":21,"rune":{"id":5277,"name":"Greater Glyph of Attack Speed","description":"+0.64% attack speed","tier":3}},{"runeSlotId":6,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":26,"rune":{"id":5277,"name":"Greater Glyph of Attack Speed","description":"+0.64% attack speed","tier":3}},{"runeSlotId":7,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":27,"rune":{"id":5277,"name":"Greater Glyph of Attack Speed","description":"+0.64% attack speed","tier":3}},{"runeSlotId":24,"rune":{"id":5277,"name":"Greater Glyph of Attack Speed","description":"+0.64% attack speed","tier":3}},{"runeSlotId":4,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":5,"rune":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","tier":3}},{"runeSlotId":25,"rune":{"id":5277,"name":"Greater Glyph of Attack Speed","description":"+0.64% attack speed","tier":3}},{"runeSlotId":18,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":17,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":16,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":15,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":14,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":13,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":12,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":11,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":10,"rune":{"id":5317,"name":"Greater Seal of Armor","description":"+1.41 armor","tier":3}},{"runeSlotId":1,"rune":{"id":5251,"name":"Greater Mark of Critical Chance","description":"+0.93% critical chance","tier":3}}]}]}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"id":30743211,"name":"intinig","profileIconId":599,"summonerLevel":30,"revisionDate":1388318141000}
|
@@ -0,0 +1,678 @@
|
|
1
|
+
[ {
|
2
|
+
"fullId" : "TEAM-c80824c9-c568-42de-bdbb-271543b209e1",
|
3
|
+
"name" : "Digimon Tamers",
|
4
|
+
"tag" : "TagMon",
|
5
|
+
"status" : "RANKED",
|
6
|
+
"teamStatSummary" : {
|
7
|
+
"fullId" : "TEAM-c80824c9-c568-42de-bdbb-271543b209e1",
|
8
|
+
"teamStatDetails" : [ {
|
9
|
+
"fullId" : "TEAM-c80824c9-c568-42de-bdbb-271543b209e1",
|
10
|
+
"teamStatType" : "RANKED_TEAM_3x3",
|
11
|
+
"wins" : 0,
|
12
|
+
"losses" : 0,
|
13
|
+
"averageGamesPlayed" : 0
|
14
|
+
}, {
|
15
|
+
"fullId" : "TEAM-c80824c9-c568-42de-bdbb-271543b209e1",
|
16
|
+
"teamStatType" : "RANKED_TEAM_5x5",
|
17
|
+
"wins" : 0,
|
18
|
+
"losses" : 0,
|
19
|
+
"averageGamesPlayed" : 0
|
20
|
+
} ]
|
21
|
+
},
|
22
|
+
"roster" : {
|
23
|
+
"ownerId" : 592670,
|
24
|
+
"memberList" : [ {
|
25
|
+
"playerId" : 592670,
|
26
|
+
"joinDate" : 1331623605000,
|
27
|
+
"inviteDate" : 1331623605000,
|
28
|
+
"status" : "MEMBER"
|
29
|
+
}, {
|
30
|
+
"playerId" : 580668,
|
31
|
+
"joinDate" : 1331623681000,
|
32
|
+
"inviteDate" : 1331623677000,
|
33
|
+
"status" : "MEMBER"
|
34
|
+
}, {
|
35
|
+
"playerId" : 19782302,
|
36
|
+
"joinDate" : 1331625157000,
|
37
|
+
"inviteDate" : 1331624042000,
|
38
|
+
"status" : "MEMBER"
|
39
|
+
}, {
|
40
|
+
"playerId" : 5908,
|
41
|
+
"joinDate" : 1331679340000,
|
42
|
+
"inviteDate" : 1331679337000,
|
43
|
+
"status" : "MEMBER"
|
44
|
+
}, {
|
45
|
+
"playerId" : 20453497,
|
46
|
+
"joinDate" : 1351309208000,
|
47
|
+
"inviteDate" : 1351309203000,
|
48
|
+
"status" : "MEMBER"
|
49
|
+
}, {
|
50
|
+
"playerId" : 20453514,
|
51
|
+
"joinDate" : 1352095946000,
|
52
|
+
"inviteDate" : 1352095943000,
|
53
|
+
"status" : "MEMBER"
|
54
|
+
} ]
|
55
|
+
},
|
56
|
+
"matchHistory" : [ {
|
57
|
+
"kills" : 12,
|
58
|
+
"deaths" : 31,
|
59
|
+
"opposingTeamKills" : 31,
|
60
|
+
"assists" : 19,
|
61
|
+
"gameMode" : "CLASSIC",
|
62
|
+
"opposingTeamName" : "Frenetic Array",
|
63
|
+
"win" : false,
|
64
|
+
"invalid" : false,
|
65
|
+
"mapId" : 1,
|
66
|
+
"gameId" : 576575490
|
67
|
+
}, {
|
68
|
+
"kills" : 25,
|
69
|
+
"deaths" : 15,
|
70
|
+
"opposingTeamKills" : 15,
|
71
|
+
"assists" : 53,
|
72
|
+
"gameMode" : "CLASSIC",
|
73
|
+
"opposingTeamName" : "Frenetic Array",
|
74
|
+
"win" : true,
|
75
|
+
"invalid" : false,
|
76
|
+
"mapId" : 1,
|
77
|
+
"gameId" : 576566324
|
78
|
+
}, {
|
79
|
+
"kills" : 15,
|
80
|
+
"deaths" : 8,
|
81
|
+
"opposingTeamKills" : 7,
|
82
|
+
"assists" : 27,
|
83
|
+
"gameMode" : "CLASSIC",
|
84
|
+
"opposingTeamName" : "Team Stacked",
|
85
|
+
"win" : true,
|
86
|
+
"invalid" : false,
|
87
|
+
"mapId" : 1,
|
88
|
+
"gameId" : 576536749
|
89
|
+
}, {
|
90
|
+
"kills" : 15,
|
91
|
+
"deaths" : 18,
|
92
|
+
"opposingTeamKills" : 18,
|
93
|
+
"assists" : 32,
|
94
|
+
"gameMode" : "CLASSIC",
|
95
|
+
"opposingTeamName" : "Team Mundane",
|
96
|
+
"win" : true,
|
97
|
+
"invalid" : false,
|
98
|
+
"mapId" : 1,
|
99
|
+
"gameId" : 576511761
|
100
|
+
}, {
|
101
|
+
"kills" : 12,
|
102
|
+
"deaths" : 21,
|
103
|
+
"opposingTeamKills" : 21,
|
104
|
+
"assists" : 28,
|
105
|
+
"gameMode" : "CLASSIC",
|
106
|
+
"opposingTeamName" : "Curse Gaming",
|
107
|
+
"win" : false,
|
108
|
+
"invalid" : false,
|
109
|
+
"mapId" : 1,
|
110
|
+
"gameId" : 576486880
|
111
|
+
}, {
|
112
|
+
"kills" : 35,
|
113
|
+
"deaths" : 25,
|
114
|
+
"opposingTeamKills" : 25,
|
115
|
+
"assists" : 81,
|
116
|
+
"gameMode" : "CLASSIC",
|
117
|
+
"opposingTeamName" : "Team Mundane",
|
118
|
+
"win" : true,
|
119
|
+
"invalid" : false,
|
120
|
+
"mapId" : 1,
|
121
|
+
"gameId" : 576438411
|
122
|
+
}, {
|
123
|
+
"kills" : 30,
|
124
|
+
"deaths" : 31,
|
125
|
+
"opposingTeamKills" : 31,
|
126
|
+
"assists" : 70,
|
127
|
+
"gameMode" : "CLASSIC",
|
128
|
+
"opposingTeamName" : "In Lucky We Trust",
|
129
|
+
"win" : true,
|
130
|
+
"invalid" : false,
|
131
|
+
"mapId" : 1,
|
132
|
+
"gameId" : 576354607
|
133
|
+
}, {
|
134
|
+
"kills" : 17,
|
135
|
+
"deaths" : 6,
|
136
|
+
"opposingTeamKills" : 6,
|
137
|
+
"assists" : 28,
|
138
|
+
"gameMode" : "CLASSIC",
|
139
|
+
"opposingTeamName" : "TicoGamers CR",
|
140
|
+
"win" : true,
|
141
|
+
"invalid" : false,
|
142
|
+
"mapId" : 1,
|
143
|
+
"gameId" : 576326147
|
144
|
+
}, {
|
145
|
+
"kills" : 26,
|
146
|
+
"deaths" : 14,
|
147
|
+
"opposingTeamKills" : 14,
|
148
|
+
"assists" : 70,
|
149
|
+
"gameMode" : "CLASSIC",
|
150
|
+
"opposingTeamName" : "The Blinters 5",
|
151
|
+
"win" : true,
|
152
|
+
"invalid" : false,
|
153
|
+
"mapId" : 1,
|
154
|
+
"gameId" : 576266814
|
155
|
+
}, {
|
156
|
+
"kills" : 15,
|
157
|
+
"deaths" : 26,
|
158
|
+
"opposingTeamKills" : 26,
|
159
|
+
"assists" : 28,
|
160
|
+
"gameMode" : "CLASSIC",
|
161
|
+
"opposingTeamName" : "We Da Bes",
|
162
|
+
"win" : false,
|
163
|
+
"invalid" : false,
|
164
|
+
"mapId" : 1,
|
165
|
+
"gameId" : 576041138
|
166
|
+
}, {
|
167
|
+
"kills" : 22,
|
168
|
+
"deaths" : 33,
|
169
|
+
"opposingTeamKills" : 33,
|
170
|
+
"assists" : 48,
|
171
|
+
"gameMode" : "CLASSIC",
|
172
|
+
"opposingTeamName" : "From Coal to Diamond",
|
173
|
+
"win" : false,
|
174
|
+
"invalid" : false,
|
175
|
+
"mapId" : 1,
|
176
|
+
"gameId" : 575986771
|
177
|
+
}, {
|
178
|
+
"kills" : 23,
|
179
|
+
"deaths" : 7,
|
180
|
+
"opposingTeamKills" : 7,
|
181
|
+
"assists" : 45,
|
182
|
+
"gameMode" : "CLASSIC",
|
183
|
+
"opposingTeamName" : "No Fuking Around Okay",
|
184
|
+
"win" : true,
|
185
|
+
"invalid" : false,
|
186
|
+
"mapId" : 1,
|
187
|
+
"gameId" : 575961469
|
188
|
+
}, {
|
189
|
+
"kills" : 20,
|
190
|
+
"deaths" : 10,
|
191
|
+
"opposingTeamKills" : 10,
|
192
|
+
"assists" : 29,
|
193
|
+
"gameMode" : "CLASSIC",
|
194
|
+
"opposingTeamName" : "Tube88",
|
195
|
+
"win" : true,
|
196
|
+
"invalid" : false,
|
197
|
+
"mapId" : 1,
|
198
|
+
"gameId" : 575905727
|
199
|
+
}, {
|
200
|
+
"kills" : 21,
|
201
|
+
"deaths" : 11,
|
202
|
+
"opposingTeamKills" : 11,
|
203
|
+
"assists" : 37,
|
204
|
+
"gameMode" : "CLASSIC",
|
205
|
+
"opposingTeamName" : "Resonate",
|
206
|
+
"win" : true,
|
207
|
+
"invalid" : false,
|
208
|
+
"mapId" : 1,
|
209
|
+
"gameId" : 575441369
|
210
|
+
}, {
|
211
|
+
"kills" : 13,
|
212
|
+
"deaths" : 24,
|
213
|
+
"opposingTeamKills" : 24,
|
214
|
+
"assists" : 27,
|
215
|
+
"gameMode" : "CLASSIC",
|
216
|
+
"opposingTeamName" : "Nobody Important Died",
|
217
|
+
"win" : false,
|
218
|
+
"invalid" : false,
|
219
|
+
"mapId" : 1,
|
220
|
+
"gameId" : 575390058
|
221
|
+
}, {
|
222
|
+
"kills" : 33,
|
223
|
+
"deaths" : 14,
|
224
|
+
"opposingTeamKills" : 14,
|
225
|
+
"assists" : 49,
|
226
|
+
"gameMode" : "CLASSIC",
|
227
|
+
"opposingTeamName" : "DIAMON FIVES PLS",
|
228
|
+
"win" : true,
|
229
|
+
"invalid" : false,
|
230
|
+
"mapId" : 1,
|
231
|
+
"gameId" : 575349088
|
232
|
+
}, {
|
233
|
+
"kills" : 16,
|
234
|
+
"deaths" : 5,
|
235
|
+
"opposingTeamKills" : 5,
|
236
|
+
"assists" : 20,
|
237
|
+
"gameMode" : "CLASSIC",
|
238
|
+
"opposingTeamName" : "Cute Asian Girls",
|
239
|
+
"win" : true,
|
240
|
+
"invalid" : false,
|
241
|
+
"mapId" : 1,
|
242
|
+
"gameId" : 340801031
|
243
|
+
}, {
|
244
|
+
"kills" : 4,
|
245
|
+
"deaths" : 19,
|
246
|
+
"opposingTeamKills" : 18,
|
247
|
+
"assists" : 12,
|
248
|
+
"gameMode" : "CLASSIC",
|
249
|
+
"opposingTeamName" : "HeIIo Kitty",
|
250
|
+
"win" : false,
|
251
|
+
"invalid" : false,
|
252
|
+
"mapId" : 1,
|
253
|
+
"gameId" : 340775336
|
254
|
+
}, {
|
255
|
+
"kills" : 24,
|
256
|
+
"deaths" : 7,
|
257
|
+
"opposingTeamKills" : 7,
|
258
|
+
"assists" : 56,
|
259
|
+
"gameMode" : "CLASSIC",
|
260
|
+
"opposingTeamName" : "Fluid Mechanics",
|
261
|
+
"win" : true,
|
262
|
+
"invalid" : false,
|
263
|
+
"mapId" : 1,
|
264
|
+
"gameId" : 340760658
|
265
|
+
}, {
|
266
|
+
"kills" : 33,
|
267
|
+
"deaths" : 21,
|
268
|
+
"opposingTeamKills" : 21,
|
269
|
+
"assists" : 89,
|
270
|
+
"gameMode" : "CLASSIC",
|
271
|
+
"opposingTeamName" : "Xerox Tryout",
|
272
|
+
"win" : true,
|
273
|
+
"invalid" : false,
|
274
|
+
"mapId" : 1,
|
275
|
+
"gameId" : 340678263
|
276
|
+
} ],
|
277
|
+
"createDate" : 1331623605000,
|
278
|
+
"modifyDate" : 1357872802000,
|
279
|
+
"lastJoinDate" : 1352095978000,
|
280
|
+
"secondLastJoinDate" : 1352095946000,
|
281
|
+
"thirdLastJoinDate" : 1351309219000,
|
282
|
+
"lastGameDate" : 1352190417000,
|
283
|
+
"lastJoinedRankedTeamQueueDate" : 1352188085000
|
284
|
+
}, {
|
285
|
+
"fullId" : "TEAM-e4936d7b-b80e-4367-a76c-5ccf7388c995",
|
286
|
+
"name" : "Team Solo Mid",
|
287
|
+
"tag" : "TSM",
|
288
|
+
"status" : "RANKED",
|
289
|
+
"teamStatSummary" : {
|
290
|
+
"fullId" : "TEAM-e4936d7b-b80e-4367-a76c-5ccf7388c995",
|
291
|
+
"teamStatDetails" : [ {
|
292
|
+
"fullId" : "TEAM-e4936d7b-b80e-4367-a76c-5ccf7388c995",
|
293
|
+
"teamStatType" : "RANKED_TEAM_5x5",
|
294
|
+
"wins" : 32,
|
295
|
+
"losses" : 2,
|
296
|
+
"averageGamesPlayed" : 0
|
297
|
+
}, {
|
298
|
+
"fullId" : "TEAM-e4936d7b-b80e-4367-a76c-5ccf7388c995",
|
299
|
+
"teamStatType" : "RANKED_TEAM_3x3",
|
300
|
+
"wins" : 0,
|
301
|
+
"losses" : 0,
|
302
|
+
"averageGamesPlayed" : 0
|
303
|
+
} ]
|
304
|
+
},
|
305
|
+
"roster" : {
|
306
|
+
"ownerId" : 19199530,
|
307
|
+
"memberList" : [ {
|
308
|
+
"playerId" : 17772,
|
309
|
+
"joinDate" : 1321959007000,
|
310
|
+
"inviteDate" : 1321959007000,
|
311
|
+
"status" : "MEMBER"
|
312
|
+
}, {
|
313
|
+
"playerId" : 19199530,
|
314
|
+
"joinDate" : 1321981014000,
|
315
|
+
"inviteDate" : 1321980026000,
|
316
|
+
"status" : "MEMBER"
|
317
|
+
}, {
|
318
|
+
"playerId" : 60783,
|
319
|
+
"joinDate" : 1321981025000,
|
320
|
+
"inviteDate" : 1321980032000,
|
321
|
+
"status" : "MEMBER"
|
322
|
+
}, {
|
323
|
+
"playerId" : 5908,
|
324
|
+
"joinDate" : 1333592947000,
|
325
|
+
"inviteDate" : 1333592936000,
|
326
|
+
"status" : "MEMBER"
|
327
|
+
}, {
|
328
|
+
"playerId" : 22373365,
|
329
|
+
"joinDate" : 1351234853000,
|
330
|
+
"inviteDate" : 1351234838000,
|
331
|
+
"status" : "MEMBER"
|
332
|
+
}, {
|
333
|
+
"playerId" : 521955,
|
334
|
+
"joinDate" : 1372822629000,
|
335
|
+
"inviteDate" : 1372822610000,
|
336
|
+
"status" : "MEMBER"
|
337
|
+
}, {
|
338
|
+
"playerId" : 11646,
|
339
|
+
"joinDate" : 1380166227000,
|
340
|
+
"inviteDate" : 1380163680000,
|
341
|
+
"status" : "MEMBER"
|
342
|
+
}, {
|
343
|
+
"playerId" : 49159160,
|
344
|
+
"joinDate" : 1383700685000,
|
345
|
+
"inviteDate" : 1383700627000,
|
346
|
+
"status" : "MEMBER"
|
347
|
+
} ]
|
348
|
+
},
|
349
|
+
"matchHistory" : [ {
|
350
|
+
"kills" : 17,
|
351
|
+
"deaths" : 33,
|
352
|
+
"opposingTeamKills" : 33,
|
353
|
+
"assists" : 41,
|
354
|
+
"gameMode" : "CLASSIC",
|
355
|
+
"opposingTeamName" : "LMQ iBUYPOWER",
|
356
|
+
"win" : false,
|
357
|
+
"invalid" : false,
|
358
|
+
"mapId" : 1,
|
359
|
+
"gameId" : 1207277879
|
360
|
+
}, {
|
361
|
+
"kills" : 27,
|
362
|
+
"deaths" : 8,
|
363
|
+
"opposingTeamKills" : 8,
|
364
|
+
"assists" : 57,
|
365
|
+
"gameMode" : "CLASSIC",
|
366
|
+
"opposingTeamName" : "LMQ iBUYPOWER",
|
367
|
+
"win" : true,
|
368
|
+
"invalid" : false,
|
369
|
+
"mapId" : 1,
|
370
|
+
"gameId" : 1207137076
|
371
|
+
}, {
|
372
|
+
"kills" : 27,
|
373
|
+
"deaths" : 16,
|
374
|
+
"opposingTeamKills" : 16,
|
375
|
+
"assists" : 71,
|
376
|
+
"gameMode" : "CLASSIC",
|
377
|
+
"opposingTeamName" : "LMQ iBUYPOWER",
|
378
|
+
"win" : true,
|
379
|
+
"invalid" : false,
|
380
|
+
"mapId" : 1,
|
381
|
+
"gameId" : 1207006497
|
382
|
+
}, {
|
383
|
+
"kills" : 22,
|
384
|
+
"deaths" : 12,
|
385
|
+
"opposingTeamKills" : 12,
|
386
|
+
"assists" : 24,
|
387
|
+
"gameMode" : "CLASSIC",
|
388
|
+
"opposingTeamName" : "mcmaster lol",
|
389
|
+
"win" : true,
|
390
|
+
"invalid" : false,
|
391
|
+
"mapId" : 1,
|
392
|
+
"gameId" : 1147232295
|
393
|
+
}, {
|
394
|
+
"kills" : 29,
|
395
|
+
"deaths" : 12,
|
396
|
+
"opposingTeamKills" : 11,
|
397
|
+
"assists" : 42,
|
398
|
+
"gameMode" : "CLASSIC",
|
399
|
+
"opposingTeamName" : "Baddie support players",
|
400
|
+
"win" : true,
|
401
|
+
"invalid" : false,
|
402
|
+
"mapId" : 1,
|
403
|
+
"gameId" : 1147171411
|
404
|
+
}, {
|
405
|
+
"kills" : 27,
|
406
|
+
"deaths" : 7,
|
407
|
+
"opposingTeamKills" : 7,
|
408
|
+
"assists" : 31,
|
409
|
+
"gameMode" : "CLASSIC",
|
410
|
+
"opposingTeamName" : "Weaving Noodles",
|
411
|
+
"win" : true,
|
412
|
+
"invalid" : false,
|
413
|
+
"mapId" : 1,
|
414
|
+
"gameId" : 1147091274
|
415
|
+
}, {
|
416
|
+
"kills" : 22,
|
417
|
+
"deaths" : 9,
|
418
|
+
"opposingTeamKills" : 9,
|
419
|
+
"assists" : 32,
|
420
|
+
"gameMode" : "CLASSIC",
|
421
|
+
"opposingTeamName" : "Weaving Noodles",
|
422
|
+
"win" : true,
|
423
|
+
"invalid" : false,
|
424
|
+
"mapId" : 1,
|
425
|
+
"gameId" : 1147003840
|
426
|
+
}, {
|
427
|
+
"kills" : 35,
|
428
|
+
"deaths" : 5,
|
429
|
+
"opposingTeamKills" : 5,
|
430
|
+
"assists" : 47,
|
431
|
+
"gameMode" : "CLASSIC",
|
432
|
+
"opposingTeamName" : "IIIIIIIIIII",
|
433
|
+
"win" : true,
|
434
|
+
"invalid" : false,
|
435
|
+
"mapId" : 1,
|
436
|
+
"gameId" : 994529144
|
437
|
+
}, {
|
438
|
+
"kills" : 15,
|
439
|
+
"deaths" : 9,
|
440
|
+
"opposingTeamKills" : 9,
|
441
|
+
"assists" : 33,
|
442
|
+
"gameMode" : "CLASSIC",
|
443
|
+
"opposingTeamName" : "Free wins for you",
|
444
|
+
"win" : true,
|
445
|
+
"invalid" : false,
|
446
|
+
"mapId" : 1,
|
447
|
+
"gameId" : 970209240
|
448
|
+
}, {
|
449
|
+
"kills" : 9,
|
450
|
+
"deaths" : 3,
|
451
|
+
"opposingTeamKills" : 3,
|
452
|
+
"assists" : 11,
|
453
|
+
"gameMode" : "CLASSIC",
|
454
|
+
"opposingTeamName" : "Free wins for you",
|
455
|
+
"win" : true,
|
456
|
+
"invalid" : false,
|
457
|
+
"mapId" : 1,
|
458
|
+
"gameId" : 970182572
|
459
|
+
}, {
|
460
|
+
"kills" : 25,
|
461
|
+
"deaths" : 17,
|
462
|
+
"opposingTeamKills" : 17,
|
463
|
+
"assists" : 41,
|
464
|
+
"gameMode" : "CLASSIC",
|
465
|
+
"opposingTeamName" : "Free wins for you",
|
466
|
+
"win" : true,
|
467
|
+
"invalid" : false,
|
468
|
+
"mapId" : 1,
|
469
|
+
"gameId" : 968664443
|
470
|
+
}, {
|
471
|
+
"kills" : 32,
|
472
|
+
"deaths" : 12,
|
473
|
+
"opposingTeamKills" : 12,
|
474
|
+
"assists" : 63,
|
475
|
+
"gameMode" : "CLASSIC",
|
476
|
+
"opposingTeamName" : "Exertus Zeal",
|
477
|
+
"win" : true,
|
478
|
+
"invalid" : false,
|
479
|
+
"mapId" : 1,
|
480
|
+
"gameId" : 966700967
|
481
|
+
}, {
|
482
|
+
"kills" : 23,
|
483
|
+
"deaths" : 10,
|
484
|
+
"opposingTeamKills" : 10,
|
485
|
+
"assists" : 49,
|
486
|
+
"gameMode" : "CLASSIC",
|
487
|
+
"opposingTeamName" : "Hedgehog Brigade",
|
488
|
+
"win" : true,
|
489
|
+
"invalid" : false,
|
490
|
+
"mapId" : 1,
|
491
|
+
"gameId" : 966640287
|
492
|
+
}, {
|
493
|
+
"kills" : 13,
|
494
|
+
"deaths" : 7,
|
495
|
+
"opposingTeamKills" : 7,
|
496
|
+
"assists" : 28,
|
497
|
+
"gameMode" : "CLASSIC",
|
498
|
+
"opposingTeamName" : "Hashtag GGU",
|
499
|
+
"win" : true,
|
500
|
+
"invalid" : false,
|
501
|
+
"mapId" : 1,
|
502
|
+
"gameId" : 965584626
|
503
|
+
}, {
|
504
|
+
"kills" : 29,
|
505
|
+
"deaths" : 9,
|
506
|
+
"opposingTeamKills" : 9,
|
507
|
+
"assists" : 56,
|
508
|
+
"gameMode" : "CLASSIC",
|
509
|
+
"opposingTeamName" : "Game much Harder",
|
510
|
+
"win" : true,
|
511
|
+
"invalid" : false,
|
512
|
+
"mapId" : 1,
|
513
|
+
"gameId" : 965552381
|
514
|
+
}, {
|
515
|
+
"kills" : 23,
|
516
|
+
"deaths" : 7,
|
517
|
+
"opposingTeamKills" : 7,
|
518
|
+
"assists" : 68,
|
519
|
+
"gameMode" : "CLASSIC",
|
520
|
+
"opposingTeamName" : "Team Wazabi",
|
521
|
+
"win" : true,
|
522
|
+
"invalid" : false,
|
523
|
+
"mapId" : 1,
|
524
|
+
"gameId" : 965277731
|
525
|
+
}, {
|
526
|
+
"kills" : 27,
|
527
|
+
"deaths" : 6,
|
528
|
+
"opposingTeamKills" : 6,
|
529
|
+
"assists" : 65,
|
530
|
+
"gameMode" : "CLASSIC",
|
531
|
+
"opposingTeamName" : "Sugoi Bois",
|
532
|
+
"win" : true,
|
533
|
+
"invalid" : false,
|
534
|
+
"mapId" : 1,
|
535
|
+
"gameId" : 965260820
|
536
|
+
}, {
|
537
|
+
"kills" : 21,
|
538
|
+
"deaths" : 26,
|
539
|
+
"opposingTeamKills" : 26,
|
540
|
+
"assists" : 53,
|
541
|
+
"gameMode" : "CLASSIC",
|
542
|
+
"opposingTeamName" : "Sirens A team",
|
543
|
+
"win" : true,
|
544
|
+
"invalid" : false,
|
545
|
+
"mapId" : 1,
|
546
|
+
"gameId" : 960862132
|
547
|
+
}, {
|
548
|
+
"kills" : 34,
|
549
|
+
"deaths" : 59,
|
550
|
+
"opposingTeamKills" : 59,
|
551
|
+
"assists" : 54,
|
552
|
+
"gameMode" : "CLASSIC",
|
553
|
+
"opposingTeamName" : "c0mplexity Academy",
|
554
|
+
"win" : true,
|
555
|
+
"invalid" : false,
|
556
|
+
"mapId" : 1,
|
557
|
+
"gameId" : 960779917
|
558
|
+
}, {
|
559
|
+
"kills" : 29,
|
560
|
+
"deaths" : 23,
|
561
|
+
"opposingTeamKills" : 23,
|
562
|
+
"assists" : 49,
|
563
|
+
"gameMode" : "CLASSIC",
|
564
|
+
"opposingTeamName" : "Sirens A team",
|
565
|
+
"win" : true,
|
566
|
+
"invalid" : false,
|
567
|
+
"mapId" : 1,
|
568
|
+
"gameId" : 960709062
|
569
|
+
} ],
|
570
|
+
"createDate" : 1321959007000,
|
571
|
+
"modifyDate" : 1387839113000,
|
572
|
+
"lastJoinDate" : 1383700685000,
|
573
|
+
"secondLastJoinDate" : 1380166227000,
|
574
|
+
"thirdLastJoinDate" : 1372822629000,
|
575
|
+
"lastGameDate" : 1387774109000,
|
576
|
+
"lastJoinedRankedTeamQueueDate" : 1387771380000
|
577
|
+
}, {
|
578
|
+
"fullId" : "TEAM-8fc55200-89cd-11e1-b3f5-782bcb4d0bb2",
|
579
|
+
"name" : "Team Autism Unite",
|
580
|
+
"tag" : "tAutU",
|
581
|
+
"status" : "RANKED",
|
582
|
+
"teamStatSummary" : {
|
583
|
+
"fullId" : "TEAM-8fc55200-89cd-11e1-b3f5-782bcb4d0bb2",
|
584
|
+
"teamStatDetails" : [ {
|
585
|
+
"fullId" : "TEAM-8fc55200-89cd-11e1-b3f5-782bcb4d0bb2",
|
586
|
+
"teamStatType" : "RANKED_TEAM_5x5",
|
587
|
+
"wins" : 0,
|
588
|
+
"losses" : 0,
|
589
|
+
"averageGamesPlayed" : 0
|
590
|
+
}, {
|
591
|
+
"fullId" : "TEAM-8fc55200-89cd-11e1-b3f5-782bcb4d0bb2",
|
592
|
+
"teamStatType" : "RANKED_TEAM_3x3",
|
593
|
+
"wins" : 0,
|
594
|
+
"losses" : 0,
|
595
|
+
"averageGamesPlayed" : 0
|
596
|
+
} ]
|
597
|
+
},
|
598
|
+
"roster" : {
|
599
|
+
"ownerId" : 26077457,
|
600
|
+
"memberList" : [ {
|
601
|
+
"playerId" : 26077457,
|
602
|
+
"joinDate" : 1334805177000,
|
603
|
+
"inviteDate" : 1334805177000,
|
604
|
+
"status" : "MEMBER"
|
605
|
+
}, {
|
606
|
+
"playerId" : 28370883,
|
607
|
+
"joinDate" : 1334805259000,
|
608
|
+
"inviteDate" : 1334805242000,
|
609
|
+
"status" : "MEMBER"
|
610
|
+
}, {
|
611
|
+
"playerId" : 5908,
|
612
|
+
"joinDate" : 1334808320000,
|
613
|
+
"inviteDate" : 1334808317000,
|
614
|
+
"status" : "MEMBER"
|
615
|
+
} ]
|
616
|
+
},
|
617
|
+
"matchHistory" : [ {
|
618
|
+
"kills" : 5,
|
619
|
+
"deaths" : 20,
|
620
|
+
"opposingTeamKills" : 20,
|
621
|
+
"assists" : 8,
|
622
|
+
"gameMode" : "CLASSIC",
|
623
|
+
"opposingTeamName" : "Purple piggehs",
|
624
|
+
"win" : false,
|
625
|
+
"invalid" : false,
|
626
|
+
"mapId" : 1,
|
627
|
+
"gameId" : 369708503
|
628
|
+
}, {
|
629
|
+
"kills" : 30,
|
630
|
+
"deaths" : 23,
|
631
|
+
"opposingTeamKills" : 22,
|
632
|
+
"assists" : 54,
|
633
|
+
"gameMode" : "CLASSIC",
|
634
|
+
"opposingTeamName" : "EsHoe",
|
635
|
+
"win" : true,
|
636
|
+
"invalid" : false,
|
637
|
+
"mapId" : 1,
|
638
|
+
"gameId" : 369702637
|
639
|
+
}, {
|
640
|
+
"kills" : 33,
|
641
|
+
"deaths" : 9,
|
642
|
+
"opposingTeamKills" : 9,
|
643
|
+
"assists" : 57,
|
644
|
+
"gameMode" : "CLASSIC",
|
645
|
+
"opposingTeamName" : "The Riders of Brohan",
|
646
|
+
"win" : true,
|
647
|
+
"invalid" : false,
|
648
|
+
"mapId" : 1,
|
649
|
+
"gameId" : 369691455
|
650
|
+
}, {
|
651
|
+
"kills" : 37,
|
652
|
+
"deaths" : 20,
|
653
|
+
"opposingTeamKills" : 20,
|
654
|
+
"assists" : 60,
|
655
|
+
"gameMode" : "CLASSIC",
|
656
|
+
"opposingTeamName" : "Reeg",
|
657
|
+
"win" : true,
|
658
|
+
"invalid" : false,
|
659
|
+
"mapId" : 1,
|
660
|
+
"gameId" : 369673944
|
661
|
+
}, {
|
662
|
+
"kills" : 26,
|
663
|
+
"deaths" : 13,
|
664
|
+
"opposingTeamKills" : 13,
|
665
|
+
"assists" : 56,
|
666
|
+
"gameMode" : "CLASSIC",
|
667
|
+
"opposingTeamName" : "Mascow 5",
|
668
|
+
"win" : true,
|
669
|
+
"invalid" : false,
|
670
|
+
"mapId" : 1,
|
671
|
+
"gameId" : 369648414
|
672
|
+
} ],
|
673
|
+
"createDate" : 1334805177000,
|
674
|
+
"modifyDate" : 1376299401000,
|
675
|
+
"lastJoinDate" : 1334808320000,
|
676
|
+
"lastGameDate" : 1334827212000,
|
677
|
+
"lastJoinedRankedTeamQueueDate" : 1334825146000
|
678
|
+
} ]
|
data/spec/lol/team_spec.rb
CHANGED
@@ -8,7 +8,7 @@ describe Team do
|
|
8
8
|
let(:valid_attributes) { { timestamp: 1 } }
|
9
9
|
end
|
10
10
|
|
11
|
-
%w(message_of_day name status tag timestamp).each do |attribute|
|
11
|
+
%w(full_id message_of_day name status tag timestamp).each do |attribute|
|
12
12
|
describe "#{attribute} attribute" do
|
13
13
|
it_behaves_like 'plain attribute' do
|
14
14
|
let(:attribute) { attribute }
|
@@ -8,7 +8,7 @@ describe TeamStatistic do
|
|
8
8
|
let(:valid_attributes) { { losses: 1 } }
|
9
9
|
end
|
10
10
|
|
11
|
-
%w(average_games_played losses max_rating rating seed_rating team_stat_type wins).each do |attribute|
|
11
|
+
%w(full_id average_games_played losses max_rating rating seed_rating team_stat_type wins).each do |attribute|
|
12
12
|
describe "#{attribute} attribute" do
|
13
13
|
it_behaves_like 'plain attribute' do
|
14
14
|
let(:attribute) { attribute }
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby-lol
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Giovanni Intini
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-12-
|
11
|
+
date: 2013-12-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -290,9 +290,15 @@ files:
|
|
290
290
|
- spec/fixtures/v1.2/get-game.json
|
291
291
|
- spec/fixtures/v1.2/get-ranked_stats.json
|
292
292
|
- spec/fixtures/v1.2/get-stats.json
|
293
|
+
- spec/fixtures/v1.2/get-summoner-by-name.json
|
294
|
+
- spec/fixtures/v1.2/get-summoner-masteries.json
|
295
|
+
- spec/fixtures/v1.2/get-summoner-name.json
|
296
|
+
- spec/fixtures/v1.2/get-summoner-runes.json
|
297
|
+
- spec/fixtures/v1.2/get-summoner.json
|
293
298
|
- spec/fixtures/v2.1/get-league.json
|
294
299
|
- spec/fixtures/v2.1/get-team.json
|
295
300
|
- spec/fixtures/v2.2/get-league.json
|
301
|
+
- spec/fixtures/v2.2/get-team.json
|
296
302
|
- spec/lol/champion_request_spec.rb
|
297
303
|
- spec/lol/champion_spec.rb
|
298
304
|
- spec/lol/champion_statistics_summary_spec.rb
|
@@ -363,9 +369,15 @@ test_files:
|
|
363
369
|
- spec/fixtures/v1.2/get-game.json
|
364
370
|
- spec/fixtures/v1.2/get-ranked_stats.json
|
365
371
|
- spec/fixtures/v1.2/get-stats.json
|
372
|
+
- spec/fixtures/v1.2/get-summoner-by-name.json
|
373
|
+
- spec/fixtures/v1.2/get-summoner-masteries.json
|
374
|
+
- spec/fixtures/v1.2/get-summoner-name.json
|
375
|
+
- spec/fixtures/v1.2/get-summoner-runes.json
|
376
|
+
- spec/fixtures/v1.2/get-summoner.json
|
366
377
|
- spec/fixtures/v2.1/get-league.json
|
367
378
|
- spec/fixtures/v2.1/get-team.json
|
368
379
|
- spec/fixtures/v2.2/get-league.json
|
380
|
+
- spec/fixtures/v2.2/get-team.json
|
369
381
|
- spec/lol/champion_request_spec.rb
|
370
382
|
- spec/lol/champion_spec.rb
|
371
383
|
- spec/lol/champion_statistics_summary_spec.rb
|