smite_ruby 1.4.5 → 1.4.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ module Smite
2
+ class MatchAchievements < Smite::Object
3
+ def inspect
4
+ "#<Smite::MatchAchievements #{match} '#{player_name}'>"
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,31 @@
1
+ module Smite
2
+ class MatchSummary < Smite::Object
3
+ def initialize(data)
4
+ super
5
+ @data = DataTransform.transform_gods(@data)
6
+ @data = DataTransform.transform_items(@data)
7
+ @data = DataTransform.transform_match_summary(@data)
8
+ end
9
+
10
+ def to_full_match
11
+ Smite::Game.match(match)
12
+ end
13
+ alias_method :full_match, :to_full_match
14
+
15
+ def win?
16
+ win_status == 'Win'
17
+ end
18
+
19
+ def loss?
20
+ !win?
21
+ end
22
+
23
+ def id
24
+ match
25
+ end
26
+
27
+ def inspect
28
+ "#<Smite::MatchSummary #{match} '#{queue}' (#{win_status})>"
29
+ end
30
+ end
31
+ end
@@ -2,9 +2,9 @@ module Smite
2
2
  class Player < Smite::Object
3
3
  attr_reader :player_name
4
4
 
5
- def initialize(player_name)
6
- @player_name = player_name
7
- super(Smite::Game.client.player(player_name)[0])
5
+ def initialize(data)
6
+ super(data)
7
+ @player_name = name.match(/\A(\[.+?\])?(.+)/)[2]
8
8
  end
9
9
 
10
10
  def friends
@@ -26,7 +26,7 @@ module Smite
26
26
  return @history unless @history.nil?
27
27
 
28
28
  @history = Smite::Game.client.match_history(player_name)
29
- @history.map!(&RecentMatch.method(:new))
29
+ @history.map!(&MatchSummary.method(:new))
30
30
  end
31
31
 
32
32
  def achievements
@@ -1,8 +1,8 @@
1
1
  $:.push File.expand_path("../lib", __FILE__)
2
2
  Gem::Specification.new do |s|
3
3
  s.name = 'smite_ruby'
4
- s.version = '1.4.5'
5
- s.date = '2016-02-01'
4
+ s.version = '1.4.6'
5
+ s.date = '2016-02-08'
6
6
  s.summary = 'Ruby Smite API'
7
7
  s.description = 'Ruby Client for consuming the Smite API'
8
8
  s.authors = ['NcUltimate']
@@ -1,7 +1,8 @@
1
1
  require 'spec_helper'
2
2
 
3
3
  RSpec.describe Smite::Ability do
4
- it 'tests' do
4
+ let(:agni) { Smite::Game.god('Agni') }
5
+ let(:smite_obj) { agni.abilities[0] }
5
6
 
6
- end
7
+ it_behaves_like 'a Smite::Object'
7
8
  end
@@ -1,7 +1,8 @@
1
1
  require 'spec_helper'
2
2
 
3
3
  RSpec.describe Smite::Achievements do
4
- it 'tests' do
4
+ let(:player) { Smite::Game.player('adapting') }
5
+ let(:smite_obj) { player.achievements }
5
6
 
6
- end
7
+ it_behaves_like 'a Smite::Object'
7
8
  end
@@ -28,7 +28,7 @@ RSpec.describe Smite::Client do
28
28
  end
29
29
 
30
30
  it 'returns false if the session is not created' do
31
- allow(client).to receive(:test_session).and_return('failure')
31
+ allow(client).to receive(:created).and_return(Time.now - 20 * 60)
32
32
  expect(client.valid_session?).to eq(false)
33
33
  end
34
34
  end
@@ -36,10 +36,7 @@ RSpec.describe Smite::Client do
36
36
  describe '#create_session' do
37
37
  let(:client) { described_class.new(dev_id, auth_key) }
38
38
 
39
- it 'sets the session_id if unset' do
40
- allow(client).to receive(:valid_session?).and_return(false)
41
- expect(client.session_id).to be_nil
42
- client.create_session
39
+ it 'sets the session_id on initialize' do
43
40
  expect(client.session_id).not_to be_nil
44
41
  end
45
42
 
@@ -1,7 +1,14 @@
1
1
  require 'spec_helper'
2
2
 
3
3
  RSpec.describe Smite::Friend do
4
- it 'tests' do
4
+ let(:player) { Smite::Game.player('adapting') }
5
+ let(:smite_obj) { player.friends[0] }
5
6
 
7
+ describe '#to_player' do
8
+ it 'returns a Smite::Player instance of this friend' do
9
+ expect(smite_obj.to_player.class).to eq(Smite::Player)
10
+ end
6
11
  end
12
+
13
+ it_behaves_like 'a Smite::Object'
7
14
  end
@@ -1,6 +1,6 @@
1
1
  require 'spec_helper'
2
2
 
3
- RSpec.describe Smite::Match do
3
+ RSpec.describe Smite::FullMatch do
4
4
  it 'tests' do
5
5
 
6
6
  end
@@ -1,12 +1,10 @@
1
1
  require 'spec_helper'
2
2
 
3
3
  RSpec.describe Smite::Game do
4
- let(:dev_id) { 1234 }
5
- let(:auth_key) { 'ABCD' }
6
-
7
- before { Smite::Game.authenticate!(dev_id, auth_key) }
8
-
9
4
  describe '#authenticate!' do
5
+ let(:dev_id) { 1234 }
6
+ let(:auth_key) { 'ABCD' }
7
+
10
8
  it 'returns true if the client initialized a session' do
11
9
  client = Smite::Client.new(dev_id, auth_key)
12
10
  allow(client).to receive(:session_id).and_return('ABCDE')
@@ -26,7 +24,7 @@ RSpec.describe Smite::Game do
26
24
 
27
25
  describe '#devices' do
28
26
  it 'returns a list of Smite::Items' do
29
- expect(Smite::Game.devices.count).to eq(3)
27
+ expect(Smite::Game.devices.count).to eq(6)
30
28
  Smite::Game.devices.each do |device|
31
29
  expect(device.class).to eq(Smite::Item)
32
30
  end
@@ -83,7 +81,7 @@ RSpec.describe Smite::Game do
83
81
 
84
82
  describe '#gods' do
85
83
  it 'returns a list of Smite::God' do
86
- expect(Smite::Game.gods.count).to eq(1)
84
+ expect(Smite::Game.gods.count).to eq(3)
87
85
  Smite::Game.gods.each do |god|
88
86
  expect(god.class).to eq(Smite::God)
89
87
  end
@@ -1,7 +1,60 @@
1
1
  require 'spec_helper'
2
2
 
3
3
  RSpec.describe Smite::GodRank do
4
- it 'tests' do
4
+ let(:player) { Smite::Game.player('adapting') }
5
+ let(:smite_obj) { player.god_ranks[0] }
5
6
 
7
+ describe '#level' do
8
+ let(:rank_map) do
9
+ {
10
+ 0 => 'none',
11
+ 1 => 'gold',
12
+ 2 => 'gold',
13
+ 3 => 'gold',
14
+ 4 => 'gold',
15
+ 5 => 'legendary',
16
+ 6 => 'legendary',
17
+ 7 => 'legendary',
18
+ 8 => 'legendary',
19
+ 9 => 'legendary',
20
+ 10 => 'diamond'
21
+ }
22
+ end
23
+
24
+ it 'returns the correct rank for each god level' do
25
+ rank_map.each do |rank, level|
26
+ allow(smite_obj).to receive(:rank).and_return(rank)
27
+ expect(smite_obj.level).to eq(level)
28
+ end
29
+ end
30
+ end
31
+
32
+ describe '#mastery' do
33
+ it 'returns unmastered for rank 0' do
34
+ allow(smite_obj).to receive(:rank).and_return(0)
35
+ expect(smite_obj.mastery).to eq('unmastered')
36
+ end
37
+
38
+ it 'returns mastered for all other ranks' do
39
+ (1..10).each do |rank|
40
+ allow(smite_obj).to receive(:rank).and_return(rank)
41
+ expect(smite_obj.mastery).to eq('mastered')
42
+ end
43
+ end
6
44
  end
45
+
46
+ describe '#mastered?' do
47
+ it 'returns true if the rank is > 0' do
48
+ (1..10).each do |rank|
49
+ allow(smite_obj).to receive(:rank).and_return(rank)
50
+ expect(smite_obj.mastered?).to eq(true)
51
+ end
52
+ end
53
+ it 'returns false if the rank is == 0' do
54
+ allow(smite_obj).to receive(:rank).and_return(0)
55
+ expect(smite_obj.mastered?).to eq(false)
56
+ end
57
+ end
58
+
59
+ it_behaves_like 'a Smite::Object'
7
60
  end
@@ -6,8 +6,6 @@ RSpec.describe Smite::God do
6
6
  let(:agni) { Smite::Game.god('Agni') }
7
7
  let(:smite_obj) { agni }
8
8
 
9
- before { Smite::Game.authenticate!(1234, 'ABCD') }
10
-
11
9
  describe '#on_free_rotation?' do
12
10
  it 'returns true if not empty' do
13
11
  expect(agni.on_free_rotation?).to eq(true)
@@ -1,7 +1,62 @@
1
1
  require 'spec_helper'
2
2
 
3
3
  RSpec.describe Smite::GodStats do
4
- it 'tests' do
4
+ let(:agni) { Smite::Game.god('agni') }
5
+ let(:smite_obj) { agni.stats }
6
+ let(:items) do
7
+ [
8
+ Smite::Game.item('Soul Reaver'),
9
+ Smite::Game.item('Sovereignty')
10
+ ]
11
+ end
12
+
13
+ describe '#initialize' do
14
+ it 'bounds the level between 1 and 20' do
15
+ expect(smite_obj.at_level(300).level).to eq(19)
16
+ expect(smite_obj.at_level(-300).level).to eq(0)
17
+ end
18
+ end
5
19
 
20
+ describe '#at_level' do
21
+ it 'returns a new instance of GodStats at the given level' do
22
+ new_stats = smite_obj.at_level(10)
23
+ expect(new_stats.level).to eq(9)
24
+ end
6
25
  end
26
+
27
+ describe '#with_items' do
28
+ it 'returns a new instance of GodStats with the given items' do
29
+ new_stats = smite_obj.with_items(items)
30
+ expect(new_stats.items).to eq(items)
31
+ end
32
+ end
33
+
34
+ def scaling_calc(stats, attribute)
35
+ from_items = stats.bonus_from_items[attribute.to_sym]
36
+ base = stats.data[attribute]
37
+ scaling = stats.send("#{attribute}_per_level".to_sym).to_f
38
+ scaling *= stats.level.to_f
39
+
40
+ from_items + base + scaling.to_i
41
+ end
42
+
43
+ %w[ movement_speed health mana
44
+ mp5 hp5 attack_speed magical_power
45
+ magic_protection physical_power physical_protection ].each do |attr|
46
+
47
+ describe "##{attr}" do
48
+ it 'returns the base stats at level 0' do
49
+ scaling = scaling_calc(smite_obj, attr)
50
+ expect(smite_obj.send(attr.to_sym)).to eq(scaling)
51
+ end
52
+
53
+ it 'returns the scaled stats with items' do
54
+ new_obj = smite_obj.at_level(20).with_items(items)
55
+ scaling = scaling_calc(new_obj, attr)
56
+ expect(new_obj.send(attr.to_sym)).to eq(scaling)
57
+ end
58
+ end
59
+ end
60
+
61
+ it_behaves_like 'a Smite::Object'
7
62
  end
@@ -1,7 +1,19 @@
1
1
  require 'spec_helper'
2
2
 
3
3
  RSpec.describe Smite::ItemEffect do
4
- it 'tests' do
4
+ let(:item) { Smite::Game.item('Sovereignty') }
5
+ let(:smite_obj) { item.effects[0] }
5
6
 
7
+ describe '#percentage?' do
8
+ it 'returns true if the effect is percentage based' do
9
+ allow(smite_obj).to receive(:percentage).and_return(40)
10
+ expect(smite_obj.percentage?).to eq(true)
11
+ end
12
+ it 'returns false if the effect is not percentage based' do
13
+ allow(smite_obj).to receive(:percentage).and_return(nil)
14
+ expect(smite_obj.percentage?).to eq(false)
15
+ end
6
16
  end
17
+
18
+ it_behaves_like 'a Smite::Object'
7
19
  end
@@ -9,8 +9,6 @@ RSpec.describe Smite::Item do
9
9
  let(:potion) { Smite::Game.item('Potion of Magical Might') }
10
10
  let(:smite_obj) { sovereignty }
11
11
 
12
- before { Smite::Game.authenticate!(1234, 'ABCD') }
13
-
14
12
  describe '#active?' do
15
13
  it 'returns true if the device is an active' do
16
14
  expect(aegis.active?).to eq(true)
@@ -0,0 +1,28 @@
1
+ require 'spec_helper'
2
+
3
+ RSpec.describe Smite::MatchSummary do
4
+ let(:player) { Smite::Game.player('adapting') }
5
+ let(:smite_obj) { player.match_history[0] }
6
+
7
+ describe '#to_full_match' do
8
+ it 'returns a Smite::FullMatch version of this object' do
9
+ expect(smite_obj.to_full_match.class).to eq(Smite::FullMatch)
10
+ end
11
+
12
+ it 'is also known as #full_match' do
13
+ expect(smite_obj).to respond_to(:full_match)
14
+ end
15
+ end
16
+
17
+ describe '#win?' do
18
+ it 'returns true if the match was a win' do
19
+ expect(smite_obj.win?).to eq(true)
20
+ end
21
+ it 'returns false if the match was a loss' do
22
+ allow(smite_obj).to receive(:win_status).and_return('Loss')
23
+ expect(smite_obj.win?).to eq(false)
24
+ end
25
+ end
26
+
27
+ it_behaves_like 'a Smite::Object'
28
+ end
@@ -4,8 +4,6 @@ RSpec.describe Smite::Player do
4
4
  let(:player) { Smite::Game.player('adapting') }
5
5
  let(:smite_obj) { player }
6
6
 
7
- before { Smite::Game.authenticate!(1234, 'ABCD') }
8
-
9
7
  describe '#friends' do
10
8
  it 'only includes friends with a non-empty name' do
11
9
  expect(player.friends.count).to eq(5)
@@ -45,16 +43,16 @@ RSpec.describe Smite::Player do
45
43
  end
46
44
 
47
45
  describe '#match_history' do
48
- it 'creates new Smite::RecentMatch objects' do
46
+ it 'creates new Smite::MatchSummary objects' do
49
47
  player.match_history.each do |match|
50
- expect(match.class).to eq(Smite::RecentMatch)
48
+ expect(match.class).to eq(Smite::MatchSummary)
51
49
  end
52
50
  end
53
51
 
54
52
  it 'caches the match_history' do
55
53
  player.match_history
56
54
  expect(Smite::Game.client).not_to receive(:match_history)
57
- expect(Smite::RecentMatch).not_to receive(:new)
55
+ expect(Smite::MatchSummary).not_to receive(:new)
58
56
  player.match_history
59
57
  end
60
58
  end
@@ -1 +1,861 @@
1
-
1
+ [
2
+ {
3
+ "Account_Level" : 30,
4
+ "ActiveId1" : 8879,
5
+ "ActiveId2" : 7353,
6
+ "Assists" : 15,
7
+ "Camps_Cleared" : 1,
8
+ "Conquest_Losses" : 0,
9
+ "Conquest_Points" : 0,
10
+ "Conquest_Tier" : 0,
11
+ "Conquest_Wins" : 0,
12
+ "Damage_Bot" : 34277,
13
+ "Damage_Done_Magical" : 63759,
14
+ "Damage_Done_Physical" : 0,
15
+ "Damage_Mitigated" : 8997,
16
+ "Damage_Player" : 29482,
17
+ "Damage_Taken" : 22178,
18
+ "Deaths" : 2,
19
+ "Duel_Losses" : 0,
20
+ "Duel_Points" : 0,
21
+ "Duel_Tier" : 0,
22
+ "Duel_Wins" : 0,
23
+ "Entry_Datetime" : "2/5/2016 2:27:41 AM",
24
+ "Final_Match_Level" : 20,
25
+ "GodId" : 1920,
26
+ "Gold_Earned" : 16400,
27
+ "Gold_Per_Minute" : 911,
28
+ "Healing" : 0,
29
+ "ItemId1" : 7917,
30
+ "ItemId2" : 9633,
31
+ "ItemId3" : 7784,
32
+ "ItemId4" : 12670,
33
+ "ItemId5" : 12666,
34
+ "ItemId6" : 9861,
35
+ "Item_Active_1" : "Purification",
36
+ "Item_Active_2" : "Sprint",
37
+ "Item_Active_3" : "",
38
+ "Item_Purch_1" : "Warlock's Sash",
39
+ "Item_Purch_2" : "Shoes of the Magi",
40
+ "Item_Purch_3" : "Chronos' Pendant",
41
+ "Item_Purch_4" : "Spear of Desolation",
42
+ "Item_Purch_5" : "Mantle of Discord",
43
+ "Item_Purch_6" : "Restored Artifact",
44
+ "Joust_Losses" : 0,
45
+ "Joust_Points" : 0,
46
+ "Joust_Tier" : 0,
47
+ "Joust_Wins" : 0,
48
+ "Killing_Spree" : 7,
49
+ "Kills_Bot" : 74,
50
+ "Kills_Double" : 1,
51
+ "Kills_Fire_Giant" : 0,
52
+ "Kills_First_Blood" : 1,
53
+ "Kills_Gold_Fury" : 0,
54
+ "Kills_Penta" : 0,
55
+ "Kills_Phoenix" : 0,
56
+ "Kills_Player" : 11,
57
+ "Kills_Quadra" : 0,
58
+ "Kills_Siege_Juggernaut" : 0,
59
+ "Kills_Single" : 10,
60
+ "Kills_Triple" : 0,
61
+ "Kills_Wild_Juggernaut" : 0,
62
+ "Mastery_Level" : 51,
63
+ "Match" : 222171635,
64
+ "Minutes" : 18,
65
+ "Multi_kill_Max" : 2,
66
+ "PartyId" : 0,
67
+ "Rank_Stat_Conquest" : 0,
68
+ "Rank_Stat_Duel" : 0,
69
+ "Rank_Stat_Joust" : 0,
70
+ "Reference_Name" : "Chronos",
71
+ "Skin" : "Chronos",
72
+ "SkinId" : 8947,
73
+ "Structure_Damage" : 0,
74
+ "Surrendered" : null,
75
+ "Team1Score" : 19,
76
+ "Team2Score" : 0,
77
+ "TeamId" : 616509,
78
+ "Team_Name" : "SonsOfIniquity",
79
+ "Towers_Destroyed" : 0,
80
+ "Wards_Placed" : 0,
81
+ "Win_Status" : "Winner",
82
+ "hasReplay" : "n",
83
+ "name" : "Normal: Arena",
84
+ "playerId" : "2784051",
85
+ "playerName" : "Adapting",
86
+ "ret_msg" : null
87
+ },
88
+ {
89
+ "Account_Level" : 30,
90
+ "ActiveId1" : 8879,
91
+ "ActiveId2" : 7672,
92
+ "Assists" : 15,
93
+ "Camps_Cleared" : 1,
94
+ "Conquest_Losses" : 0,
95
+ "Conquest_Points" : 0,
96
+ "Conquest_Tier" : 0,
97
+ "Conquest_Wins" : 0,
98
+ "Damage_Bot" : 53304,
99
+ "Damage_Done_Magical" : 79223,
100
+ "Damage_Done_Physical" : 0,
101
+ "Damage_Mitigated" : 4050,
102
+ "Damage_Player" : 25919,
103
+ "Damage_Taken" : 13174,
104
+ "Deaths" : 5,
105
+ "Duel_Losses" : 0,
106
+ "Duel_Points" : 0,
107
+ "Duel_Tier" : 0,
108
+ "Duel_Wins" : 0,
109
+ "Entry_Datetime" : "2/5/2016 2:27:41 AM",
110
+ "Final_Match_Level" : 20,
111
+ "GodId" : 1918,
112
+ "Gold_Earned" : 14544,
113
+ "Gold_Per_Minute" : 808,
114
+ "Healing" : 306,
115
+ "ItemId1" : 9633,
116
+ "ItemId2" : 7924,
117
+ "ItemId3" : 8354,
118
+ "ItemId4" : 7784,
119
+ "ItemId5" : 8551,
120
+ "ItemId6" : 9851,
121
+ "Item_Active_1" : "Purification",
122
+ "Item_Active_2" : "Sanctuary",
123
+ "Item_Active_3" : "",
124
+ "Item_Purch_1" : "Shoes of the Magi",
125
+ "Item_Purch_2" : "Doom Orb",
126
+ "Item_Purch_3" : "Spear of the Magus",
127
+ "Item_Purch_4" : "Chronos' Pendant",
128
+ "Item_Purch_5" : "Bancroft's Talon",
129
+ "Item_Purch_6" : "Enchanted Spear",
130
+ "Joust_Losses" : 0,
131
+ "Joust_Points" : 0,
132
+ "Joust_Tier" : 0,
133
+ "Joust_Wins" : 0,
134
+ "Killing_Spree" : 3,
135
+ "Kills_Bot" : 131,
136
+ "Kills_Double" : 1,
137
+ "Kills_Fire_Giant" : 0,
138
+ "Kills_First_Blood" : 0,
139
+ "Kills_Gold_Fury" : 0,
140
+ "Kills_Penta" : 0,
141
+ "Kills_Phoenix" : 0,
142
+ "Kills_Player" : 5,
143
+ "Kills_Quadra" : 0,
144
+ "Kills_Siege_Juggernaut" : 0,
145
+ "Kills_Single" : 4,
146
+ "Kills_Triple" : 0,
147
+ "Kills_Wild_Juggernaut" : 0,
148
+ "Mastery_Level" : 72,
149
+ "Match" : 222171635,
150
+ "Minutes" : 18,
151
+ "Multi_kill_Max" : 2,
152
+ "PartyId" : 0,
153
+ "Rank_Stat_Conquest" : 0,
154
+ "Rank_Stat_Duel" : 0,
155
+ "Rank_Stat_Joust" : 0,
156
+ "Reference_Name" : "Isis",
157
+ "Skin" : "Golden",
158
+ "SkinId" : 9319,
159
+ "Structure_Damage" : 0,
160
+ "Surrendered" : null,
161
+ "Team1Score" : 19,
162
+ "Team2Score" : 0,
163
+ "TeamId" : 122425,
164
+ "Team_Name" : "Churl Squad",
165
+ "Towers_Destroyed" : 0,
166
+ "Wards_Placed" : 0,
167
+ "Win_Status" : "Winner",
168
+ "hasReplay" : "n",
169
+ "name" : "Normal: Arena",
170
+ "playerId" : "1039739",
171
+ "playerName" : "[Churl]ConchSense",
172
+ "ret_msg" : null
173
+ },
174
+ {
175
+ "Account_Level" : 30,
176
+ "ActiveId1" : 8879,
177
+ "ActiveId2" : 7353,
178
+ "Assists" : 15,
179
+ "Camps_Cleared" : 0,
180
+ "Conquest_Losses" : 0,
181
+ "Conquest_Points" : 0,
182
+ "Conquest_Tier" : 0,
183
+ "Conquest_Wins" : 0,
184
+ "Damage_Bot" : 24809,
185
+ "Damage_Done_Magical" : 0,
186
+ "Damage_Done_Physical" : 43550,
187
+ "Damage_Mitigated" : 5101,
188
+ "Damage_Player" : 18741,
189
+ "Damage_Taken" : 16060,
190
+ "Deaths" : 7,
191
+ "Duel_Losses" : 0,
192
+ "Duel_Points" : 0,
193
+ "Duel_Tier" : 0,
194
+ "Duel_Wins" : 0,
195
+ "Entry_Datetime" : "2/5/2016 2:27:41 AM",
196
+ "Final_Match_Level" : 20,
197
+ "GodId" : 2002,
198
+ "Gold_Earned" : 13917,
199
+ "Gold_Per_Minute" : 773,
200
+ "Healing" : 0,
201
+ "ItemId1" : 9626,
202
+ "ItemId2" : 9236,
203
+ "ItemId3" : 10664,
204
+ "ItemId4" : 7575,
205
+ "ItemId5" : 8546,
206
+ "ItemId6" : 7545,
207
+ "Item_Active_1" : "Purification",
208
+ "Item_Active_2" : "Sprint",
209
+ "Item_Active_3" : "",
210
+ "Item_Purch_1" : "Warrior Tabi",
211
+ "Item_Purch_2" : "Bloodforge",
212
+ "Item_Purch_3" : "Ichaival",
213
+ "Item_Purch_4" : "The Executioner",
214
+ "Item_Purch_5" : "Rage",
215
+ "Item_Purch_6" : "Deathbringer",
216
+ "Joust_Losses" : 0,
217
+ "Joust_Points" : 0,
218
+ "Joust_Tier" : 0,
219
+ "Joust_Wins" : 0,
220
+ "Killing_Spree" : 2,
221
+ "Kills_Bot" : 56,
222
+ "Kills_Double" : 0,
223
+ "Kills_Fire_Giant" : 0,
224
+ "Kills_First_Blood" : 0,
225
+ "Kills_Gold_Fury" : 0,
226
+ "Kills_Penta" : 0,
227
+ "Kills_Phoenix" : 0,
228
+ "Kills_Player" : 5,
229
+ "Kills_Quadra" : 0,
230
+ "Kills_Siege_Juggernaut" : 0,
231
+ "Kills_Single" : 5,
232
+ "Kills_Triple" : 0,
233
+ "Kills_Wild_Juggernaut" : 0,
234
+ "Mastery_Level" : 14,
235
+ "Match" : 222171635,
236
+ "Minutes" : 18,
237
+ "Multi_kill_Max" : 1,
238
+ "PartyId" : 0,
239
+ "Rank_Stat_Conquest" : 0,
240
+ "Rank_Stat_Duel" : 0,
241
+ "Rank_Stat_Joust" : 0,
242
+ "Reference_Name" : "Rama",
243
+ "Skin" : "Orbital Strike",
244
+ "SkinId" : 10744,
245
+ "Structure_Damage" : 0,
246
+ "Surrendered" : null,
247
+ "Team1Score" : 19,
248
+ "Team2Score" : 0,
249
+ "TeamId" : 0,
250
+ "Team_Name" : "",
251
+ "Towers_Destroyed" : 0,
252
+ "Wards_Placed" : 0,
253
+ "Win_Status" : "Winner",
254
+ "hasReplay" : "n",
255
+ "name" : "Normal: Arena",
256
+ "playerId" : "0",
257
+ "playerName" : "",
258
+ "ret_msg" : null
259
+ },
260
+ {
261
+ "Account_Level" : 30,
262
+ "ActiveId1" : 8879,
263
+ "ActiveId2" : 9041,
264
+ "Assists" : 19,
265
+ "Camps_Cleared" : 6,
266
+ "Conquest_Losses" : 4,
267
+ "Conquest_Points" : 0,
268
+ "Conquest_Tier" : 8,
269
+ "Conquest_Wins" : 6,
270
+ "Damage_Bot" : 18395,
271
+ "Damage_Done_Magical" : 0,
272
+ "Damage_Done_Physical" : 35892,
273
+ "Damage_Mitigated" : 4733,
274
+ "Damage_Player" : 17497,
275
+ "Damage_Taken" : 11090,
276
+ "Deaths" : 1,
277
+ "Duel_Losses" : 0,
278
+ "Duel_Points" : 0,
279
+ "Duel_Tier" : 0,
280
+ "Duel_Wins" : 0,
281
+ "Entry_Datetime" : "2/5/2016 2:27:41 AM",
282
+ "Final_Match_Level" : 20,
283
+ "GodId" : 1943,
284
+ "Gold_Earned" : 13879,
285
+ "Gold_Per_Minute" : 771,
286
+ "Healing" : 400,
287
+ "ItemId1" : 9626,
288
+ "ItemId2" : 12665,
289
+ "ItemId3" : 7904,
290
+ "ItemId4" : 7641,
291
+ "ItemId5" : 12680,
292
+ "ItemId6" : 9364,
293
+ "Item_Active_1" : "Purification",
294
+ "Item_Active_2" : "Meditation",
295
+ "Item_Active_3" : "",
296
+ "Item_Purch_1" : "Warrior Tabi",
297
+ "Item_Purch_2" : "Gauntlet of Thebes",
298
+ "Item_Purch_3" : "Jotunn's Wrath",
299
+ "Item_Purch_4" : "Breastplate of Valor",
300
+ "Item_Purch_5" : "Heartseeker",
301
+ "Item_Purch_6" : "Pestilence",
302
+ "Joust_Losses" : 0,
303
+ "Joust_Points" : 0,
304
+ "Joust_Tier" : 0,
305
+ "Joust_Wins" : 0,
306
+ "Killing_Spree" : 2,
307
+ "Kills_Bot" : 39,
308
+ "Kills_Double" : 0,
309
+ "Kills_Fire_Giant" : 0,
310
+ "Kills_First_Blood" : 0,
311
+ "Kills_Gold_Fury" : 0,
312
+ "Kills_Penta" : 0,
313
+ "Kills_Phoenix" : 0,
314
+ "Kills_Player" : 3,
315
+ "Kills_Quadra" : 0,
316
+ "Kills_Siege_Juggernaut" : 0,
317
+ "Kills_Single" : 3,
318
+ "Kills_Triple" : 0,
319
+ "Kills_Wild_Juggernaut" : 0,
320
+ "Mastery_Level" : 70,
321
+ "Match" : 222171635,
322
+ "Minutes" : 18,
323
+ "Multi_kill_Max" : 1,
324
+ "PartyId" : 0,
325
+ "Rank_Stat_Conquest" : 0,
326
+ "Rank_Stat_Duel" : 0,
327
+ "Rank_Stat_Joust" : 0,
328
+ "Reference_Name" : "Thanatos",
329
+ "Skin" : "Thanatos",
330
+ "SkinId" : 9224,
331
+ "Structure_Damage" : 0,
332
+ "Surrendered" : null,
333
+ "Team1Score" : 19,
334
+ "Team2Score" : 0,
335
+ "TeamId" : 0,
336
+ "Team_Name" : "",
337
+ "Towers_Destroyed" : 0,
338
+ "Wards_Placed" : 0,
339
+ "Win_Status" : "Winner",
340
+ "hasReplay" : "n",
341
+ "name" : "Normal: Arena",
342
+ "playerId" : "4394892",
343
+ "playerName" : "WarVulcan",
344
+ "ret_msg" : null
345
+ },
346
+ {
347
+ "Account_Level" : 30,
348
+ "ActiveId1" : 7672,
349
+ "ActiveId2" : 8879,
350
+ "Assists" : 17,
351
+ "Camps_Cleared" : 4,
352
+ "Conquest_Losses" : 0,
353
+ "Conquest_Points" : 0,
354
+ "Conquest_Tier" : 0,
355
+ "Conquest_Wins" : 0,
356
+ "Damage_Bot" : 35655,
357
+ "Damage_Done_Magical" : 0,
358
+ "Damage_Done_Physical" : 64497,
359
+ "Damage_Mitigated" : 7484,
360
+ "Damage_Player" : 28842,
361
+ "Damage_Taken" : 22184,
362
+ "Deaths" : 6,
363
+ "Duel_Losses" : 0,
364
+ "Duel_Points" : 0,
365
+ "Duel_Tier" : 0,
366
+ "Duel_Wins" : 0,
367
+ "Entry_Datetime" : "2/5/2016 2:27:41 AM",
368
+ "Final_Match_Level" : 20,
369
+ "GodId" : 1748,
370
+ "Gold_Earned" : 13761,
371
+ "Gold_Per_Minute" : 764,
372
+ "Healing" : 0,
373
+ "ItemId1" : 10664,
374
+ "ItemId2" : 9236,
375
+ "ItemId3" : 9626,
376
+ "ItemId4" : 9396,
377
+ "ItemId5" : 7545,
378
+ "ItemId6" : 12672,
379
+ "Item_Active_1" : "Sanctuary",
380
+ "Item_Active_2" : "Purification",
381
+ "Item_Active_3" : "",
382
+ "Item_Purch_1" : "Ichaival",
383
+ "Item_Purch_2" : "Bloodforge",
384
+ "Item_Purch_3" : "Warrior Tabi",
385
+ "Item_Purch_4" : "Hastened Fatalis",
386
+ "Item_Purch_5" : "Deathbringer",
387
+ "Item_Purch_6" : "Thousand Fold Blade",
388
+ "Joust_Losses" : 0,
389
+ "Joust_Points" : 0,
390
+ "Joust_Tier" : 0,
391
+ "Joust_Wins" : 0,
392
+ "Killing_Spree" : 2,
393
+ "Kills_Bot" : 90,
394
+ "Kills_Double" : 1,
395
+ "Kills_Fire_Giant" : 0,
396
+ "Kills_First_Blood" : 0,
397
+ "Kills_Gold_Fury" : 0,
398
+ "Kills_Penta" : 0,
399
+ "Kills_Phoenix" : 0,
400
+ "Kills_Player" : 3,
401
+ "Kills_Quadra" : 0,
402
+ "Kills_Siege_Juggernaut" : 0,
403
+ "Kills_Single" : 2,
404
+ "Kills_Triple" : 0,
405
+ "Kills_Wild_Juggernaut" : 0,
406
+ "Mastery_Level" : 47,
407
+ "Match" : 222171635,
408
+ "Minutes" : 18,
409
+ "Multi_kill_Max" : 2,
410
+ "PartyId" : 0,
411
+ "Rank_Stat_Conquest" : 0,
412
+ "Rank_Stat_Duel" : 0,
413
+ "Rank_Stat_Joust" : 0,
414
+ "Reference_Name" : "Artemis",
415
+ "Skin" : "Artemis",
416
+ "SkinId" : 7967,
417
+ "Structure_Damage" : 0,
418
+ "Surrendered" : null,
419
+ "Team1Score" : 19,
420
+ "Team2Score" : 0,
421
+ "TeamId" : 306497,
422
+ "Team_Name" : "Godly Order",
423
+ "Towers_Destroyed" : 0,
424
+ "Wards_Placed" : 0,
425
+ "Win_Status" : "Winner",
426
+ "hasReplay" : "n",
427
+ "name" : "Normal: Arena",
428
+ "playerId" : "0",
429
+ "playerName" : "",
430
+ "ret_msg" : null
431
+ },
432
+ {
433
+ "Account_Level" : 30,
434
+ "ActiveId1" : 12580,
435
+ "ActiveId2" : 7353,
436
+ "Assists" : 6,
437
+ "Camps_Cleared" : 3,
438
+ "Conquest_Losses" : 6,
439
+ "Conquest_Points" : 57,
440
+ "Conquest_Tier" : 14,
441
+ "Conquest_Wins" : 10,
442
+ "Damage_Bot" : 25214,
443
+ "Damage_Done_Magical" : 0,
444
+ "Damage_Done_Physical" : 49022,
445
+ "Damage_Mitigated" : 6447,
446
+ "Damage_Player" : 24056,
447
+ "Damage_Taken" : 25808,
448
+ "Deaths" : 7,
449
+ "Duel_Losses" : 0,
450
+ "Duel_Points" : 0,
451
+ "Duel_Tier" : 0,
452
+ "Duel_Wins" : 0,
453
+ "Entry_Datetime" : "2/5/2016 2:27:41 AM",
454
+ "Final_Match_Level" : 20,
455
+ "GodId" : 1773,
456
+ "Gold_Earned" : 15367,
457
+ "Gold_Per_Minute" : 853,
458
+ "Healing" : 0,
459
+ "ItemId1" : 7545,
460
+ "ItemId2" : 9626,
461
+ "ItemId3" : 8547,
462
+ "ItemId4" : 9348,
463
+ "ItemId5" : 7539,
464
+ "ItemId6" : 8546,
465
+ "Item_Active_1" : "Sunder",
466
+ "Item_Active_2" : "Sprint",
467
+ "Item_Active_3" : "",
468
+ "Item_Purch_1" : "Deathbringer",
469
+ "Item_Purch_2" : "Warrior Tabi",
470
+ "Item_Purch_3" : "Transcendence",
471
+ "Item_Purch_4" : "Asi",
472
+ "Item_Purch_5" : "Soul Eater",
473
+ "Item_Purch_6" : "Rage",
474
+ "Joust_Losses" : 0,
475
+ "Joust_Points" : 0,
476
+ "Joust_Tier" : 0,
477
+ "Joust_Wins" : 0,
478
+ "Killing_Spree" : 4,
479
+ "Kills_Bot" : 49,
480
+ "Kills_Double" : 1,
481
+ "Kills_Fire_Giant" : 0,
482
+ "Kills_First_Blood" : 0,
483
+ "Kills_Gold_Fury" : 0,
484
+ "Kills_Penta" : 0,
485
+ "Kills_Phoenix" : 0,
486
+ "Kills_Player" : 11,
487
+ "Kills_Quadra" : 0,
488
+ "Kills_Siege_Juggernaut" : 0,
489
+ "Kills_Single" : 10,
490
+ "Kills_Triple" : 0,
491
+ "Kills_Wild_Juggernaut" : 0,
492
+ "Mastery_Level" : 63,
493
+ "Match" : 222171635,
494
+ "Minutes" : 18,
495
+ "Multi_kill_Max" : 2,
496
+ "PartyId" : 119547,
497
+ "Rank_Stat_Conquest" : 0,
498
+ "Rank_Stat_Duel" : 0,
499
+ "Rank_Stat_Joust" : 0,
500
+ "Reference_Name" : "Anhur",
501
+ "Skin" : "Diamond",
502
+ "SkinId" : 10316,
503
+ "Structure_Damage" : 0,
504
+ "Surrendered" : null,
505
+ "Team1Score" : 19,
506
+ "Team2Score" : 0,
507
+ "TeamId" : 697597,
508
+ "Team_Name" : "Conquestador",
509
+ "Towers_Destroyed" : 0,
510
+ "Wards_Placed" : 0,
511
+ "Win_Status" : "Loser",
512
+ "hasReplay" : "n",
513
+ "name" : "Normal: Arena",
514
+ "playerId" : "6544348",
515
+ "playerName" : "[CQN]Vènatus",
516
+ "ret_msg" : null},
517
+
518
+ {
519
+ "Account_Level" : 30,
520
+ "ActiveId1" : 8879,
521
+ "ActiveId2" : 7672,
522
+ "Assists" : 7,
523
+ "Camps_Cleared" : 2,
524
+ "Conquest_Losses" : 0,
525
+ "Conquest_Points" : 0,
526
+ "Conquest_Tier" : 0,
527
+ "Conquest_Wins" : 2,
528
+ "Damage_Bot" : 55256,
529
+ "Damage_Done_Magical" : 73211,
530
+ "Damage_Done_Physical" : 0,
531
+ "Damage_Mitigated" : 2586,
532
+ "Damage_Player" : 17955,
533
+ "Damage_Taken" : 15961,
534
+ "Deaths" : 4,
535
+ "Duel_Losses" : 0,
536
+ "Duel_Points" : 0,
537
+ "Duel_Tier" : 0,
538
+ "Duel_Wins" : 0,
539
+ "Entry_Datetime" : "2/5/2016 2:27:41 AM",
540
+ "Final_Match_Level" : 20,
541
+ "GodId" : 1988,
542
+ "Gold_Earned" : 14423,
543
+ "Gold_Per_Minute" : 801,
544
+ "Healing" : 0,
545
+ "ItemId1" : 9633,
546
+ "ItemId2" : 7924,
547
+ "ItemId3" : 7525,
548
+ "ItemId4" : 7784,
549
+ "ItemId5" : 12670,
550
+ "ItemId6" : 9861,
551
+ "Item_Active_1" : "Purification",
552
+ "Item_Active_2" : "Sanctuary",
553
+ "Item_Active_3" : "",
554
+ "Item_Purch_1" : "Shoes of the Magi",
555
+ "Item_Purch_2" : "Doom Orb",
556
+ "Item_Purch_3" : "Obsidian Shard",
557
+ "Item_Purch_4" : "Chronos' Pendant",
558
+ "Item_Purch_5" : "Spear of Desolation",
559
+ "Item_Purch_6" : "Restored Artifact",
560
+ "Joust_Losses" : 0,
561
+ "Joust_Points" : 0,
562
+ "Joust_Tier" : 0,
563
+ "Joust_Wins" : 0,
564
+ "Killing_Spree" : 4,
565
+ "Kills_Bot" : 142,
566
+ "Kills_Double" : 0,
567
+ "Kills_Fire_Giant" : 0,
568
+ "Kills_First_Blood" : 0,
569
+ "Kills_Gold_Fury" : 0,
570
+ "Kills_Penta" : 0,
571
+ "Kills_Phoenix" : 0,
572
+ "Kills_Player" : 5,
573
+ "Kills_Quadra" : 0,
574
+ "Kills_Siege_Juggernaut" : 0,
575
+ "Kills_Single" : 5,
576
+ "Kills_Triple" : 0,
577
+ "Kills_Wild_Juggernaut" : 0,
578
+ "Mastery_Level" : 71,
579
+ "Match" : 222171635,
580
+ "Minutes" : 18,
581
+ "Multi_kill_Max" : 1,
582
+ "PartyId" : 119547,
583
+ "Rank_Stat_Conquest" : 0,
584
+ "Rank_Stat_Duel" : 0,
585
+ "Rank_Stat_Joust" : 0,
586
+ "Reference_Name" : "Scylla",
587
+ "Skin" : "Scylla",
588
+ "SkinId" : 9660,
589
+ "Structure_Damage" : 0,
590
+ "Surrendered" : null,
591
+ "Team1Score" : 19,
592
+ "Team2Score" : 0,
593
+ "TeamId" : 697597,
594
+ "Team_Name" : "Conquestador",
595
+ "Towers_Destroyed" : 0,
596
+ "Wards_Placed" : 0,
597
+ "Win_Status" : "Loser",
598
+ "hasReplay" : "n",
599
+ "name" : "Normal: Arena",
600
+ "playerId" : "1552072",
601
+ "playerName" : "[CQN]SpartacusBTS2",
602
+ "ret_msg" : null},
603
+
604
+ {
605
+ "Account_Level" : 30,
606
+ "ActiveId1" : 7671,
607
+ "ActiveId2" : 7355,
608
+ "Assists" : 14,
609
+ "Camps_Cleared" : 0,
610
+ "Conquest_Losses" : 0,
611
+ "Conquest_Points" : 0,
612
+ "Conquest_Tier" : 0,
613
+ "Conquest_Wins" : 0,
614
+ "Damage_Bot" : 17095,
615
+ "Damage_Done_Magical" : 27808,
616
+ "Damage_Done_Physical" : 0,
617
+ "Damage_Mitigated" : 34514,
618
+ "Damage_Player" : 10713,
619
+ "Damage_Taken" : 30403,
620
+ "Deaths" : 7,
621
+ "Duel_Losses" : 0,
622
+ "Duel_Points" : 0,
623
+ "Duel_Tier" : 0,
624
+ "Duel_Wins" : 0,
625
+ "Entry_Datetime" : "2/5/2016 2:27:41 AM",
626
+ "Final_Match_Level" : 20,
627
+ "GodId" : 1919,
628
+ "Gold_Earned" : 13258,
629
+ "Gold_Per_Minute" : 736,
630
+ "Healing" : 0,
631
+ "ItemId1" : 9634,
632
+ "ItemId2" : 7907,
633
+ "ItemId3" : 9361,
634
+ "ItemId4" : 7910,
635
+ "ItemId5" : 12666,
636
+ "ItemId6" : 9838,
637
+ "Item_Active_1" : "Curse",
638
+ "Item_Active_2" : "Frenzy",
639
+ "Item_Active_3" : "",
640
+ "Item_Purch_1" : "Shoes of Focus",
641
+ "Item_Purch_2" : "Midgardian Mail",
642
+ "Item_Purch_3" : "Spirit Robe",
643
+ "Item_Purch_4" : "Witchblade",
644
+ "Item_Purch_5" : "Mantle of Discord",
645
+ "Item_Purch_6" : "Silver Breastplate",
646
+ "Joust_Losses" : 0,
647
+ "Joust_Points" : 0,
648
+ "Joust_Tier" : 0,
649
+ "Joust_Wins" : 0,
650
+ "Killing_Spree" : 1,
651
+ "Kills_Bot" : 38,
652
+ "Kills_Double" : 0,
653
+ "Kills_Fire_Giant" : 0,
654
+ "Kills_First_Blood" : 0,
655
+ "Kills_Gold_Fury" : 0,
656
+ "Kills_Penta" : 0,
657
+ "Kills_Phoenix" : 0,
658
+ "Kills_Player" : 2,
659
+ "Kills_Quadra" : 0,
660
+ "Kills_Siege_Juggernaut" : 0,
661
+ "Kills_Single" : 2,
662
+ "Kills_Triple" : 0,
663
+ "Kills_Wild_Juggernaut" : 0,
664
+ "Mastery_Level" : 72,
665
+ "Match" : 222171635,
666
+ "Minutes" : 18,
667
+ "Multi_kill_Max" : 1,
668
+ "PartyId" : 116197,
669
+ "Rank_Stat_Conquest" : 0,
670
+ "Rank_Stat_Duel" : 0,
671
+ "Rank_Stat_Joust" : 0,
672
+ "Reference_Name" : "Athena",
673
+ "Skin" : "Shield of the Gorgon",
674
+ "SkinId" : 12634,
675
+ "Structure_Damage" : 0,
676
+ "Surrendered" : null,
677
+ "Team1Score" : 19,
678
+ "Team2Score" : 0,
679
+ "TeamId" : 569143,
680
+ "Team_Name" : "PEPÉ",
681
+ "Towers_Destroyed" : 0,
682
+ "Wards_Placed" : 0,
683
+ "Win_Status" : "Loser",
684
+ "hasReplay" : "n",
685
+ "name" : "Normal: Arena",
686
+ "playerId" : "949831",
687
+ "playerName" : "[PÉPÉ]CarlDrogo",
688
+ "ret_msg" : null},
689
+
690
+ {
691
+ "Account_Level" : 30,
692
+ "ActiveId1" : 7671,
693
+ "ActiveId2" : 9120,
694
+ "Assists" : 12,
695
+ "Camps_Cleared" : 3,
696
+ "Conquest_Losses" : 0,
697
+ "Conquest_Points" : 0,
698
+ "Conquest_Tier" : 0,
699
+ "Conquest_Wins" : 0,
700
+ "Damage_Bot" : 8530,
701
+ "Damage_Done_Magical" : 0,
702
+ "Damage_Done_Physical" : 20769,
703
+ "Damage_Mitigated" : 34079,
704
+ "Damage_Player" : 12239,
705
+ "Damage_Taken" : 45397,
706
+ "Deaths" : 8,
707
+ "Duel_Losses" : 0,
708
+ "Duel_Points" : 0,
709
+ "Duel_Tier" : 0,
710
+ "Duel_Wins" : 0,
711
+ "Entry_Datetime" : "2/5/2016 2:27:41 AM",
712
+ "Final_Match_Level" : 20,
713
+ "GodId" : 1848,
714
+ "Gold_Earned" : 13248,
715
+ "Gold_Per_Minute" : 736,
716
+ "Healing" : 0,
717
+ "ItemId1" : 7572,
718
+ "ItemId2" : 9626,
719
+ "ItemId3" : 7904,
720
+ "ItemId4" : 9361,
721
+ "ItemId5" : 12678,
722
+ "ItemId6" : 9835,
723
+ "Item_Active_1" : "Curse",
724
+ "Item_Active_2" : "Shell",
725
+ "Item_Active_3" : "",
726
+ "Item_Purch_1" : "Stone of Gaia",
727
+ "Item_Purch_2" : "Warrior Tabi",
728
+ "Item_Purch_3" : "Jotunn's Wrath",
729
+ "Item_Purch_4" : "Spirit Robe",
730
+ "Item_Purch_5" : "Genji's Guard",
731
+ "Item_Purch_6" : "Warded Shield",
732
+ "Joust_Losses" : 0,
733
+ "Joust_Points" : 0,
734
+ "Joust_Tier" : 0,
735
+ "Joust_Wins" : 0,
736
+ "Killing_Spree" : 2,
737
+ "Kills_Bot" : 27,
738
+ "Kills_Double" : 1,
739
+ "Kills_Fire_Giant" : 0,
740
+ "Kills_First_Blood" : 0,
741
+ "Kills_Gold_Fury" : 0,
742
+ "Kills_Penta" : 0,
743
+ "Kills_Phoenix" : 0,
744
+ "Kills_Player" : 3,
745
+ "Kills_Quadra" : 0,
746
+ "Kills_Siege_Juggernaut" : 0,
747
+ "Kills_Single" : 2,
748
+ "Kills_Triple" : 0,
749
+ "Kills_Wild_Juggernaut" : 0,
750
+ "Mastery_Level" : 66,
751
+ "Match" : 222171635,
752
+ "Minutes" : 18,
753
+ "Multi_kill_Max" : 2,
754
+ "PartyId" : 116197,
755
+ "Rank_Stat_Conquest" : 0,
756
+ "Rank_Stat_Duel" : 0,
757
+ "Rank_Stat_Joust" : 0,
758
+ "Reference_Name" : "Hercules",
759
+ "Skin" : "Grand Slam",
760
+ "SkinId" : 8789,
761
+ "Structure_Damage" : 0,
762
+ "Surrendered" : null,
763
+ "Team1Score" : 19,
764
+ "Team2Score" : 0,
765
+ "TeamId" : 462056,
766
+ "Team_Name" : "DDoS eSports",
767
+ "Towers_Destroyed" : 0,
768
+ "Wards_Placed" : 0,
769
+ "Win_Status" : "Loser",
770
+ "hasReplay" : "n",
771
+ "name" : "Normal: Arena",
772
+ "playerId" : "2955878",
773
+ "playerName" : "[DDΦS]RadianMode",
774
+ "ret_msg" : null
775
+ },
776
+ {
777
+ "Account_Level" : 30,
778
+ "ActiveId1" : 7353,
779
+ "ActiveId2" : 8879,
780
+ "Assists" : 12,
781
+ "Camps_Cleared" : 0,
782
+ "Conquest_Losses" : 5,
783
+ "Conquest_Points" : 0,
784
+ "Conquest_Tier" : 7,
785
+ "Conquest_Wins" : 5,
786
+ "Damage_Bot" : 52689,
787
+ "Damage_Done_Magical" : 68233,
788
+ "Damage_Done_Physical" : 0,
789
+ "Damage_Mitigated" : 2334,
790
+ "Damage_Player" : 15544,
791
+ "Damage_Taken" : 7702,
792
+ "Deaths" : 1,
793
+ "Duel_Losses" : 0,
794
+ "Duel_Points" : 0,
795
+ "Duel_Tier" : 0,
796
+ "Duel_Wins" : 0,
797
+ "Entry_Datetime" : "2/5/2016 2:27:41 AM",
798
+ "Final_Match_Level" : 20,
799
+ "GodId" : 1677,
800
+ "Gold_Earned" : 12692,
801
+ "Gold_Per_Minute" : 705,
802
+ "Healing" : 0,
803
+ "ItemId1" : 7924,
804
+ "ItemId2" : 9633,
805
+ "ItemId3" : 8354,
806
+ "ItemId4" : 7600,
807
+ "ItemId5" : 9851,
808
+ "ItemId6" : 0,
809
+ "Item_Active_1" : "Sprint",
810
+ "Item_Active_2" : "Purification",
811
+ "Item_Active_3" : "",
812
+ "Item_Purch_1" : "Doom Orb",
813
+ "Item_Purch_2" : "Shoes of the Magi",
814
+ "Item_Purch_3" : "Spear of the Magus",
815
+ "Item_Purch_4" : "Rod of Tahuti",
816
+ "Item_Purch_5" : "Enchanted Spear",
817
+ "Item_Purch_6" : "",
818
+ "Joust_Losses" : 0,
819
+ "Joust_Points" : 0,
820
+ "Joust_Tier" : 0,
821
+ "Joust_Wins" : 0,
822
+ "Killing_Spree" : 0,
823
+ "Kills_Bot" : 130,
824
+ "Kills_Double" : 0,
825
+ "Kills_Fire_Giant" : 0,
826
+ "Kills_First_Blood" : 0,
827
+ "Kills_Gold_Fury" : 0,
828
+ "Kills_Penta" : 0,
829
+ "Kills_Phoenix" : 0,
830
+ "Kills_Player" : 0,
831
+ "Kills_Quadra" : 0,
832
+ "Kills_Siege_Juggernaut" : 0,
833
+ "Kills_Single" : 0,
834
+ "Kills_Triple" : 0,
835
+ "Kills_Wild_Juggernaut" : 0,
836
+ "Mastery_Level" : 70,
837
+ "Match" : 222171635,
838
+ "Minutes" : 18,
839
+ "Multi_kill_Max" : 0,
840
+ "PartyId" : 119547,
841
+ "Rank_Stat_Conquest" : 0,
842
+ "Rank_Stat_Duel" : 0,
843
+ "Rank_Stat_Joust" : 0,
844
+ "Reference_Name" : "Kukulkan",
845
+ "Skin" : "Kuku",
846
+ "SkinId" : 11837,
847
+ "Structure_Damage" : 0,
848
+ "Surrendered" : null,
849
+ "Team1Score" : 19,
850
+ "Team2Score" : 0,
851
+ "TeamId" : 413252,
852
+ "Team_Name" : "Max Penetration",
853
+ "Towers_Destroyed" : 0,
854
+ "Wards_Placed" : 0,
855
+ "Win_Status" : "Loser",
856
+ "hasReplay" : "n",
857
+ "name" : "Normal: Arena",
858
+ "playerId" : "1182702",
859
+ "playerName" : "[OPnss]kingtwist",
860
+ "ret_msg" : null
861
+ }]