@@ -10,6 +10,41 @@ internal class MatchPlayerAbilityUpgrade
1010 public uint Level { get ; set ; }
1111 }
1212
13+ internal class MatchPlayerAdditionalUnit
14+ {
15+ public string Unitname { get ; set ; }
16+
17+ [ JsonProperty ( PropertyName = "item_0" ) ]
18+ public uint Item0 { get ; set ; }
19+
20+ [ JsonProperty ( PropertyName = "item_1" ) ]
21+ public uint Item1 { get ; set ; }
22+
23+ [ JsonProperty ( PropertyName = "item_2" ) ]
24+ public uint Item2 { get ; set ; }
25+
26+ [ JsonProperty ( PropertyName = "item_3" ) ]
27+ public uint Item3 { get ; set ; }
28+
29+ [ JsonProperty ( PropertyName = "item_4" ) ]
30+ public uint Item4 { get ; set ; }
31+
32+ [ JsonProperty ( PropertyName = "item_5" ) ]
33+ public uint Item5 { get ; set ; }
34+
35+ [ JsonProperty ( PropertyName = "backpack_0" ) ]
36+ public uint Backpack0 { get ; set ; }
37+
38+ [ JsonProperty ( PropertyName = "backpack_1" ) ]
39+ public uint Backpack1 { get ; set ; }
40+
41+ [ JsonProperty ( PropertyName = "backpack_2" ) ]
42+ public uint Backpack2 { get ; set ; }
43+
44+ [ JsonProperty ( PropertyName = "item_neutral" ) ]
45+ public uint ItemNeutral { get ; set ; }
46+ }
47+
1348 internal class MatchPlayer
1449 {
1550 [ JsonProperty ( PropertyName = "account_id" ) ]
@@ -74,6 +109,17 @@ internal class MatchPlayer
74109 [ JsonProperty ( PropertyName = "gold_spent" ) ]
75110 public uint GoldSpent { get ; set ; }
76111
112+ [ JsonProperty ( PropertyName = "net_worth" ) ]
113+ public uint NetWorth { get ; set ; }
114+
115+ [ JsonProperty ( PropertyName = "aghanims_scepter" ) ]
116+ public uint AghanimsScepter { get ; set ; }
117+
118+ [ JsonProperty ( PropertyName = "aghanims_shard" ) ]
119+ public uint AghanimsShard { get ; set ; }
120+
121+ public uint Moonshard { get ; set ; }
122+
77123 [ JsonProperty ( PropertyName = "hero_damage" ) ]
78124 public uint HeroDamage { get ; set ; }
79125
@@ -96,6 +142,9 @@ internal class MatchPlayer
96142
97143 [ JsonProperty ( PropertyName = "ability_upgrades" ) ]
98144 public IList < MatchPlayerAbilityUpgrade > AbilityUpgrades { get ; set ; }
145+
146+ [ JsonProperty ( PropertyName = "additional_units" ) ]
147+ public IList < MatchPlayerAdditionalUnit > AdditionalUnits { get ; set ; }
99148 }
100149
101150 internal class MatchPickBan
0 commit comments