Merge pull request #1866 from LOuroboros/orbs

Gave a holdEffectParam to the Adamant, Lustrous and Griseous Orbs
This commit is contained in:
Eduardo Quezada D'Ottone 2021-11-05 17:50:17 -03:00 committed by GitHub
commit 75d9f1ccb5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5327,6 +5327,9 @@ const struct Item gItems[] =
.name = _("Adamant Orb"),
.itemId = ITEM_ADAMANT_ORB,
.price = 0,
#if defined(BATTLE_ENGINE)
.holdEffectParam = 20,
#endif
.holdEffect = HOLD_EFFECT_ADAMANT_ORB,
.description = sAdamantOrbDesc,
.pocket = POCKET_ITEMS,
@ -5339,6 +5342,9 @@ const struct Item gItems[] =
.name = _("Lustrous Orb"),
.itemId = ITEM_LUSTROUS_ORB,
.price = 0,
#if defined(BATTLE_ENGINE)
.holdEffectParam = 20,
#endif
.holdEffect = HOLD_EFFECT_LUSTROUS_ORB,
.description = sLustrousOrbDesc,
.pocket = POCKET_ITEMS,
@ -5351,6 +5357,9 @@ const struct Item gItems[] =
.name = _("Griseous Orb"),
.itemId = ITEM_GRISEOUS_ORB,
.price = 0,
#if defined(BATTLE_ENGINE)
.holdEffectParam = 20,
#endif
.holdEffect = HOLD_EFFECT_GRISEOUS_ORB,
.description = sGriseousOrbDesc,
.pocket = POCKET_ITEMS,