mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-15 16:41:03 -05:00
Add lgpe properties
This commit is contained in:
parent
8d89776ae9
commit
cc509de83c
|
|
@ -76,6 +76,8 @@ public static GameVersion GetMetLocationVersionGroup(GameVersion Version)
|
|||
return SM;
|
||||
case US: case UM:
|
||||
return USUM;
|
||||
case GP: case GE:
|
||||
return GG;
|
||||
|
||||
default:
|
||||
return Invalid;
|
||||
|
|
|
|||
|
|
@ -289,6 +289,7 @@ private void SetID7(int sid7, int tid7)
|
|||
public bool AO => Version == (int)GameVersion.AS || Version == (int)GameVersion.OR;
|
||||
public bool SM => Version == (int)GameVersion.SN || Version == (int)GameVersion.MN;
|
||||
public bool USUM => Version == (int)GameVersion.US || Version == (int)GameVersion.UM;
|
||||
public bool GG => Version == (int)GameVersion.GP || Version == (int)GameVersion.GE;
|
||||
protected bool PtHGSS => Pt || HGSS;
|
||||
public bool VC => VC1 || VC2;
|
||||
public bool Gen7 => Version >= 30 && Version <= 33;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user