mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 00:37:11 +00:00
Add gs transfer met location
30017
This commit is contained in:
parent
70ec1fda5e
commit
01dacce214
3 changed files with 2 additions and 3 deletions
|
@ -242,7 +242,6 @@ namespace PKHeX.Core
|
|||
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 @@ namespace PKHeX.Core
|
|||
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 @@ namespace PKHeX.Core
|
|||
|
||||
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 a new issue