GO: more tweaks to 30th Anniversary event handling

This commit is contained in:
sora10pls 2026-03-09 13:11:23 -04:00
parent 7617f6dfa7
commit c7f02bcc20
3 changed files with 6 additions and 3 deletions

View File

@ -12,7 +12,8 @@ public enum PogoType : byte
// Pokémon captured in the wild.
Wild,
Wild20,
WildLevel20,
WildLevel25,
// Pokémon hatched from Eggs.
Egg,
@ -138,7 +139,8 @@ public static class PogoTypeExtensions
public byte LevelMin => encounterType switch
{
Wild => 1,
Wild20 => 20,
WildLevel20 => 20,
WildLevel25 => 25,
Egg => 1,
Egg12km => 8,
Raid => 20,
@ -206,7 +208,8 @@ public static class PogoTypeExtensions
public int MinimumIV => encounterType switch
{
Wild => 0,
Wild20 => 0,
WildLevel20 => 0,
WildLevel25 => 0,
RaidMythical => 10,
RaidShadowMythical => 8,
RaidShadowMythicalGOWA => 8,