mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-01 08:19:15 +00:00
36 lines
526 B
C#
36 lines
526 B
C#
|
namespace PKHeX.Core
|
|||
|
{
|
|||
|
public enum PWTRecordID
|
|||
|
{
|
|||
|
Normal,
|
|||
|
Fighting,
|
|||
|
Flying,
|
|||
|
Poison,
|
|||
|
Ground,
|
|||
|
Rock,
|
|||
|
Bug,
|
|||
|
Ghost,
|
|||
|
Steel,
|
|||
|
Fire,
|
|||
|
Water,
|
|||
|
Grass,
|
|||
|
Electric,
|
|||
|
Psychic,
|
|||
|
Ice,
|
|||
|
Dragon,
|
|||
|
Dark,
|
|||
|
Champion,
|
|||
|
Driftveil,
|
|||
|
Unova,
|
|||
|
Kanto,
|
|||
|
Johto,
|
|||
|
Hoenn,
|
|||
|
Sinnoh,
|
|||
|
World,
|
|||
|
Rental,
|
|||
|
RentalMaster,
|
|||
|
Mix,
|
|||
|
MixMaster
|
|||
|
}
|
|||
|
}
|