mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-09-13 09:15:22 -05:00
Shortcut Max Level
IMO this is useful, for your consideration :)
This commit is contained in:
1
PKHeX.WinForms/MainWindow/Main.Designer.cs
generated
1
PKHeX.WinForms/MainWindow/Main.Designer.cs
generated
@@ -938,6 +938,7 @@ public void InitializeComponent()
|
||||
this.TB_Level.Size = new System.Drawing.Size(22, 20);
|
||||
this.TB_Level.TabIndex = 8;
|
||||
this.TB_Level.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
||||
this.TB_Level.Click += new System.EventHandler(this.clickLevel);
|
||||
this.TB_Level.TextChanged += new System.EventHandler(this.updateEXPLevel);
|
||||
//
|
||||
// MT_Level
|
||||
|
||||
@@ -1714,6 +1714,15 @@ private void clickFriendship(object sender, EventArgs e)
|
||||
else
|
||||
TB_Friendship.Text = TB_Friendship.Text == "255" ? SAV.Personal[pkm.Species].BaseFriendship.ToString() : "255";
|
||||
}
|
||||
|
||||
private void clickLevel(object sender, EventArgs e)
|
||||
{
|
||||
if (ModifierKeys == Keys.Control)
|
||||
{
|
||||
((MaskedTextBox)sender).Text = "100";
|
||||
}
|
||||
}
|
||||
|
||||
private void clickGender(object sender, EventArgs e)
|
||||
{
|
||||
// Get Gender Threshold
|
||||
|
||||
@@ -24,6 +24,7 @@ Control + Click on...
|
||||
- Randomize EVs: Set all EVs to 0.
|
||||
- PP Ups Label: Set all PP Ups to 0. (Click = 3)
|
||||
- Friendship Label: Set Friendship to 0. (Click = 255 or Base)
|
||||
- Level box: Set Level to 100.
|
||||
|
||||
Alt + Click on...
|
||||
- Preview Sprite to load from a QR url on your clipboard.
|
||||
|
||||
Reference in New Issue
Block a user