mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 09:08:02 +00:00
48a87397ec
Add method to fetch daycare seeds from metadata
17 lines
No EOL
507 B
C#
17 lines
No EOL
507 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Storage for the Fused species, <see cref="Species.Kyurem"/>, <see cref="Species.Solgaleo"/>, <see cref="Species.Lunala"/>
|
|
/// </summary>
|
|
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;
|
|
}
|
|
}
|
|
} |