コード例 #1
0
 private static bool IsDeferred(this EncounterSlot slot, int currentSpecies, PKM pkm, bool IsSafariBall, bool IsSportBall, bool IsHidden)
 {
     return(slot.IsDeferredWurmple(currentSpecies, pkm) ||
            slot.IsDeferredHiddenAbility(IsHidden) ||
            slot.IsDeferredSafari(IsSafariBall) ||
            slot.IsDeferredSport(IsSportBall));
 }
コード例 #2
0
 public static bool IsDeferred4(this EncounterSlot slot, int currentSpecies, PKM pkm, bool IsSafariBall, bool IsSportBall)
 {
     return(slot.IsDeferredWurmple(currentSpecies, pkm) ||
            slot.IsDeferredSafari(IsSafariBall) ||
            slot.IsDeferredSport(IsSportBall));
 }