From 3dcf24dade17dd01b67a27a6a9b2b2db59155e70 Mon Sep 17 00:00:00 2001 From: CanoeHope <43196464+CanoeHope@users.noreply.github.com> Date: Sat, 20 Jun 2020 22:50:50 -0400 Subject: [PATCH] New SWSH Block Data (#2890) * New SWSH Block Data Found these pretty useful blocks for IoA. I'll maybe look into Restricted Sparring data in the next week or so if no one else does by then. --- PKHeX.Core/Saves/Access/SaveBlockAccessor8SWSH.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/PKHeX.Core/Saves/Access/SaveBlockAccessor8SWSH.cs b/PKHeX.Core/Saves/Access/SaveBlockAccessor8SWSH.cs index 1668dc425..327f79ee0 100644 --- a/PKHeX.Core/Saves/Access/SaveBlockAccessor8SWSH.cs +++ b/PKHeX.Core/Saves/Access/SaveBlockAccessor8SWSH.cs @@ -152,6 +152,9 @@ public SaveBlockAccessor8SWSH(SAV8SWSH sav) public const uint KOptionAutoSave = 0xB027F396; // U32 OptOut AutoSave=0 public const uint KOptionShowNicknames = 0xCA8A8CEE; // U32 OptOut Show=0 public const uint KOptionShowMoves = 0x9C781AE2; // U32 OptOut Show=0 + public const uint KDojoWattDonationTotal = 0xC7161487; // U32 Amount of Watts donated to Master Dojo + public const uint KDiggingPaWattStreak = 0x68BBA8B1; // U32 Most Watts dug up by the Digging Pa + public const uint KAlolanDiglettFound = 0x4AEA5A7E; // U32 Amount of Alolan Diglett found on Isle of Armor } } #pragma warning restore IDE0051 // Remove unused private members