mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-09 04:24:36 -05:00
Correct offsets
counting is hard
This commit is contained in:
parent
3569726835
commit
698c8e6e7c
|
|
@ -42,9 +42,9 @@ public override int[] Types
|
|||
public override int BaseEXP { get { return Data[0x09]; } set { Data[0x09] = (byte)value; } }
|
||||
public int Move1 { get { return Data[0x0F]; } set { Data[0x0F] = (byte)value; } }
|
||||
public int Move2 { get { return Data[0x10]; } set { Data[0x10] = (byte)value; } }
|
||||
public int Move3 { get { return Data[0x12]; } set { Data[0x12] = (byte)value; } }
|
||||
public int Move4 { get { return Data[0x13]; } set { Data[0x13] = (byte)value; } }
|
||||
public override int EXPGrowth { get { return Data[0x14]; } set { Data[0x14] = (byte)value; } }
|
||||
public int Move3 { get { return Data[0x11]; } set { Data[0x11] = (byte)value; } }
|
||||
public int Move4 { get { return Data[0x12]; } set { Data[0x12] = (byte)value; } }
|
||||
public override int EXPGrowth { get { return Data[0x13]; } set { Data[0x13] = (byte)value; } }
|
||||
|
||||
// EV Yields are just aliases for base stats in Gen I
|
||||
public override int EV_HP { get { return HP; } set { } }
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user