mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 13:03:06 +00:00
1b028198ad
refer to pull request comments for summary
59 lines
No EOL
1.7 KiB
C#
59 lines
No EOL
1.7 KiB
C#
using System;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
public class Puff6 : SaveBlock
|
|
{
|
|
private const int MaxPuffID = 26; // Supreme Winter Poké Puff
|
|
private const int PuffSlots = 100;
|
|
|
|
public Puff6(SaveFile SAV, int offset) : base(SAV) => Offset = offset;
|
|
|
|
public byte[] Puffs
|
|
{
|
|
get => SAV.GetData(Offset, PuffSlots);
|
|
set => SAV.SetData(value, Offset);
|
|
}
|
|
|
|
public int PuffCount
|
|
{
|
|
get => BitConverter.ToInt32(Data, Offset + PuffSlots);
|
|
set => BitConverter.GetBytes(value).CopyTo(Data, Offset + PuffSlots);
|
|
}
|
|
|
|
public void Reset()
|
|
{
|
|
Array.Clear(Data, Offset, PuffSlots);
|
|
// Set the first few default Puffs
|
|
Data[Offset + 0] = 1;
|
|
Data[Offset + 1] = 2;
|
|
Data[Offset + 2] = 3;
|
|
Data[Offset + 3] = 4;
|
|
Data[Offset + 4] = 5;
|
|
PuffCount = 5;
|
|
}
|
|
|
|
public void MaxCheat(bool special = false)
|
|
{
|
|
if (special)
|
|
{
|
|
for (int i = 0; i < PuffSlots; i++)
|
|
Data[Offset + i] = (byte)(21 + Util.Rand.Next(2)); // Supreme Wish or Honor
|
|
}
|
|
else
|
|
{
|
|
for (int i = 0; i < PuffSlots; i++)
|
|
Data[Offset + i] = (byte)((i % MaxPuffID) + 1);
|
|
Util.Shuffle(Data, Offset, Offset + PuffSlots);
|
|
}
|
|
PuffCount = PuffSlots;
|
|
}
|
|
|
|
public void Sort(bool reverse = false)
|
|
{
|
|
Array.Sort(Data, Offset, PuffCount);
|
|
if (reverse)
|
|
Array.Reverse(Data, Offset, PuffCount);
|
|
}
|
|
}
|
|
} |