forked from Plenyx/PlenBotLogUploader
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added fight awards to Discord report
- Loading branch information
1 parent
53e4e09
commit ee25c79
Showing
15 changed files
with
221,646 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
using Newtonsoft.Json; | ||
using Newtonsoft.Json.Linq; | ||
|
||
namespace PlenBotLogUploader.DpsReport.ExtraJson | ||
{ | ||
internal sealed class BuffData | ||
{ | ||
[JsonProperty("uptime")] | ||
internal float Uptime { get; set; } | ||
|
||
[JsonProperty("generated")] | ||
// Needs to be a JObject, because the members are dynamically named, based on player names... | ||
internal JObject Generated { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using Newtonsoft.Json; | ||
|
||
namespace PlenBotLogUploader.DpsReport.ExtraJson | ||
{ | ||
internal sealed class BuffUptimes | ||
{ | ||
[JsonProperty("id")] | ||
internal int Id{ get; set; } | ||
|
||
[JsonProperty("buffData")] | ||
internal BuffData[] BuffData { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using Newtonsoft.Json; | ||
|
||
namespace PlenBotLogUploader.DpsReport.ExtraJson | ||
{ | ||
internal sealed class Buffs | ||
{ | ||
[JsonProperty("id")] | ||
internal int Id { get; set; } | ||
|
||
[JsonProperty("buffData")] | ||
internal BuffData[] BuffData { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using Newtonsoft.Json; | ||
|
||
namespace PlenBotLogUploader.DpsReport.ExtraJson | ||
{ | ||
internal sealed class TotalDamageDist | ||
{ | ||
[JsonProperty("id")] | ||
internal int Id { get; set; } | ||
|
||
[JsonProperty("hits")] | ||
internal int Hits { get; set; } | ||
|
||
[JsonProperty("connectedHits")] | ||
internal int ConnectedHits { get; set; } | ||
|
||
[JsonProperty("flank")] | ||
internal int Flank { get; set; } | ||
} | ||
} |
Oops, something went wrong.