mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-06-03 02:04:13 -05:00
Add ball throw type
Not hooked to any editor, just documentation
This commit is contained in:
parent
186e6f1196
commit
0699e27d4f
|
|
@ -344,6 +344,11 @@ public override string OT
|
|||
get { return Util.TrimFromZero(Encoding.Unicode.GetString(Data, TrainerCard + 0x38, 0x1A)); }
|
||||
set { Encoding.Unicode.GetBytes(value.PadRight(13, '\0')).CopyTo(Data, TrainerCard + 0x38); }
|
||||
}
|
||||
public int BallThrowType
|
||||
{
|
||||
get { return Data[0x7A]; }
|
||||
set { Data[0x7A] = (byte)(value > 8 ? 0 : value); }
|
||||
}
|
||||
public int M
|
||||
{
|
||||
get { return BitConverter.ToUInt16(Data, Trainer1 + 0x00); } // could be anywhere 0x0-0x7
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user