From dc128c608b2f40aeed940195062c308d7b1608e3 Mon Sep 17 00:00:00 2001 From: amiosi <44352097+amiosi@users.noreply.github.com> Date: Thu, 8 Jan 2026 05:35:21 -0500 Subject: [PATCH] add the type boost value for gen 3 sea incense (#8826) --- include/config/item.h | 2 +- src/data/items.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/config/item.h b/include/config/item.h index 8a5a0009dd..f260d76708 100644 --- a/include/config/item.h +++ b/include/config/item.h @@ -12,7 +12,7 @@ #define I_GRISEOUS_ORB_FORM_CHANGE GEN_LATEST // In Gen9+, the Griseous Orb no longer changes Giratina's form when held. #define I_GEM_BOOST_POWER GEN_LATEST // In Gen6+, the Gem boost power was reduced from 50% to 30%. #define I_USE_EVO_HELD_ITEMS_FROM_BAG FALSE // If TRUE, items such as Razor Claw or Electirizer will be usable from the bag to evolve a Pokémon just like in LA. -#define I_TYPE_BOOST_POWER GEN_LATEST // In Gen4+, all regular type boosting held items had their power increased from 10% to 20%. eg. Charcoal +#define I_TYPE_BOOST_POWER GEN_LATEST // In Gen4+, type-enhancing held items (such as Charcoal) had their multiplier increased from 1.1x to 1.2x. Sea Incense was changed from 1.05x to 1.2x. #define I_SELL_VALUE_FRACTION GEN_LATEST // In Gen9+, items sell for 1/4 of their value instead of 1/2. #define I_PRICE GEN_LATEST // Some items have varied in value across generations. #define I_BERRY_PRICE GEN_7 // Since Berries have become unplantable (Gen8+), their price has gone up. diff --git a/src/data/items.h b/src/data/items.h index 6d69de9c89..ad019fdbd9 100644 --- a/src/data/items.h +++ b/src/data/items.h @@ -8134,7 +8134,7 @@ const struct Item gItemsInfo[] = .name = ITEM_NAME("Sea Incense"), .price = (I_PRICE >= GEN_7) ? 2000 : 9600, .holdEffect = HOLD_EFFECT_TYPE_POWER, - .holdEffectParam = 20, + .holdEffectParam = I_TYPE_BOOST_POWER >= GEN_4 ? 20 : 5, .description = sSeaIncenseDesc, .pocket = POCKET_ITEMS, .sortType = ITEM_TYPE_INCENSE,