diff --git a/SVSim.Bootstrap/Program.cs b/SVSim.Bootstrap/Program.cs index ff22222..74fda71 100644 --- a/SVSim.Bootstrap/Program.cs +++ b/SVSim.Bootstrap/Program.cs @@ -87,6 +87,9 @@ public static class Program await new BattlePassImporter().ImportAsync(context, opts.SeedDir); await new BattlePassSeasonImporter().ImportAsync(context, opts.SeedDir); await new BattlePassRewardImporter().ImportAsync(context, opts.SeedDir); + await new MissionCatalogImporter().ImportAsync(context, opts.SeedDir); + await new AchievementCatalogImporter().ImportAsync(context, opts.SeedDir); + await new BattlePassMonthlyMissionImporter().ImportAsync(context, opts.SeedDir); await new DailyLoginBonusImporter().ImportAsync(context, opts.SeedDir); await new PreReleaseInfoImporter().ImportAsync(context, opts.SeedDir); await new CardListsImporter().ImportAsync(context, opts.SeedDir);