mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-22 20:13:06 +00:00
95fbf66a6e
In addition to the Method 1 (and other sibling PIDIV types) correlation, an encounter can only be triggered if the calls prior land on the Method {1} seed. The RNG community has dubbed these patterns as "Method J" (D/P/Pt), "Method K" (HG/SS), and "Method H" (Gen3, coined by yours truly). The basic gist of these is that they are pre-requisites, like the Shadow locks of Colosseum/XD. Rename/re-type a bunch of properties to get the codebase more in line with correct property names & more obvious underlying types.
86 lines
2 KiB
C#
86 lines
2 KiB
C#
using System;
|
|
using System.Windows.Forms;
|
|
using PKHeX.Core;
|
|
|
|
namespace PKHeX.WinForms.Controls;
|
|
|
|
public partial class ContestStat : UserControl, IContestStats
|
|
{
|
|
public ContestStat()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public byte ContestCool
|
|
{
|
|
get => (byte)Util.ToInt32(TB_Cool.Text);
|
|
set => TB_Cool.Text = value.ToString();
|
|
}
|
|
|
|
public byte ContestBeauty
|
|
{
|
|
get => (byte)Util.ToInt32(TB_Beauty.Text);
|
|
set => TB_Beauty.Text = value.ToString();
|
|
}
|
|
|
|
public byte ContestCute
|
|
{
|
|
get => (byte)Util.ToInt32(TB_Cute.Text);
|
|
set => TB_Cute.Text = value.ToString();
|
|
}
|
|
|
|
public byte ContestSmart
|
|
{
|
|
get => (byte)Util.ToInt32(TB_Smart.Text);
|
|
set => TB_Smart.Text = value.ToString();
|
|
}
|
|
|
|
public byte ContestTough
|
|
{
|
|
get => (byte)Util.ToInt32(TB_Tough.Text);
|
|
set => TB_Tough.Text = value.ToString();
|
|
}
|
|
|
|
public byte ContestSheen
|
|
{
|
|
get => (byte)Util.ToInt32(TB_Sheen.Text);
|
|
set => TB_Sheen.Text = value.ToString();
|
|
}
|
|
|
|
private void Update255_MTB(object sender, EventArgs e)
|
|
{
|
|
if (sender is not MaskedTextBox tb)
|
|
return;
|
|
if (Util.ToInt32(tb.Text) > byte.MaxValue)
|
|
tb.Text = "255";
|
|
}
|
|
|
|
public void ToggleInterface(object o, EntityContext context)
|
|
{
|
|
if (o is not IContestStatsReadOnly)
|
|
{
|
|
Visible = TabStop = false;
|
|
return;
|
|
}
|
|
|
|
Visible = TabStop = true;
|
|
bool smart = context.Generation() < 6;
|
|
Label_Smart.Visible = smart; // show "Smart" for Gen3-5
|
|
Label_Clever.Visible = !smart; // show "Clever" for Gen6+
|
|
}
|
|
|
|
private void ClickTextBox(object sender, EventArgs e)
|
|
{
|
|
var keys = ModifierKeys;
|
|
if (keys == Keys.None)
|
|
return;
|
|
|
|
if (sender is not MaskedTextBox tb)
|
|
return;
|
|
|
|
if (keys == Keys.Control)
|
|
tb.Text = "255";
|
|
else if (keys == Keys.Alt)
|
|
tb.Text = "0";
|
|
}
|
|
}
|