mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-08-19 18:37:25 -05:00
bulbapedia's Contest Stat nature amp table for neutral natures is wrong lol https://bulbapedia.bulbagarden.net/wiki/Contest_condition#Natures
11 lines
301 B
C#
11 lines
301 B
C#
namespace PKHeX.Core;
|
|
|
|
public sealed class SetImportSettings
|
|
{
|
|
[LocalizedDescription("Apply Stat Alignment to Nature on Import")]
|
|
public bool ApplyStatAlignment { get; set; } = true;
|
|
|
|
[LocalizedDescription("Apply Markings on Import")]
|
|
public bool ApplyMarkings { get; set; } = true;
|
|
}
|