mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 14:30:56 +00:00
bb6e45db60
Extract PP verifier Add disabling of wordfilter for formats < 6 Add context-specific bypasses for nickname/handler checks
10 lines
338 B
C#
10 lines
338 B
C#
using System.ComponentModel;
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
[TypeConverter(typeof(ExpandableObjectConverter))]
|
|
public sealed class TradebackSettings
|
|
{
|
|
[LocalizedDescription("GB: Allow Generation 2 tradeback learnsets for PK1 formats. Disable when checking RBY Metagame rules.")]
|
|
public bool AllowGen1Tradeback { get; set; } = true;
|
|
}
|