mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
b81a1e1e29
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)
85 lines
1.3 KiB
C#
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,
|
|
}
|
|
}
|