mirror of
https://github.com/mm201/pkmn-classic-framework.git
synced 2026-04-26 01:47:17 -05:00
Future™
This commit is contained in:
parent
247de87a21
commit
403546ce9a
|
|
@ -288,6 +288,7 @@ namespace PkmnFoundations.Pokedex
|
|||
|
||||
public static int SpeciesAtGeneration(Generations generation)
|
||||
{
|
||||
// xxx: Pull from database
|
||||
switch (generation)
|
||||
{
|
||||
case Generations.Generation1:
|
||||
|
|
@ -302,6 +303,10 @@ namespace PkmnFoundations.Pokedex
|
|||
return 649;
|
||||
case Generations.Generation6:
|
||||
return 721;
|
||||
case Generations.Generation7:
|
||||
return 807; // Sorry, LGPE is Gen8
|
||||
case Generations.Generation8:
|
||||
return 905;
|
||||
default:
|
||||
throw new NotSupportedException();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -12,7 +12,9 @@ namespace PkmnFoundations.Structures
|
|||
Generation3 = 3,
|
||||
Generation4 = 4,
|
||||
Generation5 = 5,
|
||||
Generation6 = 6
|
||||
Generation6 = 6,
|
||||
Generation7 = 7,
|
||||
Generation8 = 8
|
||||
}
|
||||
|
||||
[Flags]
|
||||
|
|
@ -23,7 +25,9 @@ namespace PkmnFoundations.Structures
|
|||
Generation3 = 4,
|
||||
Generation4 = 8,
|
||||
Generation5 = 16,
|
||||
Generation6 = 32
|
||||
Generation6 = 32,
|
||||
Generation7 = 64,
|
||||
Generation8 = 128
|
||||
}
|
||||
|
||||
public enum LocationNumbering
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user