namespace PKHeX.Core { /// /// Storage for the Fused species, , , /// 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; } } }