mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-15 00:21:23 -05:00
Add gs transfer met location
30017
This commit is contained in:
parent
70ec1fda5e
commit
01dacce214
|
|
@ -242,7 +242,6 @@ private void SanitizeMetLocations()
|
|||
metSM_30000[0] += $" ({NPC})"; // Anything from an NPC
|
||||
metSM_30000[1] += $" ({eggname})"; // Egg From Link Trade
|
||||
for (int i = 2; i <= 5; i++) // distinguish first set of regions (unused) from second (used)
|
||||
if (i != 3) // except 30004, which is used for VC2
|
||||
metSM_30000[i] += " (-)";
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1521,7 +1521,7 @@ private static EncounterStatic GetGSStaticTransfer(int species, int pkmMetLevel)
|
|||
Ability = TransferSpeciesDefaultAbility_2.Contains(species) ? 1 : 4, // Hidden by default, else first
|
||||
Shiny = species == 151 || species == 251 ? (bool?)false : null,
|
||||
Fateful = species == 151 || species == 251,
|
||||
Location = 30004, // todo
|
||||
Location = 30017,
|
||||
EggLocation = 0,
|
||||
IV3 = true,
|
||||
Level = pkmMetLevel,
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ public static partial class Legal
|
|||
|
||||
internal static readonly int[] Met_SM_3 =
|
||||
{
|
||||
30001, 30003, 30004, 30005, 30006, 30007, 30008, 30009, 30010, 30011, 30012, 30013, 30014, 30015, 30016,
|
||||
30001, 30003, 30004, 30005, 30006, 30007, 30008, 30009, 30010, 30011, 30012, 30013, 30014, 30015, 30016, 30017
|
||||
};
|
||||
|
||||
internal static readonly int[] Met_SM_4 =
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user