namespace PKHeX.Core { /// /// Encounter lock values restricting certain properties to a fixed value. /// /// Used in Colosseum/XD to ensure that non-shadow are of a certain Nature/etc. public class EncounterLock { public int Species { get; set; } public int Nature { get; set; } = -1; public int Gender { get; set; } = -1; } }