mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-13 14:12:39 +00:00
23 lines
404 B
C#
23 lines
404 B
C#
namespace PKHeX.Core;
|
|
|
|
public enum Backdrop4 : byte
|
|
{
|
|
DressUp = 0,
|
|
Ranch = 1,
|
|
CityatNight = 2,
|
|
SnowyTown = 3,
|
|
Fiery = 4,
|
|
OuterSpace = 5,
|
|
Desert = 6,
|
|
CumulusCloud = 7,
|
|
FlowerPatch = 8,
|
|
FutureRoom = 9,
|
|
OpenSea = 10,
|
|
TotalDarkness = 11,
|
|
TatamiRoom = 12,
|
|
GingerbreadRoom = 13,
|
|
Seafloor = 14,
|
|
Underground = 15,
|
|
Sky = 16,
|
|
Theater = 17,
|
|
}
|