feat(config): extend ChallengeConfig with TK2 format_info + PoolCardSetIds

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
gamer147
2026-05-31 10:23:08 -04:00
parent 5faa5e2445
commit 6e7f0dc4c9
4 changed files with 43 additions and 1 deletions

View File

@@ -21,6 +21,16 @@ public sealed class ChallengeConfigSeed
{
[JsonPropertyName("use_two_pick_premium_card")] public bool UseTwoPickPremiumCard { get; set; }
[JsonPropertyName("two_pick_sleeve_id")] public long TwoPickSleeveId { get; set; }
[JsonPropertyName("last_card_pack_set_id")] public int LastCardPackSetId { get; set; }
[JsonPropertyName("card_pool_name")] public string CardPoolName { get; set; } = "";
[JsonPropertyName("card_pool_url")] public string CardPoolUrl { get; set; } = "";
[JsonPropertyName("announce_id")] public string AnnounceId { get; set; } = "";
[JsonPropertyName("start_time")] public string StartTime { get; set; } = "";
[JsonPropertyName("end_time")] public string EndTime { get; set; } = "";
[JsonPropertyName("two_pick_type")] public int TwoPickType { get; set; } = 0;
[JsonPropertyName("strategy_pick_num")] public int StrategyPickNum { get; set; } = 0;
[JsonPropertyName("pool_card_set_ids")] public List<int> PoolCardSetIds { get; set; } = new();
}
/// <summary>