Skip to content

Commit 791faa4

Browse files
committed
change dark catch/photo target, disabled flying-type
1 parent 77d11cf commit 791faa4

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

SerialPrograms/Source/PokemonSV/Programs/Farming/PokemonSV_BlueberryCatchPhoto.cpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,8 @@ CameraAngle quest_photo_navi(
183183
pbf_press_button(context, BUTTON_L, 20, 50);
184184

185185
break;
186-
case BBQuests::photo_flying: case BBQuests::photo_dark:
187-
console.log("Photo: Dark/Flying");
186+
case BBQuests::photo_flying:
187+
console.log("Photo: Flying");
188188

189189
//Vullaby/Mandibuzz
190190
central_to_savanna_plaza(info, console, context);
@@ -228,8 +228,8 @@ CameraAngle quest_photo_navi(
228228
context.wait_for_all_requests();
229229

230230
break;
231-
case BBQuests::photo_poison:
232-
console.log("Photo: Poison");
231+
case BBQuests::photo_poison: case BBQuests::photo_dark:
232+
console.log("Photo: Poison/Dark");
233233

234234
//Muk-A - area a bit laggy but consistently so
235235
central_to_coastal_plaza(info, console, context);
@@ -511,8 +511,8 @@ void quest_catch_navi(
511511

512512
jump_glide_fly(console, context, BBQ_OPTIONS.INVERTED_FLIGHT, 1000, 1650, 500);
513513
break;
514-
case BBQuests::catch_dark: case BBQuests::catch_flying:
515-
console.log("Catch: Dark/Flying");
514+
case BBQuests::catch_flying:
515+
console.log("Catch: Flying");
516516

517517
//Vullaby/Mandibuzz
518518
central_to_savanna_plaza(info, console, context);
@@ -584,8 +584,8 @@ void quest_catch_navi(
584584
pbf_move_left_joystick(context, 128, 0, 50, 50);
585585

586586
break;
587-
case BBQuests::catch_poison:
588-
console.log("Catch: Poison");
587+
case BBQuests::catch_poison: case BBQuests::catch_dark:
588+
console.log("Catch: Poison/Dark");
589589

590590
//Muk-A - area a bit laggy but consistently so
591591
central_to_coastal_plaza(info, console, context);

SerialPrograms/Source/PokemonSV/Programs/Farming/PokemonSV_BlueberryQuests.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const std::set<BBQuests> gold_quests = {
4949

5050
//Quests that are not currently supported. Gold quests currently excluded as this is singleplayer only right now.
5151
const std::set<BBQuests> not_possible_quests = {
52-
BBQuests::UnableToDetect, BBQuests::pickup_10
52+
BBQuests::UnableToDetect, BBQuests::pickup_10, BBQuests::photo_flying, BBQuests::catch_flying
5353
};
5454

5555

0 commit comments

Comments
 (0)