From 405341c8db72b495f47cf0c2138cc19b0d7b7f5c Mon Sep 17 00:00:00 2001 From: BuffelSaft Date: Fri, 3 Sep 2021 17:48:33 +1200 Subject: [PATCH] Boost EV berry yield again EV training is now babby mode. No excuses! --- src/berry.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/berry.c b/src/berry.c index a5e2bbcb6688..6f1c30b388fe 100644 --- a/src/berry.c +++ b/src/berry.c @@ -530,8 +530,8 @@ const struct Berry gBerries[] = .name = _("Pomeg"), .firmness = BERRY_FIRMNESS_VERY_HARD, .size = 135, - .maxYield = 18, - .minYield = 8, + .maxYield = 48, + .minYield = 24, .description1 = sBerryDescriptionPart1_Pomeg, .description2 = sBerryDescriptionPart2_Pomeg, .stageDuration = 1, @@ -548,8 +548,8 @@ const struct Berry gBerries[] = .name = _("Kelpsy"), .firmness = BERRY_FIRMNESS_HARD, .size = 150, - .maxYield = 18, - .minYield = 8, + .maxYield = 48, + .minYield = 24, .description1 = sBerryDescriptionPart1_Kelpsy, .description2 = sBerryDescriptionPart2_Kelpsy, .stageDuration = 1, @@ -566,8 +566,8 @@ const struct Berry gBerries[] = .name = _("Qualot"), .firmness = BERRY_FIRMNESS_HARD, .size = 110, - .maxYield = 18, - .minYield = 8, + .maxYield = 48, + .minYield = 24, .description1 = sBerryDescriptionPart1_Qualot, .description2 = sBerryDescriptionPart2_Qualot, .stageDuration = 1, @@ -584,8 +584,8 @@ const struct Berry gBerries[] = .name = _("Hondew"), .firmness = BERRY_FIRMNESS_HARD, .size = 162, - .maxYield = 18, - .minYield = 8, + .maxYield = 48, + .minYield = 24, .description1 = sBerryDescriptionPart1_Hondew, .description2 = sBerryDescriptionPart2_Hondew, .stageDuration = 1, @@ -602,8 +602,8 @@ const struct Berry gBerries[] = .name = _("Grepa"), .firmness = BERRY_FIRMNESS_SOFT, .size = 149, - .maxYield = 18, - .minYield = 8, + .maxYield = 48, + .minYield = 24, .description1 = sBerryDescriptionPart1_Grepa, .description2 = sBerryDescriptionPart2_Grepa, .stageDuration = 1, @@ -620,8 +620,8 @@ const struct Berry gBerries[] = .name = _("Tamato"), .firmness = BERRY_FIRMNESS_SOFT, .size = 200, - .maxYield = 18, - .minYield = 8, + .maxYield = 48, + .minYield = 24, .description1 = sBerryDescriptionPart1_Tamato, .description2 = sBerryDescriptionPart2_Tamato, .stageDuration = 1,