mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
Differentiate C/XD cologne IDs
https://projectpokemon.org/home/forums/topic/45685-pokémon-xd-and-scent-bag/ Thanks Asia81!
This commit is contained in:
parent
cb4761403a
commit
79f0b3665f
3 changed files with 4 additions and 3 deletions
|
@ -66,7 +66,7 @@ namespace PKHeX.Core
|
||||||
20, 20, 05, 05,
|
20, 20, 05, 05,
|
||||||
};
|
};
|
||||||
|
|
||||||
internal static readonly ushort[] Pouch_Cologne_CXD = {543, 544, 545};
|
internal static readonly ushort[] Pouch_Cologne_COLO = {543, 544, 545};
|
||||||
internal static readonly ushort[] Pouch_Items_COLO = Pouch_Items_RS.Concat(new ushort[] {537}).ToArray(); // Time Flute
|
internal static readonly ushort[] Pouch_Items_COLO = Pouch_Items_RS.Concat(new ushort[] {537}).ToArray(); // Time Flute
|
||||||
internal static readonly ushort[] HeldItems_COLO = new ushort[1].Concat(Pouch_Items_COLO).Concat(Pouch_Ball_RS).Concat(Pouch_Berries_RS).Concat(Pouch_TM_RS).ToArray();
|
internal static readonly ushort[] HeldItems_COLO = new ushort[1].Concat(Pouch_Items_COLO).Concat(Pouch_Ball_RS).Concat(Pouch_Berries_RS).Concat(Pouch_TM_RS).ToArray();
|
||||||
internal static readonly ushort[] Pouch_Key_COLO =
|
internal static readonly ushort[] Pouch_Key_COLO =
|
||||||
|
@ -78,6 +78,7 @@ namespace PKHeX.Core
|
||||||
540, 541, 542, 546, 547,
|
540, 541, 542, 546, 547,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
internal static readonly ushort[] Pouch_Cologne_XD = {513, 514, 515};
|
||||||
internal static readonly ushort[] Pouch_Items_XD = Pouch_Items_RS.Concat(new ushort[] {511}).ToArray(); // Poké Snack
|
internal static readonly ushort[] Pouch_Items_XD = Pouch_Items_RS.Concat(new ushort[] {511}).ToArray(); // Poké Snack
|
||||||
internal static readonly ushort[] HeldItems_XD = new ushort[1].Concat(Pouch_Items_XD).Concat(Pouch_Ball_RS).Concat(Pouch_Berries_RS).Concat(Pouch_TM_RS).ToArray();
|
internal static readonly ushort[] HeldItems_XD = new ushort[1].Concat(Pouch_Items_XD).Concat(Pouch_Ball_RS).Concat(Pouch_Berries_RS).Concat(Pouch_TM_RS).ToArray();
|
||||||
internal static readonly ushort[] Pouch_Key_XD =
|
internal static readonly ushort[] Pouch_Key_XD =
|
||||||
|
|
|
@ -96,7 +96,7 @@ namespace PKHeX.Core
|
||||||
LegalBalls = Legal.Pouch_Ball_RS;
|
LegalBalls = Legal.Pouch_Ball_RS;
|
||||||
LegalTMHMs = Legal.Pouch_TM_RS; // not HMs
|
LegalTMHMs = Legal.Pouch_TM_RS; // not HMs
|
||||||
LegalBerries = Legal.Pouch_Berries_RS;
|
LegalBerries = Legal.Pouch_Berries_RS;
|
||||||
LegalCologne = Legal.Pouch_Cologne_CXD;
|
LegalCologne = Legal.Pouch_Cologne_COLO;
|
||||||
|
|
||||||
Personal = PersonalTable.RS;
|
Personal = PersonalTable.RS;
|
||||||
HeldItems = Legal.HeldItems_COLO;
|
HeldItems = Legal.HeldItems_COLO;
|
||||||
|
|
|
@ -103,7 +103,7 @@ namespace PKHeX.Core
|
||||||
LegalBalls = Legal.Pouch_Ball_RS;
|
LegalBalls = Legal.Pouch_Ball_RS;
|
||||||
LegalTMHMs = Legal.Pouch_TM_RS; // not HMs
|
LegalTMHMs = Legal.Pouch_TM_RS; // not HMs
|
||||||
LegalBerries = Legal.Pouch_Berries_RS;
|
LegalBerries = Legal.Pouch_Berries_RS;
|
||||||
LegalCologne = Legal.Pouch_Cologne_CXD;
|
LegalCologne = Legal.Pouch_Cologne_XD;
|
||||||
LegalDisc = Legal.Pouch_Disc_XD;
|
LegalDisc = Legal.Pouch_Disc_XD;
|
||||||
|
|
||||||
Personal = PersonalTable.RS;
|
Personal = PersonalTable.RS;
|
||||||
|
|
Loading…
Reference in a new issue