mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-17 05:48:44 +00:00
Add MomSkin to League Card (#2936)
This commit is contained in:
parent
8027fe30b9
commit
455a787ee4
1 changed files with 6 additions and 0 deletions
|
@ -205,6 +205,12 @@ namespace PKHeX.Core
|
|||
set => BitConverter.GetBytes(value).CopyTo(Data, 0xB0);
|
||||
}
|
||||
|
||||
public ulong MomSkin // aka the base model
|
||||
{
|
||||
get => BitConverter.ToUInt64(Data, 0xC0);
|
||||
set => BitConverter.GetBytes(value).CopyTo(Data, 0xC0);
|
||||
}
|
||||
|
||||
// Trainer Card Pokemon
|
||||
// 0xC8 - 0xE3 (0x1C)
|
||||
// 0xE4
|
||||
|
|
Loading…
Add table
Reference in a new issue