Skip to content

Commit e5f2482

Browse files
authored
Autostory: Team Star Fire (#664)
* segment 22. beat team star fire * checkpoint 49: team star base to East Province (Area Two) Pokecenter. * add more blank checkpoints
1 parent de7c8ab commit e5f2482

File tree

6 files changed

+765
-240
lines changed

6 files changed

+765
-240
lines changed

SerialPrograms/Source/PokemonSV/Programs/AutoStory/PokemonSV_AutoStory.cpp

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ std::vector<std::unique_ptr<AutoStory_Segment>> make_autoStory_segment_list(){
8383
segment_list.emplace_back(std::make_unique<AutoStory_Segment_19>());
8484
segment_list.emplace_back(std::make_unique<AutoStory_Segment_20>());
8585
segment_list.emplace_back(std::make_unique<AutoStory_Segment_21>());
86-
// segment_list.emplace_back(std::make_unique<AutoStory_Segment_22>());
86+
segment_list.emplace_back(std::make_unique<AutoStory_Segment_22>());
8787
// segment_list.emplace_back(std::make_unique<AutoStory_Segment_23>());
8888
// segment_list.emplace_back(std::make_unique<AutoStory_Segment_24>());
8989

@@ -611,6 +611,13 @@ void AutoStory::test_checkpoints(
611611
checkpoint_list.push_back([&](){checkpoint_47(env, context, notif_status_update);});
612612
checkpoint_list.push_back([&](){checkpoint_48(env, context, notif_status_update);});
613613
checkpoint_list.push_back([&](){checkpoint_49(env, context, notif_status_update);});
614+
checkpoint_list.push_back([&](){checkpoint_50(env, context, notif_status_update);});
615+
checkpoint_list.push_back([&](){checkpoint_51(env, context, notif_status_update);});
616+
checkpoint_list.push_back([&](){checkpoint_52(env, context, notif_status_update);});
617+
checkpoint_list.push_back([&](){checkpoint_53(env, context, notif_status_update);});
618+
checkpoint_list.push_back([&](){checkpoint_54(env, context, notif_status_update);});
619+
checkpoint_list.push_back([&](){checkpoint_55(env, context, notif_status_update);});
620+
614621

615622
for (int checkpoint = start; checkpoint <= end; checkpoint++){
616623
if (checkpoint == 0){

0 commit comments

Comments
 (0)