mirror of
https://github.com/jie65535/GrasscutterCommandGenerator.git
synced 2025-10-23 20:29:45 +08:00
Update page navigation
Add Achievement page
This commit is contained in:
@@ -132,6 +132,16 @@ namespace GrasscutterTools.Game
|
||||
/// </summary>
|
||||
public static readonly Version V1_4_3 = new Version(1, 4, 3);
|
||||
|
||||
/// <summary>
|
||||
/// 2023/4/1
|
||||
/// </summary>
|
||||
public static readonly Version V1_4_7 = new Version(1, 4, 7);
|
||||
|
||||
/// <summary>
|
||||
/// 2023/4/1
|
||||
/// </summary>
|
||||
public static readonly Version V1_5_0 = new Version(1, 5, 0);
|
||||
|
||||
// More...
|
||||
/// <summary>
|
||||
/// Date
|
||||
@@ -148,7 +158,9 @@ namespace GrasscutterTools.Game
|
||||
V1_4_1,
|
||||
V1_4_2,
|
||||
V1_4_3,
|
||||
//V1_4_4,
|
||||
V1_4_7,
|
||||
V1_5_0,
|
||||
//V1_5_1,
|
||||
};
|
||||
|
||||
#endregion - 版本列表 Version List -
|
||||
|
@@ -37,8 +37,12 @@ namespace GrasscutterTools.Game.Gacha
|
||||
public string Comment { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 添加卡池请从400开始增加id数值进行添加,这个id需要每个池子不一样,
|
||||
/// 如果你想添加大量卡池,请按照每次增加固定数值的id进行添加,比如:411,412,413....
|
||||
/// 卡池类型
|
||||
/// 100 初行祈愿
|
||||
/// 200 常驻祈愿
|
||||
/// 301 角色活动祈愿1
|
||||
/// 302 武器活动祈愿
|
||||
/// 400 角色活动祈愿2
|
||||
/// </summary>
|
||||
[JsonProperty("gachaType")]
|
||||
public int GachaType { get; set; } = 400;
|
||||
|
@@ -25,6 +25,7 @@ namespace GrasscutterTools.Game
|
||||
{
|
||||
public static void LoadResources()
|
||||
{
|
||||
Achievements = new ItemMap(Resources.Achievement);
|
||||
Artifacts = new ItemMap(Resources.Artifact);
|
||||
ArtifactCats = new ItemMap(Resources.ArtifactCat);
|
||||
ArtifactMainAttribution = new ItemMap(Resources.ArtifactMainAttribution);
|
||||
@@ -44,6 +45,7 @@ namespace GrasscutterTools.Game
|
||||
ShopType = new ItemMap(Resources.ShopType);
|
||||
}
|
||||
|
||||
public static ItemMap Achievements { get; private set; }
|
||||
public static ItemMap Artifacts { get; private set; }
|
||||
|
||||
public static ItemMap ArtifactCats { get; private set; }
|
||||
|
Reference in New Issue
Block a user