mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 17:18:00 +00:00
69cf1eaa9c
adds a bunch of documentation useful for those unfamiliar with the core library
13 lines
441 B
C#
13 lines
441 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Encounter lock values restricting certain properties to a fixed value.
|
|
/// </summary>
|
|
/// <remarks>Used in Colosseum/XD to ensure that non-shadow <see cref="PKM"/> are of a certain Nature/etc.</remarks>
|
|
public class EncounterLock
|
|
{
|
|
public int Species { get; set; }
|
|
public int Nature { get; set; } = -1;
|
|
public int Gender { get; set; } = -1;
|
|
}
|
|
}
|