mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-30 15:59:13 +00:00
23 lines
982 B
C#
23 lines
982 B
C#
|
namespace PKHeX.Core
|
|||
|
{
|
|||
|
public class Fashion6XY : SaveBlock
|
|||
|
{
|
|||
|
public Fashion6XY(SAV6XY sav, int offset) : base(sav) => Offset = offset;
|
|||
|
|
|||
|
public void UnlockAllAccessories()
|
|||
|
{
|
|||
|
SAV.SetData(AllAccessories, Offset);
|
|||
|
}
|
|||
|
|
|||
|
private static readonly byte[] AllAccessories =
|
|||
|
{
|
|||
|
0xFE,0xFF,0xFF,0x7E,0xFF,0xFD,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
|
|||
|
0xFF,0xEF,0xFF,0xFF,0xFF,0xF9,0xFF,0xFB,0xFF,0xF7,0xFF,0xFF,0x0F,0x00,0x00,0x00,
|
|||
|
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFE,0xFF,
|
|||
|
0xFF,0x7E,0xFF,0xFD,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,
|
|||
|
0xFF,0xFF,0xFF,0xF9,0xFF,0xFB,0xFF,0xF7,0xFF,0xFF,0x0F,0x00,0x00,0x00,0x00,0x00,
|
|||
|
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,
|
|||
|
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
|
|||
|
};
|
|||
|
}
|
|||
|
}
|