From 188ed998792914c1c7263930cdf8b1885d3bfcb5 Mon Sep 17 00:00:00 2001 From: OnyxDev Date: Wed, 8 May 2024 21:14:23 +0200 Subject: [PATCH] Update RogueEditor.py Hotfix on natures --- Source/RogueEditor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/RogueEditor.py b/Source/RogueEditor.py index 0ceed18..a1c96ab 100644 --- a/Source/RogueEditor.py +++ b/Source/RogueEditor.py @@ -217,7 +217,7 @@ class pokeRogue: data["dexData"][entry] = { "seenAttr": 247, "caughtAttr": 247, - "natureAttr": 63525972, + "natureAttr": 67108862, "seenCount": seen, "caughtCount": caught, "hatchedCount": 0, @@ -281,7 +281,7 @@ class pokeRogue: else: isShiny = 149 seenAttr = isShiny caughtAttr = isShiny - natureAttr = 63525972 + natureAttr = 67108862 caught = int(input("How many of this Pokemon have you caught? (at least one) (+1 candy per)(number): ")) hatched = int(input("How many of this pokemon have you hatched? (at least one) (+2 candy per hatch)(number): ")) seenCount = int(input("How many of this Pokemon have you seen? (Needs to be more or equal to caught)(number): "))