From 34533a9047bf661b8c5c00b3725cf61e792e8ff5 Mon Sep 17 00:00:00 2001 From: LOuroboros Date: Sat, 9 Oct 2021 00:20:56 -0300 Subject: [PATCH] Adjusted the data of the Red and Blue Orbs --- src/data/items.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/data/items.h b/src/data/items.h index 7ac826a3b..aa0c951ba 100644 --- a/src/data/items.h +++ b/src/data/items.h @@ -3726,9 +3726,9 @@ const struct Item gItems[] = .name = _("Red Orb"), .itemId = ITEM_RED_ORB, .price = 0, + .holdEffect = HOLD_EFFECT_PRIMAL_ORB, .description = sRedOrbDesc, - .importance = 2, - .pocket = POCKET_KEY_ITEMS, + .pocket = POCKET_ITEMS, .type = ITEM_USE_BAG_MENU, .fieldUseFunc = ItemUseOutOfBattle_CannotUse, }, @@ -3738,9 +3738,9 @@ const struct Item gItems[] = .name = _("Blue Orb"), .itemId = ITEM_BLUE_ORB, .price = 0, + .holdEffect = HOLD_EFFECT_PRIMAL_ORB, .description = sBlueOrbDesc, - .importance = 2, - .pocket = POCKET_KEY_ITEMS, + .pocket = POCKET_ITEMS, .type = ITEM_USE_BAG_MENU, .fieldUseFunc = ItemUseOutOfBattle_CannotUse, },