diff --git a/PKHeX.WinForms/Resources/byte/fashion_f_uu b/PKHeX.WinForms/Resources/byte/fashion_f_uu index f7f21f110..d1f4abf31 100644 Binary files a/PKHeX.WinForms/Resources/byte/fashion_f_uu and b/PKHeX.WinForms/Resources/byte/fashion_f_uu differ diff --git a/PKHeX.WinForms/Resources/byte/fashion_f_uu_illegal b/PKHeX.WinForms/Resources/byte/fashion_f_uu_illegal index e93f6c8ac..2fb4c2933 100644 Binary files a/PKHeX.WinForms/Resources/byte/fashion_f_uu_illegal and b/PKHeX.WinForms/Resources/byte/fashion_f_uu_illegal differ diff --git a/PKHeX.WinForms/Resources/byte/fashion_m_uu b/PKHeX.WinForms/Resources/byte/fashion_m_uu index e010f4484..c6429f337 100644 Binary files a/PKHeX.WinForms/Resources/byte/fashion_m_uu and b/PKHeX.WinForms/Resources/byte/fashion_m_uu differ diff --git a/PKHeX.WinForms/Resources/byte/fashion_m_uu_illegal b/PKHeX.WinForms/Resources/byte/fashion_m_uu_illegal index 209344979..d1af760ef 100644 Binary files a/PKHeX.WinForms/Resources/byte/fashion_m_uu_illegal and b/PKHeX.WinForms/Resources/byte/fashion_m_uu_illegal differ diff --git a/PKHeX.WinForms/Subforms/Save Editors/Gen7/SAV_Trainer7.cs b/PKHeX.WinForms/Subforms/Save Editors/Gen7/SAV_Trainer7.cs index 9f4091f86..f5aaf0f5e 100644 --- a/PKHeX.WinForms/Subforms/Save Editors/Gen7/SAV_Trainer7.cs +++ b/PKHeX.WinForms/Subforms/Save Editors/Gen7/SAV_Trainer7.cs @@ -494,7 +494,7 @@ private void B_Fashion_Click(object sender, EventArgs e) case 0: // Base Fashion { var list = SAV.USUM - ? (SAV.Gender == 0 // already biased by +0x16 + ? (SAV.Gender == 0 ? new[] {0x03A, 0x109, 0x1DA, 0x305, 0x3D9, 0x4B1, 0x584} // M : new[] {0x05E, 0x208, 0x264, 0x395, 0x3B4, 0x4F9, 0x5A8}) // F : (SAV.Gender == 0 @@ -509,13 +509,13 @@ private void B_Fashion_Click(object sender, EventArgs e) byte[] data1 = SAV.USUM ? SAV.Gender == 0 ? Properties.Resources.fashion_m_uu : Properties.Resources.fashion_f_uu : SAV.Gender == 0 ? Properties.Resources.fashion_m_sm : Properties.Resources.fashion_f_sm; - data1.CopyTo(SAV.Data, SAV.Fashion + (SAV.USUM ? 0x16 : 0)); + data1.CopyTo(SAV.Data, SAV.Fashion); break; case 2: // Everything byte[] data2 = SAV.USUM ? SAV.Gender == 0 ? Properties.Resources.fashion_m_uu_illegal : Properties.Resources.fashion_f_uu_illegal : SAV.Gender == 0 ? Properties.Resources.fashion_m_sm_illegal : Properties.Resources.fashion_f_sm_illegal; - data2.CopyTo(SAV.Data, SAV.Fashion + (SAV.USUM ? 0x16 : 0)); + data2.CopyTo(SAV.Data, SAV.Fashion); break; default: return; @@ -683,7 +683,7 @@ private void B_GenTID_Click(object sender, EventArgs e) {069, "Items Reeled In"}, // USUM {070, "Roto Lotos"}, - {073, "Mantines Surfed"}, + {073, "Mantine Surf BP Earned"}, {100, "Champion Title Defense"}, {104, "Moves used with No Effect"},