mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 09:08:02 +00:00
278f7cad25
thanks @sora10pls
35 lines
526 B
C#
35 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
|
|
}
|
|
}
|