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

@@ -42,6 +42,15 @@ public class RotationConfigImporter
{
c.UseTwoPickPremiumCard = cc.UseTwoPickPremiumCard;
c.TwoPickSleeveId = cc.TwoPickSleeveId;
c.LastCardPackSetId = cc.LastCardPackSetId;
c.CardPoolName = cc.CardPoolName;
c.CardPoolUrl = cc.CardPoolUrl;
c.AnnounceId = cc.AnnounceId;
c.StartTime = cc.StartTime;
c.EndTime = cc.EndTime;
c.TwoPickType = cc.TwoPickType;
c.StrategyPickNum = cc.StrategyPickNum;
c.PoolCardSetIds = cc.PoolCardSetIds ?? new List<int>();
});
touched++;
}