Skip to content

Commit da72cf4

Browse files
author
babelshift
authored
Merge pull request #1 from babelshift/v2
V2
2 parents 3f7984c + 539e054 commit da72cf4

39 files changed

+230
-124
lines changed

SourceSchemaParser/AutoMapperConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using AutoMapper;
2-
using SourceSchemaParser.Dota2;
2+
using SourceSchemaParser.DOTA2;
33
using Steam.Models.DOTA2;
44
using Steam.Models.GameEconomy;
55
using System;

SourceSchemaParser/Dota2/DotaAbilitySchemaItem.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using SourceSchemaParser.JsonConverters;
44
using System.Collections.Generic;
55

6-
namespace SourceSchemaParser.Dota2
6+
namespace SourceSchemaParser.DOTA2
77
{
88
internal class DotaAbilitySchemaItem
99
{
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
namespace SourceSchemaParser.Dota2
1+
namespace SourceSchemaParser.DOTA2
22
{
33
internal class DotaAbilitySpecialSchemaItem
44
{
55
public string Name { get; set; }
66
public string Value { get; set; }
77
public string VarType { get; set; }
8+
public string LinkedSpecialBonus { get; set; }
89
}
910
}

SourceSchemaParser/Dota2/DotaHeroSchemaItem.cs

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Newtonsoft.Json;
22
using SourceSchemaParser.JsonConverters;
33

4-
namespace SourceSchemaParser.Dota2
4+
namespace SourceSchemaParser.DOTA2
55
{
66
internal class DotaHeroSchemaItem
77
{
@@ -99,6 +99,30 @@ internal class DotaHeroSchemaItem
9999
[JsonProperty("Ability16")]
100100
public string Ability16 { get; set; }
101101

102+
[JsonProperty("Ability17")]
103+
public string Ability17 { get; set; }
104+
105+
[JsonProperty("Ability18")]
106+
public string Ability18 { get; set; }
107+
108+
[JsonProperty("Ability19")]
109+
public string Ability19 { get; set; }
110+
111+
[JsonProperty("Ability20")]
112+
public string Ability20 { get; set; }
113+
114+
[JsonProperty("Ability21")]
115+
public string Ability21 { get; set; }
116+
117+
[JsonProperty("Ability22")]
118+
public string Ability22 { get; set; }
119+
120+
[JsonProperty("Ability23")]
121+
public string Ability23 { get; set; }
122+
123+
[JsonProperty("Ability24")]
124+
public string Ability24 { get; set; }
125+
102126
[JsonProperty("ArmorPhysical")]
103127
public double ArmorPhysical { get; set; }
104128

SourceSchemaParser/Dota2/DotaItemAbilitySchemaItem.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using SourceSchemaParser.JsonConverters;
44
using System.Collections.Generic;
55

6-
namespace SourceSchemaParser.Dota2
6+
namespace SourceSchemaParser.DOTA2
77
{
88
internal class DotaItemAbilitySchemaItem
99
{

SourceSchemaParser/Dota2/DotaItemBuildGroupSchemaItem.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Collections.Generic;
22

3-
namespace SourceSchemaParser.Dota2
3+
namespace SourceSchemaParser.DOTA2
44
{
55
internal class DotaItemBuildGroupSchemaItem
66
{

SourceSchemaParser/Dota2/DotaItemBuildSchemaItem.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using SourceSchemaParser.JsonConverters;
33
using System.Collections.Generic;
44

5-
namespace SourceSchemaParser.Dota2
5+
namespace SourceSchemaParser.DOTA2
66
{
77
internal class DotaItemBuildSchemaItem
88
{

SourceSchemaParser/Dota2/DotaLeague.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
22

3-
namespace SourceSchemaParser.Dota2
3+
namespace SourceSchemaParser.DOTA2
44
{
55
internal class DotaLeague
66
{

SourceSchemaParser/Dota2/DotaSchema.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using SourceSchemaParser.JsonConverters;
33
using System.Collections.Generic;
44

5-
namespace SourceSchemaParser.Dota2
5+
namespace SourceSchemaParser.DOTA2
66
{
77
internal class DotaSchema
88
{

SourceSchemaParser/Dota2/DotaSchemaContainer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Newtonsoft.Json;
22

3-
namespace SourceSchemaParser.Dota2
3+
namespace SourceSchemaParser.DOTA2
44
{
55
internal class DotaSchemaContainer
66
{

0 commit comments

Comments
 (0)