mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
c021f893f8
Closes #4143
22 lines
715 B
C#
22 lines
715 B
C#
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Tweaks to Evolution rules to account for game-specific behaviors.
|
|
/// </summary>
|
|
public sealed class EvolutionRuleTweak
|
|
{
|
|
/// <summary>
|
|
/// Default Evolution logic (no tweaks).
|
|
/// </summary>
|
|
public static readonly EvolutionRuleTweak Default = new();
|
|
|
|
/// <summary>
|
|
/// In Scarlet & Violet, level 100 Pokemon can trigger evolution methods via Rare Candy level up.
|
|
/// </summary>
|
|
public static readonly EvolutionRuleTweak Level100 = new() { AllowLevelUpEvolution100 = true };
|
|
|
|
/// <summary>
|
|
/// Allow Level Up Evolutions to trigger if already level 100.
|
|
/// </summary>
|
|
public bool AllowLevelUpEvolution100 { get; init; }
|
|
}
|