mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-08-27 09:54:44 -05:00
@@ -44,8 +44,11 @@ public EggInfoSource(PKM pkm, IEnumerable<int> specialMoves, EncounterEgg e)
|
||||
public IReadOnlyList<int> TMHM { get; }
|
||||
public IReadOnlyList<int> LevelUp { get; }
|
||||
|
||||
public bool IsInherited(int m) => !Base.Contains(m) || Special.Contains(m) ||
|
||||
Egg.Contains(m) || LevelUp.Contains(m) ||
|
||||
TMHM.Contains(m) || Tutor.Contains(m);
|
||||
public bool IsInherited(int m)
|
||||
{
|
||||
if (Base.Contains(m))
|
||||
return false;
|
||||
return Special.Contains(m) || Egg.Contains(m) || LevelUp.Contains(m) || TMHM.Contains(m) || Tutor.Contains(m);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user