mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
Fix Colosseum/XD Max Money (#3202)
* Update SAV3Colosseum.cs * Update SAV3XD.cs
This commit is contained in:
parent
91557d0180
commit
747d6ed6c7
2 changed files with 2 additions and 2 deletions
|
@ -149,7 +149,7 @@ namespace PKHeX.Core
|
|||
protected override int GiftCountMax => 1;
|
||||
public override int OTLength => 10; // as evident by Mattle Ho-Oh
|
||||
public override int NickLength => 10;
|
||||
public override int MaxMoney => 999999;
|
||||
public override int MaxMoney => 9999999;
|
||||
|
||||
public override int BoxCount => 3;
|
||||
public override bool IsPKMPresent(byte[] data, int offset) => PKX.IsPKMPresentGC(data, offset);
|
||||
|
|
|
@ -173,7 +173,7 @@ namespace PKHeX.Core
|
|||
protected override int GiftCountMax => 1;
|
||||
public override int OTLength => 7;
|
||||
public override int NickLength => 10;
|
||||
public override int MaxMoney => 999999;
|
||||
public override int MaxMoney => 9999999;
|
||||
|
||||
public override int BoxCount => 8;
|
||||
|
||||
|
|
Loading…
Reference in a new issue