mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 14:44:24 +00:00
Add temporary _0x2A property
Search via !_0x2A=0
This commit is contained in:
parent
63d0f0ea1e
commit
986eca8f30
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ namespace PKHeX
|
|||
public override int CNT_Smart { get { return Data[0x27]; } set { Data[0x27] = (byte)value; } }
|
||||
public override int CNT_Tough { get { return Data[0x28]; } set { Data[0x28] = (byte)value; } }
|
||||
public override int CNT_Sheen { get { return Data[0x29]; } set { Data[0x29] = (byte)value; } }
|
||||
// public override byte MarkValue { get { return Data[0x2A]; } protected set { Data[0x2A] = value; } }
|
||||
public byte _0x2A { get { return Data[0x2A]; } protected set { Data[0x2A] = value; } }
|
||||
private byte PKRS { get { return Data[0x2B]; } set { Data[0x2B] = value; } }
|
||||
public override int PKRS_Days { get { return PKRS & 0xF; } set { PKRS = (byte)(PKRS & ~0xF | value); } }
|
||||
public override int PKRS_Strain { get { return PKRS >> 4; } set { PKRS = (byte)(PKRS & 0xF | value << 4); } }
|
||||
|
|
Loading…
Reference in a new issue