PKHeX/PKHeX.Core/Saves/Substructures/Gen4/PokegearNumber.cs
Kurt b81a1e1e29 Refactoring
Increase abstraction for arbitrary slot get/set operations, and fracture
SAV4 behavior for each game type.

Adds: Undo/Redo of party slot changes
Fixes: Fixed Gen5 daycare slot 2 reading, and EXP reading
Fixes: Some slot color glitchiness
Fixed: Box layout editor now hides the flag label if no flags are
present
Fixed: Gen7 box flags are now shown (unknown purpose lol)
Changed: savefile objects are generally smaller (removed a few shared
offset fields)
2019-09-02 19:30:58 -07:00

85 lines
1.3 KiB
C#

namespace PKHeX.Core
{
/// <summary>
/// Caller IDs for the HeartGold/SoulSilver Pokégear feature.
/// </summary>
public enum PokegearNumber : sbyte
{
None = -1,
Mother,
Professor_Elm,
Professor_Oak,
Ethan,
Lyra,
Kurt,
Daycare_Man,
Daycare_Lady,
Buena,
Bill,
Joey,
Ralph,
Liz,
Wade,
Anthony,
Bike_Shop,
Kenji,
Whitney,
Falkner,
Jack,
Chad,
Brent,
Todd,
Arnie,
Baoba,
Irwin,
Janine,
Clair,
Erika,
Misty,
Blaine,
Blue,
Chuck,
Brock,
Bugsy,
Sabrina,
Lieutenant_Surge,
Morty,
Jasmine,
Pryce,
Huey,
Gaven,
Jamie,
Reena,
Vance,
Parry,
Erin,
Beverly,
Jose,
Gina,
Alan,
Dana,
Derek,
Tully,
Tiffany,
Wilton,
Krise,
Ian,
Walt,
Alfred,
Doug,
Rob,
Kyle,
Kyler,
Tim_and_Sue,
Kenny,
Tanner,
Josh,
Torin,
Hillary,
Billy,
Kay_and_Tia,
Reese,
Aiden,
Ernest,
}
}