PKHeX/PKHeX.Core/Saves/Substructures/Gen8/Fused8.cs

17 lines
507 B
C#
Raw Normal View History

namespace PKHeX.Core
2019-11-16 01:34:18 +00:00
{
/// <summary>
/// Storage for the Fused species, <see cref="Species.Kyurem"/>, <see cref="Species.Solgaleo"/>, <see cref="Species.Lunala"/>
/// </summary>
2019-11-16 01:34:18 +00:00
public sealed class Fused8 : SaveBlock
{
public Fused8(SaveFile sav, SCBlock block) : base(sav, block.Data) { }
public static int GetFusedSlotOffset(int slot)
{
if ((uint)slot >= 3)
return -1;
return PKX.SIZE_8PARTY * slot;
}
}
}