Files
PKHeX/PKHeX.Core/Editing/Program/Settings/SetImportSettings.cs
Kurt bbef47e0bd Localize StatNature => Stat Alignment
bulbapedia's Contest Stat nature amp table for neutral natures is wrong lol
https://bulbapedia.bulbagarden.net/wiki/Contest_condition#Natures
2026-06-14 14:58:40 -05:00

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;
}