forked from Scighost/Starward
-
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.
Merge branch 'Scighost:main' into main
- Loading branch information
Showing
30 changed files
with
608 additions
and
157 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
15 changes: 15 additions & 0 deletions
15
src/Starward.Core/GameRecord/Genshin/ImaginariumTheater/ImaginariumTheaterSplendourBuff.cs
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 System.Text.Json.Serialization; | ||
|
||
namespace Starward.Core.GameRecord.Genshin.ImaginariumTheater; | ||
|
||
public class ImaginariumTheaterSplendourBuff | ||
{ | ||
|
||
[JsonPropertyName("summary")] | ||
public ImaginariumTheaterSplendourBuffSummary Summary { get; set; } | ||
|
||
|
||
[JsonPropertyName("buffs")] | ||
public List<ImaginariumTheaterSplendourBuffItem> Buffs { get; set; } | ||
|
||
} |
19 changes: 19 additions & 0 deletions
19
...rward.Core/GameRecord/Genshin/ImaginariumTheater/ImaginariumTheaterSplendourBuffEffect.cs
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 System.Text.Json.Serialization; | ||
|
||
namespace Starward.Core.GameRecord.Genshin.ImaginariumTheater; | ||
|
||
public class ImaginariumTheaterSplendourBuffEffect | ||
{ | ||
|
||
[JsonPropertyName("icon")] | ||
public string Icon { get; set; } | ||
|
||
|
||
[JsonPropertyName("name")] | ||
public string Name { get; set; } | ||
|
||
|
||
[JsonPropertyName("desc")] | ||
public string Desc { get; set; } | ||
|
||
} |
25 changes: 25 additions & 0 deletions
25
...tarward.Core/GameRecord/Genshin/ImaginariumTheater/ImaginariumTheaterSplendourBuffItem.cs
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,25 @@ | ||
using System.Text.Json.Serialization; | ||
|
||
namespace Starward.Core.GameRecord.Genshin.ImaginariumTheater; | ||
|
||
public class ImaginariumTheaterSplendourBuffItem | ||
{ | ||
|
||
[JsonPropertyName("name")] | ||
public string Name { get; set; } | ||
|
||
|
||
[JsonPropertyName("icon")] | ||
public string Icon { get; set; } | ||
|
||
|
||
[JsonPropertyName("level")] | ||
public int Level { get; set; } | ||
|
||
/// <summary> | ||
/// 祝福不同等级的效果 | ||
/// </summary> | ||
[JsonPropertyName("level_effect")] | ||
public List<ImaginariumTheaterSplendourBuffEffect> LevelEffect { get; set; } | ||
|
||
} |
15 changes: 15 additions & 0 deletions
15
...ward.Core/GameRecord/Genshin/ImaginariumTheater/ImaginariumTheaterSplendourBuffSummary.cs
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 System.Text.Json.Serialization; | ||
|
||
namespace Starward.Core.GameRecord.Genshin.ImaginariumTheater; | ||
|
||
public class ImaginariumTheaterSplendourBuffSummary | ||
{ | ||
|
||
[JsonPropertyName("total_level")] | ||
public int TotalLevel { get; set; } | ||
|
||
|
||
[JsonPropertyName("desc")] | ||
public string Desc { 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
Oops, something went wrong.