From 8e3f2d1e2d2bf4cf8cb20cb431f5c72a9d654ae9 Mon Sep 17 00:00:00 2001 From: LOuroboros Date: Tue, 30 Apr 2019 12:38:51 -0300 Subject: [PATCH 01/18] Sweet Heart and Big Malasada data. --- src/data/items.h | 29 +++++++++++++++++++++++++++++ src/data/pokemon/item_effects.h | 11 +++++++++++ src/data/text/item_descriptions.h | 10 ++++++++++ 3 files changed, 50 insertions(+) diff --git a/src/data/items.h b/src/data/items.h index 71860eb8d..47fce26dc 100644 --- a/src/data/items.h +++ b/src/data/items.h @@ -799,6 +799,35 @@ const struct Item gItems[] = .secondaryId = 0, }, + [ITEM_SWEET_HEART] = + { + .name = _("Sweet Heart"), + .itemId = ITEM_SWEET_HEART, + .price = 3000, + .holdEffectParam = 20, + .description = sSweetHeartDesc, + .pocket = POCKET_ITEMS, + .type = 1, + .fieldUseFunc = ItemUseOutOfBattle_Medicine, + .battleUsage = 1, + .battleUseFunc = ItemUseInBattle_Medicine, + .secondaryId = 0, + }, + + [ITEM_BIG_MALASADA] = + { + .name = _("Big Malasada"), + .itemId = ITEM_BIG_MALASADA, + .price = 350, + .description = sBigMalasadaDesc, + .pocket = POCKET_ITEMS, + .type = 1, + .fieldUseFunc = ItemUseOutOfBattle_Medicine, + .battleUsage = 1, + .battleUseFunc = ItemUseInBattle_Medicine, + .secondaryId = 0, + }, + [ITEM_SACRED_ASH] = { .name = _("Sacred Ash"), diff --git a/src/data/pokemon/item_effects.h b/src/data/pokemon/item_effects.h index 37efcc08a..b0dc15925 100644 --- a/src/data/pokemon/item_effects.h +++ b/src/data/pokemon/item_effects.h @@ -154,6 +154,15 @@ const u8 gItemEffect_BerryJuice[7] = { [6] = 20, }; +const u8 gItemEffect_SweetHeart[7] = { + [4] = ITEM4_HEAL_HP, + [6] = 20, +}; + +const u8 gItemEffect_BigMalasada[6] = { + [3] = ITEM3_STATUS_ALL, +}; + const u8 gItemEffect_SacredAsh[7] = { [0] = ITEM0_SACRED_ASH, [4] = ITEM4_REVIVE | ITEM4_HEAL_HP, @@ -413,6 +422,8 @@ const u8 *const gItemEffectTable[] = [ITEM_YELLOW_FLUTE - ITEM_POTION] = gItemEffect_YellowFlute, [ITEM_RED_FLUTE - ITEM_POTION] = gItemEffect_RedFlute, [ITEM_BERRY_JUICE - ITEM_POTION] = gItemEffect_BerryJuice, + [ITEM_SWEET_HEART - ITEM_POTION] = gItemEffect_SweetHeart, + [ITEM_BIG_MALASADA - ITEM_POTION] = gItemEffect_BigMalasada, [ITEM_SACRED_ASH - ITEM_POTION] = gItemEffect_SacredAsh, [ITEM_HP_UP - ITEM_POTION] = gItemEffect_HPUp, [ITEM_PROTEIN - ITEM_POTION] = gItemEffect_Protein, diff --git a/src/data/text/item_descriptions.h b/src/data/text/item_descriptions.h index f76e03a2a..a4dc8df07 100644 --- a/src/data/text/item_descriptions.h +++ b/src/data/text/item_descriptions.h @@ -270,6 +270,16 @@ static const u8 sBerryJuiceDesc[] = _( "that restores HP\n" "by 20 points."); +static const u8 sSweetHeartDesc[] = _( + "A sweet chocolate\n" + "that restores HP\n" + "by 20 points."); + +static const u8 sBigMalasadaDesc[] = _( + "Heals all the\n" + "status problems of\n" + "one POKéMON."); + static const u8 sSacredAshDesc[] = _( "Fully revives and\n" "restores all\n" From c5f6f5e58800e52cd29cdafef8ef5e2b024e3436 Mon Sep 17 00:00:00 2001 From: LOuroboros Date: Tue, 30 Apr 2019 13:06:08 -0300 Subject: [PATCH 02/18] Renamed X Special to X Special Attack and added the item data for Old Gateau and X Special Defense. --- src/data/items.h | 32 +++++++++++++++++++++++++++++-- src/data/pokemon/item_effects.h | 17 ++++++++++++++-- src/data/text/item_descriptions.h | 12 +++++++++++- 3 files changed, 56 insertions(+), 5 deletions(-) diff --git a/src/data/items.h b/src/data/items.h index 47fce26dc..45f9d056b 100644 --- a/src/data/items.h +++ b/src/data/items.h @@ -828,6 +828,20 @@ const struct Item gItems[] = .secondaryId = 0, }, + [ITEM_OLD_GATEAU] = + { + .name = _("Old Gateau"), + .itemId = ITEM_OLD_GATEAU, + .price = 350, + .description = sOldGateauDesc, + .pocket = POCKET_ITEMS, + .type = 1, + .fieldUseFunc = ItemUseOutOfBattle_Medicine, + .battleUsage = 1, + .battleUseFunc = ItemUseInBattle_Medicine, + .secondaryId = 0, + }, + [ITEM_SACRED_ASH] = { .name = _("Sacred Ash"), @@ -1112,10 +1126,24 @@ const struct Item gItems[] = [ITEM_X_SP_ATK] = { - .name = _("X Special"), + .name = _("X Sp. Atk."), .itemId = ITEM_X_SP_ATK, .price = 350, - .description = sXSpecialDesc, + .description = sXSpecialAttackDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .battleUsage = 2, + .battleUseFunc = ItemUseInBattle_StatIncrease, + .secondaryId = 0, + }, + + [ITEM_X_SP_DEF] = + { + .name = _("X Sp. Def."), + .itemId = ITEM_X_SP_DEF, + .price = 2000, + .description = sXSpecialDefenseDesc, .pocket = POCKET_ITEMS, .type = 4, .fieldUseFunc = ItemUseOutOfBattle_CannotUse, diff --git a/src/data/pokemon/item_effects.h b/src/data/pokemon/item_effects.h index b0dc15925..c2a11d782 100644 --- a/src/data/pokemon/item_effects.h +++ b/src/data/pokemon/item_effects.h @@ -163,6 +163,10 @@ const u8 gItemEffect_BigMalasada[6] = { [3] = ITEM3_STATUS_ALL, }; +const u8 gItemEffect_OldGateau[6] = { + [3] = ITEM3_STATUS_ALL, +}; + const u8 gItemEffect_SacredAsh[7] = { [0] = ITEM0_SACRED_ASH, [4] = ITEM4_REVIVE | ITEM4_HEAL_HP, @@ -286,7 +290,14 @@ const u8 gItemEffect_XAccuracy[8] = { [7] = 1, }; -const u8 gItemEffect_XSpecial[8] = { +const u8 gItemEffect_XSpecialAttack[8] = { + [2] = 1, + [5] = ITEM5_FRIENDSHIP_LOW | ITEM5_FRIENDSHIP_MID, + [6] = 1, + [7] = 1, +}; + +const u8 gItemEffect_XSpecialDefense[8] = { [2] = 1, [5] = ITEM5_FRIENDSHIP_LOW | ITEM5_FRIENDSHIP_MID, [6] = 1, @@ -424,6 +435,7 @@ const u8 *const gItemEffectTable[] = [ITEM_BERRY_JUICE - ITEM_POTION] = gItemEffect_BerryJuice, [ITEM_SWEET_HEART - ITEM_POTION] = gItemEffect_SweetHeart, [ITEM_BIG_MALASADA - ITEM_POTION] = gItemEffect_BigMalasada, + [ITEM_OLD_GATEAU - ITEM_POTION] = gItemEffect_OldGateau, [ITEM_SACRED_ASH - ITEM_POTION] = gItemEffect_SacredAsh, [ITEM_HP_UP - ITEM_POTION] = gItemEffect_HPUp, [ITEM_PROTEIN - ITEM_POTION] = gItemEffect_Protein, @@ -440,7 +452,8 @@ const u8 *const gItemEffectTable[] = [ITEM_X_DEFENSE - ITEM_POTION] = gItemEffect_XDefend, [ITEM_X_SPEED - ITEM_POTION] = gItemEffect_XSpeed, [ITEM_X_ACCURACY - ITEM_POTION] = gItemEffect_XAccuracy, - [ITEM_X_SP_ATK - ITEM_POTION] = gItemEffect_XSpecial, + [ITEM_X_SP_ATK - ITEM_POTION] = gItemEffect_XSpecialAttack, + [ITEM_X_SP_DEF - ITEM_POTION] = gItemEffect_XSpecialDefense, [ITEM_SUN_STONE - ITEM_POTION] = gItemEffect_EvoStone, [ITEM_MOON_STONE - ITEM_POTION] = gItemEffect_EvoStone, [ITEM_FIRE_STONE - ITEM_POTION] = gItemEffect_EvoStone, diff --git a/src/data/text/item_descriptions.h b/src/data/text/item_descriptions.h index a4dc8df07..813753505 100644 --- a/src/data/text/item_descriptions.h +++ b/src/data/text/item_descriptions.h @@ -280,6 +280,11 @@ static const u8 sBigMalasadaDesc[] = _( "status problems of\n" "one POKéMON."); +static const u8 sOldGateauDesc[] = _( + "Heals all the\n" + "status problems of\n" + "one POKéMON."); + static const u8 sSacredAshDesc[] = _( "Fully revives and\n" "restores all\n" @@ -392,11 +397,16 @@ static const u8 sXAccuracyDesc[] = _( "of attack moves\n" "during one battle."); -static const u8 sXSpecialDesc[] = _( +static const u8 sXSpecialAttackDesc[] = _( "Raises the stat\n" "SP. ATK during one\n" "battle."); +static const u8 sXSpecialDefenseDesc[] = _( + "Raises the stat\n" + "SP. DEF during one\n" + "battle."); + static const u8 sPokeDollDesc[] = _( "Use to flee from\n" "any battle with\n" From b1ab37820bb5a238a2c557d430f55ac55d8a9130 Mon Sep 17 00:00:00 2001 From: LOuroboros Date: Tue, 30 Apr 2019 13:39:58 -0300 Subject: [PATCH 03/18] Dawn, Dusk, Shiny and Ice Stones data. --- src/data/items.h | 61 +++++++++++++++++++++++++++++++ src/data/text/item_descriptions.h | 24 ++++++++++++ 2 files changed, 85 insertions(+) diff --git a/src/data/items.h b/src/data/items.h index 45f9d056b..ad42737af 100644 --- a/src/data/items.h +++ b/src/data/items.h @@ -1208,6 +1208,19 @@ const struct Item gItems[] = .secondaryId = 0, }, + [ITEM_ABILITY_CAPSULE] = + { + .name = _("Ab. Capsule"), + .itemId = ITEM_ABILITY_CAPSULE, + .price = 10000, + .holdEffectParam = 0, + .description = sAbilityCapsuleDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, // Placeholder + .secondaryId = 0, + }, + [ITEM_ESCAPE_ROPE] = { .name = _("Escape Rope"), @@ -1307,6 +1320,54 @@ const struct Item gItems[] = .secondaryId = 0, }, + [ITEM_DAWN_STONE] = + { + .name = _("Dawn Stone"), + .itemId = ITEM_DAWN_STONE, + .price = 2100, + .description = sDawnStoneDesc, + .pocket = POCKET_ITEMS, + .type = 1, + .fieldUseFunc = ItemUseOutOfBattle_EvolutionStone, + .secondaryId = 0, + }, + + [ITEM_DUSK_STONE] = + { + .name = _("Dusk Stone"), + .itemId = ITEM_DUSK_STONE, + .price = 2100, + .description = sDuskStoneDesc, + .pocket = POCKET_ITEMS, + .type = 1, + .fieldUseFunc = ItemUseOutOfBattle_EvolutionStone, + .secondaryId = 0, + }, + + [ITEM_SHINY_STONE] = + { + .name = _("Shiny Stone"), + .itemId = ITEM_SHINY_STONE, + .price = 2100, + .description = sShinyStoneDesc, + .pocket = POCKET_ITEMS, + .type = 1, + .fieldUseFunc = ItemUseOutOfBattle_EvolutionStone, + .secondaryId = 0, + }, + + [ITEM_ICE_STONE] = + { + .name = _("Ice Stone"), + .itemId = ITEM_ICE_STONE, + .price = 2100, + .description = sIceStoneDesc, + .pocket = POCKET_ITEMS, + .type = 1, + .fieldUseFunc = ItemUseOutOfBattle_EvolutionStone, + .secondaryId = 0, + }, + // Valuable items [ITEM_TINY_MUSHROOM] = diff --git a/src/data/text/item_descriptions.h b/src/data/text/item_descriptions.h index 813753505..3959afc77 100644 --- a/src/data/text/item_descriptions.h +++ b/src/data/text/item_descriptions.h @@ -428,6 +428,10 @@ static const u8 sMaxRepelDesc[] = _( "POKéMON for 250\n" "steps."); +static const u8 sAbilityCapsuleDesc[] = _( + "Switches a POKé-\n" + "MON's ability."); + static const u8 sEscapeRopeDesc[] = _( "Use to escape\n" "instantly from a\n" @@ -469,6 +473,26 @@ static const u8 sLeafStoneDesc[] = _( "species of POKéMON\n" "evolve."); +static const u8 sDawnStoneDesc[] = _( + "Makes certain\n" + "species of POKéMON\n" + "evolve."); + +static const u8 sDuskStoneDesc[] = _( + "Makes certain\n" + "species of POKéMON\n" + "evolve."); + +static const u8 sShinyStoneDesc[] = _( + "Makes certain\n" + "species of POKéMON\n" + "evolve."); + +static const u8 sIceStoneDesc[] = _( + "Makes certain\n" + "species of POKéMON\n" + "evolve."); + // Valuable items static const u8 sTinyMushroomDesc[] = _( "A plain mushroom\n" From f521bec102cb5e36926caded99c1b8ad18ae200f Mon Sep 17 00:00:00 2001 From: LOuroboros Date: Tue, 30 Apr 2019 14:09:51 -0300 Subject: [PATCH 04/18] Added the 7 Apricorns' data. --- src/data/items.h | 84 +++++++++++++++++++++++++++++++ src/data/text/item_descriptions.h | 36 +++++++++++++ 2 files changed, 120 insertions(+) diff --git a/src/data/items.h b/src/data/items.h index ad42737af..048e06e06 100644 --- a/src/data/items.h +++ b/src/data/items.h @@ -1370,6 +1370,90 @@ const struct Item gItems[] = // Valuable items + [ITEM_RED_APRICORN] = + { + .name = _("Red Apricorn"), + .itemId = ITEM_RED_APRICORN, + .price = 200, + .description = sRedApricornDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_BLUE_APRICORN] = + { + .name = _("Blu Apricorn"), + .itemId = ITEM_BLUE_APRICORN, + .price = 200, + .description = sBlueApricornDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_YELLOW_APRICORN] = + { + .name = _("Ylw Apricorn"), + .itemId = ITEM_YELLOW_APRICORN, + .price = 200, + .description = sYellowApricornDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_GREEN_APRICORN] = + { + .name = _("Grn Apricorn"), + .itemId = ITEM_GREEN_APRICORN, + .price = 200, + .description = sGreenApricornDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_PINK_APRICORN] = + { + .name = _("Pnk Apricorn"), + .itemId = ITEM_PINK_APRICORN, + .price = 200, + .description = sPinkApricornDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_WHITE_APRICORN] = + { + .name = _("Wht Apricorn"), + .itemId = ITEM_WHITE_APRICORN, + .price = 200, + .description = sWhiteApricornDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_BLACK_APRICORN] = + { + .name = _("Blk Apricorn"), + .itemId = ITEM_BLACK_APRICORN, + .price = 200, + .description = sBlackApricornDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + [ITEM_TINY_MUSHROOM] = { .name = _("TinyMushroom"), diff --git a/src/data/text/item_descriptions.h b/src/data/text/item_descriptions.h index 3959afc77..9dfbdd93c 100644 --- a/src/data/text/item_descriptions.h +++ b/src/data/text/item_descriptions.h @@ -494,6 +494,42 @@ static const u8 sIceStoneDesc[] = _( "evolve."); // Valuable items + +static const u8 sRedApricornDesc[] = _( + "A red apricorn.\n" + "It assails your\n" + "nostrils."); + +static const u8 sBlueApricornDesc[] = _( + "A blue apricorn.\n" + "It smells a bit\n" + "like grass."); + +static const u8 sYellowApricornDesc[] = _( + "A yellow apricorn.\n" + "It has an invigor-\n" + "ating scent."); + +static const u8 sGreenApricornDesc[] = _( + "A green apricorn.\n" + "It has a strange,\n" + "aromatic scent."); + +static const u8 sPinkApricornDesc[] = _( + "A pink apricorn.\n" + "It has a nice,\n" + "sweet scent."); + +static const u8 sWhiteApricornDesc[] = _( + "A white apricorn.\n" + "It doesn't smell\n" + "like anything."); + +static const u8 sBlackApricornDesc[] = _( + "A black apricorn.\n" + "It has an inde-\n" + "scribable scent."); + static const u8 sTinyMushroomDesc[] = _( "A plain mushroom\n" "that would sell\n" From 3d12e76411bbf7960e8c7fbed0cf3d6bbe6d987b Mon Sep 17 00:00:00 2001 From: LOuroboros Date: Tue, 30 Apr 2019 14:25:52 -0300 Subject: [PATCH 05/18] Added Oricorio's Nectars' data. --- src/data/items.h | 52 +++++++++++++++++++++++++++++++ src/data/text/item_descriptions.h | 20 ++++++++++++ 2 files changed, 72 insertions(+) diff --git a/src/data/items.h b/src/data/items.h index 048e06e06..c3478dbd1 100644 --- a/src/data/items.h +++ b/src/data/items.h @@ -1550,6 +1550,58 @@ const struct Item gItems[] = .secondaryId = 0, }, + [ITEM_RED_NECTAR] = + { + .name = _("Red Nectar"), + .itemId = ITEM_RED_NECTAR, + .price = 300, + .holdEffectParam = 0, + .description = sRedNectarDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, // Placeholder + .secondaryId = 0, + }, + + [ITEM_YELLOW_NECTAR] = + { + .name = _("Yellow Nectar"), + .itemId = ITEM_YELLOW_NECTAR, + .price = 300, + .holdEffectParam = 0, + .description = sYellowNectarDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, // Placeholder + .secondaryId = 0, + }, + + [ITEM_PINK_NECTAR] = + { + .name = _("Pink Nectar"), + .itemId = ITEM_PINK_NECTAR, + .price = 300, + .holdEffectParam = 0, + .description = sPinkNectarDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, // Placeholder + .secondaryId = 0, + }, + + [ITEM_PURPLE_NECTAR] = + { + .name = _("Purple Nectar"), + .itemId = ITEM_PURPLE_NECTAR, + .price = 300, + .holdEffectParam = 0, + .description = sPurpleNectarDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, // Placeholder + .secondaryId = 0, + }, + // Mail [ITEM_ORANGE_MAIL] = { diff --git a/src/data/text/item_descriptions.h b/src/data/text/item_descriptions.h index 9dfbdd93c..10989e3eb 100644 --- a/src/data/text/item_descriptions.h +++ b/src/data/text/item_descriptions.h @@ -570,6 +570,26 @@ static const u8 sHeartScaleDesc[] = _( "It is coveted by\n" "collectors."); +static const u8 sRedNectarDesc[] = _( + "Flower nectar that\n" + "changes the form\n" + "of certain POKéMON."); + +static const u8 sYellowNectarDesc[] = _( + "Flower nectar that\n" + "changes the form\n" + "of certain POKéMON."); + +static const u8 sPinkNectarDesc[] = _( + "Flower nectar that\n" + "changes the form\n" + "of certain POKéMON."); + +static const u8 sPurpleNectarDesc[] = _( + "Flower nectar that\n" + "changes the form\n" + "of certain POKéMON."); + // Mail static const u8 sOrangeMailDesc[] = _( "A ZIGZAGOON-print\n" From 850c93ec64234a19ffb40b401c2266f367086dfc Mon Sep 17 00:00:00 2001 From: LOuroboros Date: Tue, 30 Apr 2019 14:44:39 -0300 Subject: [PATCH 06/18] Rare Bone data. --- src/data/items.h | 12 ++++++++++++ src/data/text/item_descriptions.h | 5 +++++ 2 files changed, 17 insertions(+) diff --git a/src/data/items.h b/src/data/items.h index c3478dbd1..952e23716 100644 --- a/src/data/items.h +++ b/src/data/items.h @@ -1602,6 +1602,18 @@ const struct Item gItems[] = .secondaryId = 0, }, + [ITEM_RARE_BONE] = + { + .name = _("Rare Bone"), + .itemId = ITEM_RARE_BONE, + .price = 5000, + .description = sRareBoneDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + // Mail [ITEM_ORANGE_MAIL] = { diff --git a/src/data/text/item_descriptions.h b/src/data/text/item_descriptions.h index 10989e3eb..767c88d1a 100644 --- a/src/data/text/item_descriptions.h +++ b/src/data/text/item_descriptions.h @@ -590,6 +590,11 @@ static const u8 sPurpleNectarDesc[] = _( "changes the form\n" "of certain POKéMON."); +static const u8 sRareBoneDesc[] = _( + "A very rare bone.\n" + "It can be sold at\n" + "a high price."); + // Mail static const u8 sOrangeMailDesc[] = _( "A ZIGZAGOON-print\n" From e0540dff468e6da166aebbd864cfc24543958a9d Mon Sep 17 00:00:00 2001 From: LOuroboros Date: Tue, 30 Apr 2019 15:00:51 -0300 Subject: [PATCH 07/18] Oval Stone, Protector, Electirizer and Magmarizer data. --- src/data/items.h | 48 +++++++++++++++++++++++++++++++ src/data/text/item_descriptions.h | 20 +++++++++++++ 2 files changed, 68 insertions(+) diff --git a/src/data/items.h b/src/data/items.h index 952e23716..bf7ce3d56 100644 --- a/src/data/items.h +++ b/src/data/items.h @@ -2898,6 +2898,54 @@ const struct Item gItems[] = .secondaryId = 0, }, + [ITEM_OVAL_STONE] = + { + .name = _("Oval Stone"), + .itemId = ITEM_OVAL_STONE, + .price = 2000, + .description = sOvalStoneDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_PROTECTOR] = + { + .name = _("Protector"), + .itemId = ITEM_PROTECTOR, + .price = 2000, + .description = sProtectorDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_ELECTIRIZER] = + { + .name = _("Electirizer"), + .itemId = ITEM_ELECTIRIZER, + .price = 2000, + .description = sElectirizerDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_MAGMARIZER] = + { + .name = _("Magmarizer"), + .itemId = ITEM_MAGMARIZER, + .price = 2000, + .description = sMagmarizerDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + [ITEM_LIGHT_BALL] = { .name = _("Light Ball"), diff --git a/src/data/text/item_descriptions.h b/src/data/text/item_descriptions.h index 767c88d1a..2ad0f49c8 100644 --- a/src/data/text/item_descriptions.h +++ b/src/data/text/item_descriptions.h @@ -1078,6 +1078,26 @@ static const u8 sDragonScaleDesc[] = _( "held by DRAGON-\n" "type POKéMON."); +static const u8 sOvalStoneDesc[] = _( + "Helps a certain\n" + "POKéMON to evolve.\n" + "Looks like an egg."); + +static const u8 sProtectorDesc[] = _( + "A certain POKéMON\n" + "loves it. It's quite\n" + "heavy."); + +static const u8 sElectirizerDesc[] = _( + "A certain POKéMON\n" + "loves it. It's full\n" + "of electricity."); + +static const u8 sMagmarizerDesc[] = _( + "A certain POKéMON\n" + "loves it. It's full\n" + "of magma energy."); + static const u8 sLightBallDesc[] = _( "A hold item that\n" "raises the SP. ATK\n" From 331642772838b348f9387f8bcd3bc124aa3b49be Mon Sep 17 00:00:00 2001 From: LOuroboros Date: Tue, 30 Apr 2019 15:34:38 -0300 Subject: [PATCH 08/18] Dubious Disc, Reaper Cloth, Razor Claw, Razor Fang and Prism Scale data. --- src/data/items.h | 63 +++++++++++++++++++++++++++++++ src/data/text/item_descriptions.h | 25 ++++++++++++ 2 files changed, 88 insertions(+) diff --git a/src/data/items.h b/src/data/items.h index bf7ce3d56..c75bcd3ff 100644 --- a/src/data/items.h +++ b/src/data/items.h @@ -2946,6 +2946,69 @@ const struct Item gItems[] = .secondaryId = 0, }, + [ITEM_DUBIOUS_DISC] = + { + .name = _("Dubious Disc"), + .itemId = ITEM_DUBIOUS_DISC, + .price = 2000, + .description = sDubiousDiscDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_REAPER_CLOTH] = + { + .name = _("Reaper Cloth"), + .itemId = ITEM_REAPER_CLOTH, + .price = 2000, + .description = sReaperClothDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_RAZOR_CLAW] = + { + .name = _("Razor Claw"), + .itemId = ITEM_RAZOR_CLAW, + .price = 2000, + .holdEffect = HOLD_EFFECT_NONE, // Placeholder. + .description = sRazorClawDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_RAZOR_FANG] = + { + .name = _("Razor Fang"), + .itemId = ITEM_RAZOR_FANG, + .price = 2000, + .holdEffect = HOLD_EFFECT_FLINCH, + .holdEffectParam = 10, + .description = sRazorFangDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_PRISM_SCALE] = + { + .name = _("Prism Scale"), + .itemId = ITEM_PRISM_SCALE, + .price = 2000, + .description = sPrismScaleDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + [ITEM_LIGHT_BALL] = { .name = _("Light Ball"), diff --git a/src/data/text/item_descriptions.h b/src/data/text/item_descriptions.h index 2ad0f49c8..1783b66f8 100644 --- a/src/data/text/item_descriptions.h +++ b/src/data/text/item_descriptions.h @@ -1098,6 +1098,31 @@ static const u8 sMagmarizerDesc[] = _( "loves it. It's full\n" "of magma energy."); +static const u8 sDubiousDiscDesc[] = _( + "A certain POKéMON\n" + "loves it. It's over-\n" + "flowing with data."); + +static const u8 sReaperClothDesc[] = _( + "A certain POKéMON\n" + "loves it. It's imbued\n" + "with strong energy."); + +static const u8 sRazorClawDesc[] = _( + "Helps a certain\n" + "POKéMON to evolve.\n" + "It's a sharp claw."); + +static const u8 sRazorFangDesc[] = _( + "Helps a certain\n" + "POKéMON to evolve.\n" + "It's a sharp fang."); + +static const u8 sPrismScaleDesc[] = _( + "A mysterious scale.\n" + "It helps a certain\n" + "POKéMON to evolve."); + static const u8 sLightBallDesc[] = _( "A hold item that\n" "raises the SP. ATK\n" From a48c8f6aba5e13ad759ec6bb20677935d0a52516 Mon Sep 17 00:00:00 2001 From: LOuroboros Date: Tue, 30 Apr 2019 15:42:36 -0300 Subject: [PATCH 09/18] Sachet and Whipped Dream data. --- src/data/items.h | 24 ++++++++++++++++++++++++ src/data/text/item_descriptions.h | 10 ++++++++++ 2 files changed, 34 insertions(+) diff --git a/src/data/items.h b/src/data/items.h index c75bcd3ff..34b30d311 100644 --- a/src/data/items.h +++ b/src/data/items.h @@ -3009,6 +3009,30 @@ const struct Item gItems[] = .secondaryId = 0, }, + [ITEM_WHIPPED_DREAM] = + { + .name = _("WhippedDream"), + .itemId = ITEM_WHIPPED_DREAM, + .price = 2000, + .description = sWhippedDreamDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_SACHET] = + { + .name = _("Sachet"), + .itemId = ITEM_SACHET, + .price = 2000, + .description = sSachetDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + [ITEM_LIGHT_BALL] = { .name = _("Light Ball"), diff --git a/src/data/text/item_descriptions.h b/src/data/text/item_descriptions.h index 1783b66f8..28d82a292 100644 --- a/src/data/text/item_descriptions.h +++ b/src/data/text/item_descriptions.h @@ -1123,6 +1123,16 @@ static const u8 sPrismScaleDesc[] = _( "It helps a certain\n" "POKéMON to evolve."); +static const u8 sWhippedDreamDesc[] = _( + "A soft and sweet\n" + "treat loved by some\n" + "POKéMON."); + +static const u8 sSachetDesc[] = _( + "A sachet filled with\n" + "perfumes loved by\n" + "some POKéMON."); + static const u8 sLightBallDesc[] = _( "A hold item that\n" "raises the SP. ATK\n" From 71472b1439723c2ceeffd8b9e53f22a46591305d Mon Sep 17 00:00:00 2001 From: LOuroboros Date: Tue, 30 Apr 2019 16:07:48 -0300 Subject: [PATCH 10/18] Power items data. --- src/data/items.h | 78 +++++++++++++++++++++++++++++++ src/data/text/item_descriptions.h | 34 +++++++++++++- 2 files changed, 110 insertions(+), 2 deletions(-) diff --git a/src/data/items.h b/src/data/items.h index 34b30d311..5cb64c1a9 100644 --- a/src/data/items.h +++ b/src/data/items.h @@ -3283,6 +3283,84 @@ const struct Item gItems[] = .secondaryId = 0, }, + [ITEM_POWER_BRACER] = + { + .name = _("Power Bracer"), + .itemId = ITEM_POWER_BRACER, + .price = 3000, + .holdEffect = HOLD_EFFECT_NONE, // Placeholder? + .description = sPowerBracerDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_POWER_BELT] = + { + .name = _("Power Belt"), + .itemId = ITEM_POWER_BELT, + .price = 3000, + .holdEffect = HOLD_EFFECT_NONE, // Placeholder? + .description = sPowerBeltDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_POWER_LENS] = + { + .name = _("Power Lens"), + .itemId = ITEM_POWER_LENS, + .price = 3000, + .holdEffect = HOLD_EFFECT_NONE, // Placeholder? + .description = sPowerLensDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_POWER_BAND] = + { + .name = _("Power Band"), + .itemId = ITEM_POWER_BAND, + .price = 3000, + .holdEffect = HOLD_EFFECT_NONE, // Placeholder? + .description = sPowerBandDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_POWER_ANKLET] = + { + .name = _("Power Anklet"), + .itemId = ITEM_POWER_ANKLET, + .price = 3000, + .holdEffect = HOLD_EFFECT_NONE, // Placeholder? + .description = sPowerAnkletDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_POWER_WEIGHT] = + { + .name = _("Power Weight"), + .itemId = ITEM_POWER_WEIGHT, + .price = 3000, + .holdEffect = HOLD_EFFECT_NONE, // Placeholder? + .description = sPowerWeightDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + [ITEM_SEA_INCENSE] = { .name = _("Sea Incense"), diff --git a/src/data/text/item_descriptions.h b/src/data/text/item_descriptions.h index 28d82a292..8a8575909 100644 --- a/src/data/text/item_descriptions.h +++ b/src/data/text/item_descriptions.h @@ -1104,8 +1104,8 @@ static const u8 sDubiousDiscDesc[] = _( "flowing with data."); static const u8 sReaperClothDesc[] = _( - "A certain POKéMON\n" - "loves it. It's imbued\n" + "Loved by a certain\n" + "POKéMON. Imbued\n" "with strong energy."); static const u8 sRazorClawDesc[] = _( @@ -1222,6 +1222,36 @@ static const u8 sShellBellDesc[] = _( "restores HP upon\n" "striking the foe."); +static const u8 sPowerBracerDesc[] = _( + "A hold item that\n" + "promotes ATK gain,\n" + "but reduces SPEED."); + +static const u8 sPowerBeltDesc[] = _( + "A hold item that\n" + "promotes DEF gain,\n" + "but reduces SPEED."); + +static const u8 sPowerLensDesc[] = _( + "Hold item that pro-\n" + "motes SP. ATK gain,\n" + "but reduces SPEED."); + +static const u8 sPowerBandDesc[] = _( + "Hold item that pro-\n" + "motes SP. DEF gain,\n" + "but reduces SPEED."); + +static const u8 sPowerAnkletDesc[] = _( + "A hold item that\n" + "promotes SPD gain,\n" + "but reduces SPEED."); + +static const u8 sPowerWeightDesc[] = _( + "A hold item that\n" + "promotes HP gain,\n" + "but reduces SPEED."); + static const u8 sSeaIncenseDesc[] = _( "A hold item that\n" "slightly boosts\n" From cda17700c391c537210c0b568b2563fc4f3ef720 Mon Sep 17 00:00:00 2001 From: LOuroboros Date: Tue, 30 Apr 2019 19:41:10 -0300 Subject: [PATCH 11/18] Defined a lot of hold effects and added more items data. --- include/constants/hold_effects.h | 26 ++++-- src/data/items.h | 142 +++++++++++++++++++++++++++++- src/data/text/item_descriptions.h | 58 +++++++++++- 3 files changed, 213 insertions(+), 13 deletions(-) diff --git a/include/constants/hold_effects.h b/include/constants/hold_effects.h index feede12fb..494c4f506 100644 --- a/include/constants/hold_effects.h +++ b/include/constants/hold_effects.h @@ -106,20 +106,30 @@ #define HOLD_EFFECT_FLOAT_STONE 115 #define HOLD_EFFECT_EVIOLITE 116 #define HOLD_EFFECT_ASSAULT_VEST 117 -#define HOLD_EFFECT_BINDING_BAND 118 -#define HOLD_EFFECT_DRIVE 119 -#define HOLD_EFFECT_GEMS 120 +#define HOLD_EFFECT_DRIVE 118 +#define HOLD_EFFECT_GEMS 119 +#define HOLD_EFFECT_ROCKY_HELMET 120 +#define HOLD_EFFECT_AIR_BALLOON 121 +#define HOLD_EFFECT_RED_CARD 122 +#define HOLD_EFFECT_RING_TARGET 123 +#define HOLD_EFFECT_BINDING_BAND 124 +#define HOLD_EFFECT_EJECT_BUTTON 125 +#define HOLD_EFFECT_ABSORB_BULB 126 +#define HOLD_EFFECT_CELL_BATTERY 127 // Gen6 hold effects -#define HOLD_EFFECT_FAIRY_POWER 129 -#define HOLD_EFFECT_MEGA_STONE 130 -#define HOLD_EFFECT_SAFETY_GOOGLES 131 +#define HOLD_EFFECT_FAIRY_POWER 129 +#define HOLD_EFFECT_MEGA_STONE 130 +#define HOLD_EFFECT_SAFETY_GOOGLES 131 +#define HOLD_EFFECT_LUMINOUS_MOSS 132 +#define HOLD_EFFECT_SNOWBALL 133 +#define HOLD_EFFECT_WEAKNESS_POLICY 134 // Gen7 hold effects #define HOLD_EFFECT_PROTECTIVE_PADS 149 #define HOLD_EFFECT_TERRAIN_EXTENDER 150 -#define HOLD_EFFECT_SEEDS 151 -#define HOLD_EFFECT_ADRENALINE_ORB 152 +#define HOLD_EFFECT_SEEDS 151 +#define HOLD_EFFECT_ADRENALINE_ORB 152 #define HOLD_EFFECT_CHOICE(holdEffect)((holdEffect == HOLD_EFFECT_CHOICE_BAND || holdEffect == HOLD_EFFECT_CHOICE_SCARF || holdEffect == HOLD_EFFECT_CHOICE_SPECS)) diff --git a/src/data/items.h b/src/data/items.h index 5cb64c1a9..db8e38962 100644 --- a/src/data/items.h +++ b/src/data/items.h @@ -5628,11 +5628,67 @@ const struct Item gItems[] = .secondaryId = 0, }, + [ITEM_ROCKY_HELMET] = + { + .name = _("Rocky Helmet"), + .itemId = ITEM_ROCKY_HELMET, + .price = 2000, + .holdEffect = HOLD_EFFECT_ROCKY_HELMET, + .holdEffectParam = 0, + .description = sRockyHelmetDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_AIR_BALLOON] = + { + .name = _("Air Balloon"), + .itemId = ITEM_AIR_BALLOON, + .price = 2000, + .holdEffect = HOLD_EFFECT_AIR_BALLOON, + .holdEffectParam = 0, + .description = sAirBalloonDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_RED_CARD] = + { + .name = _("Red Card"), + .itemId = ITEM_RED_CARD, + .price = 2000, + .holdEffect = HOLD_EFFECT_RED_CARD, + .holdEffectParam = 0, + .description = sRedCardDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_RING_TARGET] = + { + .name = _("Ring Target"), + .itemId = ITEM_RING_TARGET, + .price = 2000, + .holdEffect = HOLD_EFFECT_RING_TARGET, + .holdEffectParam = 0, + .description = sRingTargetDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + [ITEM_BINDING_BAND] = { .name = _("Binding Band"), .itemId = ITEM_BINDING_BAND, - .price = 200, + .price = 2000, .holdEffect = HOLD_EFFECT_BINDING_BAND, .description = sBindingBandDesc, .pocket = POCKET_ITEMS, @@ -5641,6 +5697,90 @@ const struct Item gItems[] = .secondaryId = 0, }, + [ITEM_EJECT_BUTTON] = + { + .name = _("Eject Button"), + .itemId = ITEM_EJECT_BUTTON, + .price = 2000, + .holdEffect = HOLD_EFFECT_EJECT_BUTTON, + .holdEffectParam = 0, + .description = sEjectButtonDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_ABSORB_BULB] = + { + .name = _("Absorb Bulb"), + .itemId = ITEM_ABSORB_BULB, + .price = 2000, + .holdEffect = HOLD_EFFECT_ABSORB_BULB, + .holdEffectParam = 0, + .description = sAbsorbBulbDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_CELL_BATTERY] = + { + .name = _("Cell Battery"), + .itemId = ITEM_CELL_BATTERY, + .price = 2000, + .holdEffect = HOLD_EFFECT_CELL_BATTERY, + .holdEffectParam = 0, + .description = sCellBatteryDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_LUMINOUS_MOSS] = + { + .name = _("LuminousMoss"), + .itemId = ITEM_LUMINOUS_MOSS, + .price = 2000, + .holdEffect = HOLD_EFFECT_LUMINOUS_MOSS, + .holdEffectParam = 0, + .description = sLuminousMossDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_SNOWBALL] = + { + .name = _("Snowball"), + .itemId = ITEM_SNOWBALL, + .price = 2000, + .holdEffect = HOLD_EFFECT_SNOWBALL, + .holdEffectParam = 0, + .description = sSnowballDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_WEAKNESS_POLICY] = + { + .name = _("Weak. Policy"), + .itemId = ITEM_WEAKNESS_POLICY, + .price = 1000, + .holdEffect = HOLD_EFFECT_WEAKNESS_POLICY, + .holdEffectParam = 0, + .description = sWeaknessPolicyDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + [ITEM_DOUSE_DRIVE] = { .name = _("Douse Drive"), diff --git a/src/data/text/item_descriptions.h b/src/data/text/item_descriptions.h index 8a8575909..fa898bd1c 100644 --- a/src/data/text/item_descriptions.h +++ b/src/data/text/item_descriptions.h @@ -2126,11 +2126,61 @@ static const u8 sFloatStoneDesc[] = _( "reduces the weight\n" "of Pokémon when held."); +static const u8 sRockyHelmetDesc[] = _( + "Hurts the foe if\n" + "they touch its\n" + "holder."); + +static const u8 sAirBalloonDesc[] = _( + "Elevates the holder\n" + "in the air. If hit,\n" + "this item will burst."); + +static const u8 sRedCardDesc[] = _( + "Switches out the\n" + "foe if they hit the\n" + "holder."); + +static const u8 sRingTargetDesc[] = _( + "Moves that wouldn't\n" + "have effect will\n" + "land on its holder."); + static const u8 sBindingBandDesc[] = _( - "This band increases\n" - "the power of binding\n" + "Increases the\n" + "power of binding\n" "moves when held."); +static const u8 sEjectButtonDesc[] = _( + "Switches out the\n" + "user if they're hit\n" + "by the foe."); + +static const u8 sAbsorbBulbDesc[] = _( + "Raises SP. ATK if\n" + "the holder is hit by\n" + "a Water-type move."); + +static const u8 sCellBatteryDesc[] = _( + "Raises ATK if the\n" + "holder is hit by an\n" + "Electric-type move."); + +static const u8 sLuminousMossDesc[] = _( + "Raises SP. DEF if\n" + "the holder is hit by\n" + "a Water-type move."); + +static const u8 sSnowballDesc[] = _( + "Raises ATK if its\n" + "holder is hit by an\n" + "Ice-type move."); + +static const u8 sWeaknessPolicyDesc[] = _( + "If hit by a Super\n" + "Effective move, ups\n" + "ATK and SP. ATK."); + static const u8 sDouseDriveDesc[] = _( "Changes Genesect's\n" "Techno Blast so it\n" @@ -2243,8 +2293,8 @@ static const u8 sFairyGemDesc[] = _( static const u8 sAssaultVestDesc[] = _( "Raises Sp. Def but\n" - "prevents the use of\n" - "status moves."); + "prevents the use\n" + "of status moves."); static const u8 sPixiePlateDesc[] = _( "A stone tablet that\n" From e77960d2f36a7e029bc72a656d81056441cc8152 Mon Sep 17 00:00:00 2001 From: LOuroboros Date: Tue, 30 Apr 2019 20:07:12 -0300 Subject: [PATCH 12/18] Updated the effects of the Sea and Lax Incenses, and added the item data of the Gen. 4 incenses. --- src/data/items.h | 105 ++++++++++++++++++++++++++++-- src/data/text/item_descriptions.h | 35 ++++++++++ 2 files changed, 136 insertions(+), 4 deletions(-) diff --git a/src/data/items.h b/src/data/items.h index db8e38962..1b2ad0c77 100644 --- a/src/data/items.h +++ b/src/data/items.h @@ -3365,9 +3365,9 @@ const struct Item gItems[] = { .name = _("Sea Incense"), .itemId = ITEM_SEA_INCENSE, - .price = 9600, + .price = 2000, .holdEffect = HOLD_EFFECT_WATER_POWER, - .holdEffectParam = 5, + .holdEffectParam = 20, .description = sSeaIncenseDesc, .pocket = POCKET_ITEMS, .type = 4, @@ -3379,9 +3379,9 @@ const struct Item gItems[] = { .name = _("Lax Incense"), .itemId = ITEM_LAX_INCENSE, - .price = 9600, + .price = 5000, .holdEffect = HOLD_EFFECT_EVASION_UP, - .holdEffectParam = 5, + .holdEffectParam = 10, .description = sLaxIncenseDesc, .pocket = POCKET_ITEMS, .type = 4, @@ -3389,6 +3389,103 @@ const struct Item gItems[] = .secondaryId = 0, }, + [ITEM_ODD_INCENSE] = + { + .name = _("Odd Incense"), + .itemId = ITEM_ODD_INCENSE, + .price = 2000, + .holdEffect = HOLD_EFFECT_PSYCHIC_POWER, + .holdEffectParam = 20, + .description = sOddIncenseDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_ROCK_INCENSE] = + { + .name = _("Rock Incense"), + .itemId = ITEM_ROCK_INCENSE, + .price = 2000, + .holdEffect = HOLD_EFFECT_ROCK_POWER, + .holdEffectParam = 20, + .description = sRockIncenseDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_FULL_INCENSE] = + { + .name = _("Full Incense"), + .itemId = ITEM_FULL_INCENSE, + .price = 5000, + .holdEffect = HOLD_EFFECT_LAGGING_TAIL, + .holdEffectParam = 5, + .description = sFullIncenseDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_WAVE_INCENSE] = + { + .name = _("Wave Incense"), + .itemId = ITEM_WAVE_INCENSE, + .price = 2000, + .holdEffect = HOLD_EFFECT_WATER_POWER, + .holdEffectParam = 20, + .description = sWaveIncenseDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_ROSE_INCENSE] = + { + .name = _("Rose Incense"), + .itemId = ITEM_ROSE_INCENSE, + .price = 2000, + .holdEffect = HOLD_EFFECT_GRASS_POWER, + .holdEffectParam = 20, + .description = sRoseIncenseDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_LUCK_INCENSE] = + { + .name = _("Luck Incense"), + .itemId = ITEM_LUCK_INCENSE, + .price = 11000, + .holdEffect = HOLD_EFFECT_DOUBLE_PRIZE, + .holdEffectParam = 10, + .description = sLuckIncenseDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_PURE_INCENSE] = + { + .name = _("Pure Incense"), + .itemId = ITEM_PURE_INCENSE, + .price = 6000, + .holdEffect = HOLD_EFFECT_REPEL, + .description = sPureIncenseDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + [ITEM_LUCKY_PUNCH] = { .name = _("Lucky Punch"), diff --git a/src/data/text/item_descriptions.h b/src/data/text/item_descriptions.h index fa898bd1c..6afa07198 100644 --- a/src/data/text/item_descriptions.h +++ b/src/data/text/item_descriptions.h @@ -1262,6 +1262,41 @@ static const u8 sLaxIncenseDesc[] = _( "slightly lowers the\n" "foe's accuracy."); +static const u8 sOddIncenseDesc[] = _( + "A hold item that\n" + "boosts PSYCHIC-\n" + "type moves."); + +static const u8 sRockIncenseDesc[] = _( + "A hold item that\n" + "raises the power of\n" + "ROCK-type moves."); + +static const u8 sFullIncenseDesc[] = _( + "A held item that\n" + "makes the holder\n" + "move slower."); + +static const u8 sWaveIncenseDesc[] = _( + "A hold item that\n" + "slightly boosts\n" + "WATER-type moves."); + +static const u8 sRoseIncenseDesc[] = _( + "A hold item that\n" + "raises the power of\n" + "GRASS-type moves."); + +static const u8 sLuckIncenseDesc[] = _( + "Doubles money in\n" + "battle if the\n" + "holder takes part."); + +static const u8 sPureIncenseDesc[] = _( + "A hold item that\n" + "helps repel wild\n" + "POKéMON."); + static const u8 sLuckyPunchDesc[] = _( "A hold item that\n" "raises CHANSEY's\n" From 90e94f50d973c37d866d74629ee662872e3b0dad Mon Sep 17 00:00:00 2001 From: LOuroboros Date: Tue, 30 Apr 2019 22:07:43 -0300 Subject: [PATCH 13/18] Defined a hold effect for every battle-related item, and added all the missing items' data. --- include/constants/hold_effects.h | 26 +- src/data/items.h | 401 +++++++++++++++++++++++++++--- src/data/text/item_descriptions.h | 120 +++++++++ 3 files changed, 510 insertions(+), 37 deletions(-) diff --git a/include/constants/hold_effects.h b/include/constants/hold_effects.h index 494c4f506..759931cd1 100644 --- a/include/constants/hold_effects.h +++ b/include/constants/hold_effects.h @@ -100,7 +100,14 @@ #define HOLD_EFFECT_ADAMANT_ORB 94 #define HOLD_EFFECT_LUSTROUS_ORB 95 #define HOLD_EFFECT_GRISEOUS_ORB 96 -#define HOLD_EFFECT_RESIST_BERRY 97 +#define HOLD_EFFECT_GRACIDEA 97 +#define HOLD_EFFECT_RESIST_BERRY 98 +#define HOLD_EFFECT_POWER_BRACER 99 +#define HOLD_EFFECT_POWER_BELT 100 +#define HOLD_EFFECT_POWER_LENS 101 +#define HOLD_EFFECT_POWER_BAND 102 +#define HOLD_EFFECT_POWER_ANKLET 103 +#define HOLD_EFFECT_POWER_WEIGHT 104 // Gen5 hold effects #define HOLD_EFFECT_FLOAT_STONE 115 @@ -130,6 +137,23 @@ #define HOLD_EFFECT_TERRAIN_EXTENDER 150 #define HOLD_EFFECT_SEEDS 151 #define HOLD_EFFECT_ADRENALINE_ORB 152 +#define HOLD_EFFECT_BUG_MEMORY 153 +#define HOLD_EFFECT_DARK_MEMORY 154 +#define HOLD_EFFECT_DRAGON_MEMORY 155 +#define HOLD_EFFECT_ELECTRIC_MEMORY 156 +#define HOLD_EFFECT_FAIRY_MEMORY 157 +#define HOLD_EFFECT_FIGHTING_MEMORY 158 +#define HOLD_EFFECT_FIRE_MEMORY 159 +#define HOLD_EFFECT_FLYING_MEMORY 160 +#define HOLD_EFFECT_GHOST_MEMORY 161 +#define HOLD_EFFECT_GRASS_MEMORY 162 +#define HOLD_EFFECT_GROUND_MEMORY 163 +#define HOLD_EFFECT_ICE_MEMORY 164 +#define HOLD_EFFECT_POISON_MEMORY 165 +#define HOLD_EFFECT_PSYCHIC_MEMORY 166 +#define HOLD_EFFECT_ROCK_MEMORY 167 +#define HOLD_EFFECT_STEEL_MEMORY 168 +#define HOLD_EFFECT_WATER_MEMORY 169 #define HOLD_EFFECT_CHOICE(holdEffect)((holdEffect == HOLD_EFFECT_CHOICE_BAND || holdEffect == HOLD_EFFECT_CHOICE_SCARF || holdEffect == HOLD_EFFECT_CHOICE_SPECS)) diff --git a/src/data/items.h b/src/data/items.h index 1b2ad0c77..6de0fc741 100644 --- a/src/data/items.h +++ b/src/data/items.h @@ -3288,7 +3288,7 @@ const struct Item gItems[] = .name = _("Power Bracer"), .itemId = ITEM_POWER_BRACER, .price = 3000, - .holdEffect = HOLD_EFFECT_NONE, // Placeholder? + .holdEffect = HOLD_EFFECT_POWER_BRACER, .description = sPowerBracerDesc, .pocket = POCKET_ITEMS, .type = 4, @@ -3301,7 +3301,7 @@ const struct Item gItems[] = .name = _("Power Belt"), .itemId = ITEM_POWER_BELT, .price = 3000, - .holdEffect = HOLD_EFFECT_NONE, // Placeholder? + .holdEffect = HOLD_EFFECT_POWER_BELT, .description = sPowerBeltDesc, .pocket = POCKET_ITEMS, .type = 4, @@ -3314,7 +3314,7 @@ const struct Item gItems[] = .name = _("Power Lens"), .itemId = ITEM_POWER_LENS, .price = 3000, - .holdEffect = HOLD_EFFECT_NONE, // Placeholder? + .holdEffect = HOLD_EFFECT_POWER_LENS, .description = sPowerLensDesc, .pocket = POCKET_ITEMS, .type = 4, @@ -3327,7 +3327,7 @@ const struct Item gItems[] = .name = _("Power Band"), .itemId = ITEM_POWER_BAND, .price = 3000, - .holdEffect = HOLD_EFFECT_NONE, // Placeholder? + .holdEffect = HOLD_EFFECT_POWER_BAND, .description = sPowerBandDesc, .pocket = POCKET_ITEMS, .type = 4, @@ -3340,7 +3340,7 @@ const struct Item gItems[] = .name = _("Power Anklet"), .itemId = ITEM_POWER_ANKLET, .price = 3000, - .holdEffect = HOLD_EFFECT_NONE, // Placeholder? + .holdEffect = HOLD_EFFECT_POWER_ANKLET, .description = sPowerAnkletDesc, .pocket = POCKET_ITEMS, .type = 4, @@ -3353,7 +3353,7 @@ const struct Item gItems[] = .name = _("Power Weight"), .itemId = ITEM_POWER_WEIGHT, .price = 3000, - .holdEffect = HOLD_EFFECT_NONE, // Placeholder? + .holdEffect = HOLD_EFFECT_POWER_WEIGHT, .description = sPowerWeightDesc, .pocket = POCKET_ITEMS, .type = 4, @@ -3945,32 +3945,6 @@ const struct Item gItems[] = .secondaryId = 0, }, - [ITEM_ROOT_FOSSIL] = - { - .name = _("Root Fossil"), - .itemId = ITEM_ROOT_FOSSIL, - .price = 0, - .description = sRootFossilDesc, - .importance = 1, - .pocket = POCKET_KEY_ITEMS, - .type = 4, - .fieldUseFunc = ItemUseOutOfBattle_CannotUse, - .secondaryId = 0, - }, - - [ITEM_CLAW_FOSSIL] = - { - .name = _("Claw Fossil"), - .itemId = ITEM_CLAW_FOSSIL, - .price = 0, - .description = sClawFossilDesc, - .importance = 1, - .pocket = POCKET_KEY_ITEMS, - .type = 4, - .fieldUseFunc = ItemUseOutOfBattle_CannotUse, - .secondaryId = 0, - }, - [ITEM_DEVON_SCOPE] = { .name = _("Devon Scope"), @@ -4796,14 +4770,40 @@ const struct Item gItems[] = .secondaryId = 0, }, + [ITEM_ARMOR_FOSSIL] = + { + .name = _("Armor Fossil"), + .itemId = ITEM_ARMOR_FOSSIL, + .price = 0, + .description = sArmorFossilDesc, + .importance = 0, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_SKULL_FOSSIL] = + { + .name = _("Skull Fossil"), + .itemId = ITEM_SKULL_FOSSIL, + .price = 0, + .description = sSkullFossilDesc, + .importance = 0, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + [ITEM_HELIX_FOSSIL] = { .name = _("Helix Fossil"), .itemId = ITEM_HELIX_FOSSIL, .price = 0, .description = sHelixFossilDesc, - .importance = 1, - .pocket = POCKET_KEY_ITEMS, + .importance = 0, + .pocket = POCKET_ITEMS, .type = 4, .fieldUseFunc = ItemUseOutOfBattle_CannotUse, .secondaryId = 0, @@ -4815,8 +4815,86 @@ const struct Item gItems[] = .itemId = ITEM_DOME_FOSSIL, .price = 0, .description = sDomeFossilDesc, - .importance = 1, - .pocket = POCKET_KEY_ITEMS, + .importance = 0, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_ROOT_FOSSIL] = + { + .name = _("Root Fossil"), + .itemId = ITEM_ROOT_FOSSIL, + .price = 0, + .description = sRootFossilDesc, + .importance = 0, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_CLAW_FOSSIL] = + { + .name = _("Claw Fossil"), + .itemId = ITEM_CLAW_FOSSIL, + .price = 0, + .description = sClawFossilDesc, + .importance = 0, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_COVER_FOSSIL] = + { + .name = _("Covet Fossil"), + .itemId = ITEM_COVER_FOSSIL, + .price = 0, + .description = sCoverFossilDesc, + .importance = 0, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_PLUME_FOSSIL] = + { + .name = _("Plume Fossil"), + .itemId = ITEM_PLUME_FOSSIL, + .price = 0, + .description = sPlumeFossilDesc, + .importance = 0, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_JAW_FOSSIL] = + { + .name = _("Jaw Fossil"), + .itemId = ITEM_JAW_FOSSIL, + .price = 0, + .description = sJawFossilDesc, + .importance = 0, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_SAIL_FOSSIL] = + { + .name = _("Sail Fossil"), + .itemId = ITEM_SAIL_FOSSIL, + .price = 0, + .description = sSailFossilDesc, + .importance = 0, + .pocket = POCKET_ITEMS, .type = 4, .fieldUseFunc = ItemUseOutOfBattle_CannotUse, .secondaryId = 0, @@ -5474,6 +5552,257 @@ const struct Item gItems[] = .secondaryId = 0, }, + [ITEM_GRACIDEA] = + { + .name = _("Gracidea"), + .itemId = ITEM_GRACIDEA, + .price = 200, + .holdEffect = HOLD_EFFECT_GRACIDEA, + .description = sGracideaDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_BUG_MEMORY] = + { + .name = _("Bug Memory"), + .itemId = ITEM_BUG_MEMORY, + .price = 1000, + .holdEffect = HOLD_EFFECT_BUG_MEMORY, + .holdEffectParam = 0, + .description = sBugMemoryDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_DARK_MEMORY] = + { + .name = _("Dark Memory"), + .itemId = ITEM_DARK_MEMORY, + .price = 1000, + .holdEffect = HOLD_EFFECT_DARK_MEMORY, + .holdEffectParam = 0, + .description = sDarkMemoryDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_DRAGON_MEMORY] = + { + .name = _("Dragon Memory"), + .itemId = ITEM_DRAGON_MEMORY, + .price = 1000, + .holdEffect = HOLD_EFFECT_DRAGON_MEMORY, + .holdEffectParam = 0, + .description = sDragonMemoryDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_ELECTRIC_MEMORY] = + { + .name = _("Elec. Memory"), + .itemId = ITEM_ELECTRIC_MEMORY, + .price = 1000, + .holdEffect = HOLD_EFFECT_ELECTRIC_MEMORY, + .holdEffectParam = 0, + .description = sElectricMemoryDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_FAIRY_MEMORY] = + { + .name = _("Fairy Memory"), + .itemId = ITEM_FAIRY_MEMORY, + .price = 1000, + .holdEffect = HOLD_EFFECT_FAIRY_MEMORY, + .holdEffectParam = 0, + .description = sFairyMemoryDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_FIGHTING_MEMORY] = + { + .name = _("Fight Memory"), + .itemId = ITEM_FIGHTING_MEMORY, + .price = 1000, + .holdEffect = HOLD_EFFECT_FIGHTING_MEMORY, + .holdEffectParam = 0, + .description = sFightingMemoryDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_FIRE_MEMORY] = + { + .name = _("Fire Memory"), + .itemId = ITEM_FIRE_MEMORY, + .price = 1000, + .holdEffect = HOLD_EFFECT_FIRE_MEMORY, + .holdEffectParam = 0, + .description = sFireMemoryDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_FLYING_MEMORY] = + { + .name = _("Flying Memory"), + .itemId = ITEM_FLYING_MEMORY, + .price = 1000, + .holdEffect = HOLD_EFFECT_FLYING_MEMORY, + .holdEffectParam = 0, + .description = sFlyingMemoryDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_GHOST_MEMORY] = + { + .name = _("Ghost Memory"), + .itemId = ITEM_GHOST_MEMORY, + .price = 1000, + .holdEffect = HOLD_EFFECT_GHOST_MEMORY, + .holdEffectParam = 0, + .description = sGhostMemoryDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_GRASS_MEMORY] = + { + .name = _("Grass Memory"), + .itemId = ITEM_GRASS_MEMORY, + .price = 1000, + .holdEffect = HOLD_EFFECT_GRASS_MEMORY, + .holdEffectParam = 0, + .description = sGrassMemoryDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_GROUND_MEMORY] = + { + .name = _("Ground Memory"), + .itemId = ITEM_GROUND_MEMORY, + .price = 1000, + .holdEffect = HOLD_EFFECT_GROUND_MEMORY, + .holdEffectParam = 0, + .description = sGroundMemoryDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_ICE_MEMORY] = + { + .name = _("Ice Memory"), + .itemId = ITEM_ICE_MEMORY, + .price = 1000, + .holdEffect = HOLD_EFFECT_ICE_MEMORY, + .holdEffectParam = 0, + .description = sIceMemoryDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_POISON_MEMORY] = + { + .name = _("Poison Memory"), + .itemId = ITEM_POISON_MEMORY, + .price = 1000, + .holdEffect = HOLD_EFFECT_POISON_MEMORY, + .holdEffectParam = 0, + .description = sPoisonMemoryDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_PSYCHIC_MEMORY] = + { + .name = _("PsychicMemory"), + .itemId = ITEM_PSYCHIC_MEMORY, + .price = 1000, + .holdEffect = HOLD_EFFECT_PSYCHIC_MEMORY, + .holdEffectParam = 0, + .description = sPsychicMemoryDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_ROCK_MEMORY] = + { + .name = _("Rock Memory"), + .itemId = ITEM_ROCK_MEMORY, + .price = 1000, + .holdEffect = HOLD_EFFECT_ROCK_MEMORY, + .holdEffectParam = 0, + .description = sRockMemoryDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_STEEL_MEMORY] = + { + .name = _("Steel Memory"), + .itemId = ITEM_STEEL_MEMORY, + .price = 1000, + .holdEffect = HOLD_EFFECT_STEEL_MEMORY, + .holdEffectParam = 0, + .description = sSteelMemoryDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_WATER_MEMORY] = + { + .name = _("Water Memory"), + .itemId = ITEM_WATER_MEMORY, + .price = 1000, + .holdEffect = HOLD_EFFECT_WATER_MEMORY, + .holdEffectParam = 0, + .description = sWaterMemoryDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + [ITEM_FLAME_PLATE] = { .name = _("Flame Plate"), diff --git a/src/data/text/item_descriptions.h b/src/data/text/item_descriptions.h index 6afa07198..40a0c2f0b 100644 --- a/src/data/text/item_descriptions.h +++ b/src/data/text/item_descriptions.h @@ -1819,6 +1819,16 @@ static const u8 sLiftKeyDesc[] = _( "used in TEAM\n" "ROCKET's HIDEOUT."); +static const u8 sArmorFossilDesc[] = _( + "A piece of a\n" + "prehistoric POKé-\n" + "MON's head."); + +static const u8 sSkullFossilDesc[] = _( + "A piece of a\n" + "prehistoric POKé-\n" + "MON's head."); + static const u8 sHelixFossilDesc[] = _( "A piece of an\n" "ancient marine\n" @@ -1829,6 +1839,26 @@ static const u8 sDomeFossilDesc[] = _( "ancient marine\n" "POKéMON's shell."); +static const u8 sCoverFossilDesc[] = _( + "A piece of a\n" + "prehistoric POKé-\n" + "MON's back."); + +static const u8 sPlumeFossilDesc[] = _( + "A piece of a\n" + "prehistoric POKé-\n" + "MON's wing."); + +static const u8 sJawFossilDesc[] = _( + "A piece of a prehis-\n" + "toric POKéMON's\n" + "large jaw."); + +static const u8 sSailFossilDesc[] = _( + "A piece of a prehis-\n" + "toric POKéMON's\n" + "skin sail."); + static const u8 sSilphScopeDesc[] = _( "SILPH CO's scope\n" "makes unseeable\n" @@ -2071,6 +2101,96 @@ static const u8 sGriseousOrbDesc[] = _( "Giratina's Dragon\n" "and Ghost-type moves."); +static const u8 sGracideaDesc[] = _( + "Bouquets made with\n" + "it are offered as a\n" + "token of gratitude."); + +static const u8 sBugMemoryDesc[] = _( + "A disc with Bug\n" + "type data. It swaps\n" + "Silvally's type."); + +static const u8 sDarkMemoryDesc[] = _( + "A disc with Dark\n" + "type data. It swaps\n" + "Silvally's type."); + +static const u8 sDragonMemoryDesc[] = _( + "A disc with Dragon\n" + "type data. It swaps\n" + "Silvally's type."); + +static const u8 sElectricMemoryDesc[] = _( + "A disc with Electric\n" + "type data. It swaps\n" + "Silvally's type."); + +static const u8 sFairyMemoryDesc[] = _( + "A disc with Fairy\n" + "type data. It swaps\n" + "Silvally's type."); + +static const u8 sFightingMemoryDesc[] = _( + "A disc with Fighting\n" + "type data. It swaps\n" + "Silvally's type."); + +static const u8 sFireMemoryDesc[] = _( + "A disc with Fire\n" + "type data. It swaps\n" + "Silvally's type."); + +static const u8 sFlyingMemoryDesc[] = _( + "A disc with Flying\n" + "type data. It swaps\n" + "Silvally's type."); + +static const u8 sGhostMemoryDesc[] = _( + "A disc with Ghost\n" + "type data. It swaps\n" + "Silvally's type."); + +static const u8 sGrassMemoryDesc[] = _( + "A disc with Grass\n" + "type data. It swaps\n" + "Silvally's type."); + +static const u8 sGroundMemoryDesc[] = _( + "A disc with Ground\n" + "type data. It swaps\n" + "Silvally's type."); + +static const u8 sIceMemoryDesc[] = _( + "A disc with Ice\n" + "type data. It swaps\n" + "Silvally's type."); + +static const u8 sPoisonMemoryDesc[] = _( + "A disc with Poison\n" + "type data. It swaps\n" + "Silvally's type."); + +static const u8 sPsychicMemoryDesc[] = _( + "A disc with Psychic\n" + "type data. It swaps\n" + "Silvally's type."); + +static const u8 sRockMemoryDesc[] = _( + "A disc with Rock\n" + "type data. It swaps\n" + "Silvally's type."); + +static const u8 sSteelMemoryDesc[] = _( + "A disc with Steel\n" + "type data. It swaps\n" + "Silvally's type."); + +static const u8 sWaterMemoryDesc[] = _( + "A disc with Water\n" + "type data. It swaps\n" + "Silvally's type."); + static const u8 sFlamePlateDesc[] = _( "A stone tablet that\n" "boosts the power of\n" From 36d83719504431fbc97d93209190320edddcdbdc Mon Sep 17 00:00:00 2001 From: LOuroboros Date: Thu, 2 May 2019 15:11:06 -0300 Subject: [PATCH 14/18] Added the sprites and the data for the missing items. --- .../items/icon_palettes/ability_capsule.pal | 19 ++ graphics/items/icon_palettes/absorb_bulb.pal | 19 ++ graphics/items/icon_palettes/air_balloon.pal | 19 ++ graphics/items/icon_palettes/armor_fossil.pal | 19 ++ graphics/items/icon_palettes/babiri_berry.pal | 19 ++ graphics/items/icon_palettes/big_malasada.pal | 19 ++ .../items/icon_palettes/black_apricorn.pal | 19 ++ .../items/icon_palettes/blue_apricorn.pal | 19 ++ graphics/items/icon_palettes/bug_memory.pal | 19 ++ graphics/items/icon_palettes/cell_battery.pal | 19 ++ graphics/items/icon_palettes/charti_berry.pal | 19 ++ graphics/items/icon_palettes/chilan_berry.pal | 19 ++ graphics/items/icon_palettes/chople_berry.pal | 19 ++ graphics/items/icon_palettes/coba_berry.pal | 19 ++ graphics/items/icon_palettes/colbur_berry.pal | 19 ++ graphics/items/icon_palettes/cover_fossil.pal | 19 ++ graphics/items/icon_palettes/custap_berry.pal | 19 ++ graphics/items/icon_palettes/dark_memory.pal | 19 ++ graphics/items/icon_palettes/dawn_stone.pal | 19 ++ .../items/icon_palettes/dragon_memory.pal | 19 ++ graphics/items/icon_palettes/dubious_disc.pal | 19 ++ graphics/items/icon_palettes/dusk_stone.pal | 19 ++ graphics/items/icon_palettes/eject_button.pal | 19 ++ graphics/items/icon_palettes/electirizer.pal | 19 ++ .../items/icon_palettes/electric_memory.pal | 19 ++ graphics/items/icon_palettes/fairy_memory.pal | 19 ++ .../items/icon_palettes/fighting_memory.pal | 19 ++ graphics/items/icon_palettes/fire_memory.pal | 19 ++ .../items/icon_palettes/flying_memory.pal | 19 ++ graphics/items/icon_palettes/full_incense.pal | 19 ++ graphics/items/icon_palettes/ghost_memory.pal | 19 ++ graphics/items/icon_palettes/gracidea.pal | 19 ++ graphics/items/icon_palettes/grass_memory.pal | 19 ++ .../items/icon_palettes/green_apricorn.pal | 19 ++ .../items/icon_palettes/ground_memory.pal | 19 ++ graphics/items/icon_palettes/haban_berry.pal | 19 ++ graphics/items/icon_palettes/ice_memory.pal | 19 ++ graphics/items/icon_palettes/ice_stone.pal | 19 ++ graphics/items/icon_palettes/jaboca_berry.pal | 19 ++ graphics/items/icon_palettes/jaw_fossil.pal | 19 ++ graphics/items/icon_palettes/kasib_berry.pal | 19 ++ graphics/items/icon_palettes/kebia_berry.pal | 19 ++ graphics/items/icon_palettes/kee_berry.pal | 19 ++ graphics/items/icon_palettes/luck_incense.pal | 19 ++ .../items/icon_palettes/luminous_moss.pal | 19 ++ graphics/items/icon_palettes/magmarizer.pal | 19 ++ .../items/icon_palettes/maranga_berry.pal | 19 ++ graphics/items/icon_palettes/micle_berry.pal | 19 ++ graphics/items/icon_palettes/occa_berry.pal | 19 ++ graphics/items/icon_palettes/odd_incense.pal | 19 ++ graphics/items/icon_palettes/odd_keystone.pal | 19 ++ graphics/items/icon_palettes/old_gateau.pal | 19 ++ graphics/items/icon_palettes/oval_stone.pal | 19 ++ graphics/items/icon_palettes/passho_berry.pal | 19 ++ graphics/items/icon_palettes/payapa_berry.pal | 19 ++ .../items/icon_palettes/pink_apricorn.pal | 19 ++ graphics/items/icon_palettes/pink_nectar.pal | 19 ++ graphics/items/icon_palettes/plume_fossil.pal | 19 ++ .../items/icon_palettes/poison_memory.pal | 19 ++ graphics/items/icon_palettes/power_anklet.pal | 19 ++ graphics/items/icon_palettes/power_band.pal | 19 ++ graphics/items/icon_palettes/power_belt.pal | 19 ++ graphics/items/icon_palettes/power_bracer.pal | 19 ++ graphics/items/icon_palettes/power_lens.pal | 19 ++ graphics/items/icon_palettes/power_weight.pal | 19 ++ graphics/items/icon_palettes/prism_scale.pal | 19 ++ graphics/items/icon_palettes/protector.pal | 19 ++ .../items/icon_palettes/psychic_memory.pal | 19 ++ graphics/items/icon_palettes/pure_incense.pal | 19 ++ .../items/icon_palettes/purple_nectar.pal | 19 ++ graphics/items/icon_palettes/rare_bone.pal | 19 ++ graphics/items/icon_palettes/razor_claw.pal | 19 ++ graphics/items/icon_palettes/razor_fang.pal | 19 ++ graphics/items/icon_palettes/reaper_cloth.pal | 19 ++ graphics/items/icon_palettes/red_apricorn.pal | 19 ++ graphics/items/icon_palettes/red_card.pal | 19 ++ graphics/items/icon_palettes/red_nectar.pal | 19 ++ graphics/items/icon_palettes/rindo_berry.pal | 19 ++ graphics/items/icon_palettes/ring_target.pal | 19 ++ graphics/items/icon_palettes/rock_incense.pal | 19 ++ graphics/items/icon_palettes/rock_memory.pal | 19 ++ graphics/items/icon_palettes/rocky_helmet.pal | 19 ++ graphics/items/icon_palettes/rose_incense.pal | 19 ++ graphics/items/icon_palettes/roseli_berry.pal | 19 ++ graphics/items/icon_palettes/rowap_berry.pal | 19 ++ graphics/items/icon_palettes/sachet.pal | 19 ++ graphics/items/icon_palettes/sail_fossil.pal | 19 ++ graphics/items/icon_palettes/shiny_stone.pal | 19 ++ graphics/items/icon_palettes/shuca_berry.pal | 19 ++ graphics/items/icon_palettes/skull_fossil.pal | 19 ++ graphics/items/icon_palettes/snowball.pal | 19 ++ graphics/items/icon_palettes/steel_memory.pal | 19 ++ graphics/items/icon_palettes/sweet_heart.pal | 19 ++ graphics/items/icon_palettes/tanga_berry.pal | 19 ++ graphics/items/icon_palettes/wacan_berry.pal | 19 ++ graphics/items/icon_palettes/water_memory.pal | 19 ++ graphics/items/icon_palettes/wave_incense.pal | 19 ++ .../items/icon_palettes/weakness_policy.pal | 19 ++ .../items/icon_palettes/whipped_dream.pal | 19 ++ .../items/icon_palettes/white_apricorn.pal | 19 ++ .../items/icon_palettes/x_special_defense.pal | 19 ++ graphics/items/icon_palettes/yache_berry.pal | 19 ++ .../items/icon_palettes/yellow_apricorn.pal | 19 ++ .../items/icon_palettes/yellow_nectar.pal | 19 ++ graphics/items/icons/ability_capsule.png | Bin 0 -> 349 bytes graphics/items/icons/absorb_bulb.png | Bin 0 -> 365 bytes graphics/items/icons/air_balloon.png | Bin 0 -> 343 bytes graphics/items/icons/armor_fossil.png | Bin 0 -> 457 bytes graphics/items/icons/babiri_berry.png | Bin 0 -> 391 bytes graphics/items/icons/big_malasada.png | Bin 0 -> 393 bytes graphics/items/icons/black_apricorn.png | Bin 0 -> 368 bytes graphics/items/icons/blue_apricorn.png | Bin 0 -> 368 bytes graphics/items/icons/bug_memory.png | Bin 0 -> 423 bytes graphics/items/icons/cell_battery.png | Bin 0 -> 289 bytes graphics/items/icons/charti_berry.png | Bin 0 -> 359 bytes graphics/items/icons/chilan_berry.png | Bin 0 -> 377 bytes graphics/items/icons/chople_berry.png | Bin 0 -> 388 bytes graphics/items/icons/coba_berry.png | Bin 0 -> 370 bytes graphics/items/icons/colbur_berry.png | Bin 0 -> 376 bytes graphics/items/icons/cover_fossil.png | Bin 0 -> 418 bytes graphics/items/icons/custap_berry.png | Bin 0 -> 406 bytes graphics/items/icons/dark_memory.png | Bin 0 -> 419 bytes graphics/items/icons/dawn_stone.png | Bin 0 -> 375 bytes graphics/items/icons/dragon_memory.png | Bin 0 -> 420 bytes graphics/items/icons/dubious_disc.png | Bin 0 -> 377 bytes graphics/items/icons/dusk_stone.png | Bin 0 -> 376 bytes graphics/items/icons/eject_button.png | Bin 0 -> 370 bytes graphics/items/icons/electirizer.png | Bin 0 -> 371 bytes graphics/items/icons/electric_memory.png | Bin 0 -> 421 bytes graphics/items/icons/fairy_memory.png | Bin 0 -> 422 bytes graphics/items/icons/fighting_memory.png | Bin 0 -> 419 bytes graphics/items/icons/fire_memory.png | Bin 0 -> 422 bytes graphics/items/icons/flying_memory.png | Bin 0 -> 420 bytes graphics/items/icons/full_incense.png | Bin 0 -> 409 bytes graphics/items/icons/ghost_memory.png | Bin 0 -> 421 bytes graphics/items/icons/gracidea.png | Bin 0 -> 446 bytes graphics/items/icons/grass_memory.png | Bin 0 -> 421 bytes graphics/items/icons/green_apricorn.png | Bin 0 -> 368 bytes graphics/items/icons/ground_memory.png | Bin 0 -> 420 bytes graphics/items/icons/haban_berry.png | Bin 0 -> 401 bytes graphics/items/icons/ice_memory.png | Bin 0 -> 415 bytes graphics/items/icons/ice_stone.png | Bin 0 -> 422 bytes graphics/items/icons/jaboca_berry.png | Bin 0 -> 395 bytes graphics/items/icons/jaw_fossil.png | Bin 0 -> 444 bytes graphics/items/icons/kasib_berry.png | Bin 0 -> 403 bytes graphics/items/icons/kebia_berry.png | Bin 0 -> 393 bytes graphics/items/icons/kee_berry.png | Bin 0 -> 447 bytes graphics/items/icons/luck_incense.png | Bin 0 -> 404 bytes graphics/items/icons/luminous_moss.png | Bin 0 -> 385 bytes graphics/items/icons/magmarizer.png | Bin 0 -> 376 bytes graphics/items/icons/maranga_berry.png | Bin 0 -> 401 bytes graphics/items/icons/micle_berry.png | Bin 0 -> 340 bytes graphics/items/icons/occa_berry.png | Bin 0 -> 366 bytes graphics/items/icons/odd_incense.png | Bin 0 -> 402 bytes graphics/items/icons/odd_keystone.png | Bin 0 -> 395 bytes graphics/items/icons/old_gateau.png | Bin 0 -> 330 bytes graphics/items/icons/oval_stone.png | Bin 0 -> 364 bytes graphics/items/icons/passho_berry.png | Bin 0 -> 383 bytes graphics/items/icons/payapa_berry.png | Bin 0 -> 390 bytes graphics/items/icons/pink_apricorn.png | Bin 0 -> 368 bytes graphics/items/icons/pink_nectar.png | Bin 0 -> 379 bytes graphics/items/icons/plume_fossil.png | Bin 0 -> 393 bytes graphics/items/icons/poison_memory.png | Bin 0 -> 419 bytes graphics/items/icons/power_anklet.png | Bin 0 -> 415 bytes graphics/items/icons/power_band.png | Bin 0 -> 417 bytes graphics/items/icons/power_belt.png | Bin 0 -> 412 bytes graphics/items/icons/power_bracer.png | Bin 0 -> 401 bytes graphics/items/icons/power_lens.png | Bin 0 -> 428 bytes graphics/items/icons/power_weight.png | Bin 0 -> 404 bytes graphics/items/icons/prism_scale.png | Bin 0 -> 325 bytes graphics/items/icons/protector.png | Bin 0 -> 381 bytes graphics/items/icons/psychic_memory.png | Bin 0 -> 420 bytes graphics/items/icons/pure_incense.png | Bin 0 -> 401 bytes graphics/items/icons/purple_nectar.png | Bin 0 -> 379 bytes graphics/items/icons/rare_bone.png | Bin 0 -> 331 bytes graphics/items/icons/razor_claw.png | Bin 0 -> 360 bytes graphics/items/icons/razor_fang.png | Bin 0 -> 342 bytes graphics/items/icons/reaper_cloth.png | Bin 0 -> 401 bytes graphics/items/icons/red_apricorn.png | Bin 0 -> 368 bytes graphics/items/icons/red_card.png | Bin 0 -> 311 bytes graphics/items/icons/red_nectar.png | Bin 0 -> 380 bytes graphics/items/icons/rindo_berry.png | Bin 0 -> 353 bytes graphics/items/icons/ring_target.png | Bin 0 -> 330 bytes graphics/items/icons/rock_incense.png | Bin 0 -> 407 bytes graphics/items/icons/rock_memory.png | Bin 0 -> 414 bytes graphics/items/icons/rocky_helmet.png | Bin 0 -> 385 bytes graphics/items/icons/rose_incense.png | Bin 0 -> 408 bytes graphics/items/icons/roseli_berry.png | Bin 0 -> 400 bytes graphics/items/icons/rowap_berry.png | Bin 0 -> 440 bytes graphics/items/icons/sachet.png | Bin 0 -> 369 bytes graphics/items/icons/sail_fossil.png | Bin 0 -> 438 bytes graphics/items/icons/shiny_stone.png | Bin 0 -> 390 bytes graphics/items/icons/shuca_berry.png | Bin 0 -> 369 bytes graphics/items/icons/skull_fossil.png | Bin 0 -> 450 bytes graphics/items/icons/snowball.png | Bin 0 -> 333 bytes graphics/items/icons/steel_memory.png | Bin 0 -> 419 bytes graphics/items/icons/sweet_heart.png | Bin 0 -> 328 bytes graphics/items/icons/tanga_berry.png | Bin 0 -> 416 bytes graphics/items/icons/wacan_berry.png | Bin 0 -> 386 bytes graphics/items/icons/water_memory.png | Bin 0 -> 417 bytes graphics/items/icons/wave_incense.png | Bin 0 -> 400 bytes graphics/items/icons/weakness_policy.png | Bin 0 -> 316 bytes graphics/items/icons/whipped_dream.png | Bin 0 -> 392 bytes graphics/items/icons/white_apricorn.png | Bin 0 -> 367 bytes graphics/items/icons/x_special_defense.png | Bin 0 -> 410 bytes graphics/items/icons/yache_berry.png | Bin 0 -> 395 bytes graphics/items/icons/yellow_apricorn.png | Bin 0 -> 368 bytes graphics/items/icons/yellow_nectar.png | Bin 0 -> 379 bytes include/graphics.h | 210 +++++++++++- src/data/graphics/items.h | 314 ++++++++++++++++++ src/data/item_icon_table.h | 105 ++++++ 211 files changed, 2604 insertions(+), 1 deletion(-) create mode 100755 graphics/items/icon_palettes/ability_capsule.pal create mode 100755 graphics/items/icon_palettes/absorb_bulb.pal create mode 100755 graphics/items/icon_palettes/air_balloon.pal create mode 100755 graphics/items/icon_palettes/armor_fossil.pal create mode 100755 graphics/items/icon_palettes/babiri_berry.pal create mode 100755 graphics/items/icon_palettes/big_malasada.pal create mode 100755 graphics/items/icon_palettes/black_apricorn.pal create mode 100755 graphics/items/icon_palettes/blue_apricorn.pal create mode 100755 graphics/items/icon_palettes/bug_memory.pal create mode 100755 graphics/items/icon_palettes/cell_battery.pal create mode 100755 graphics/items/icon_palettes/charti_berry.pal create mode 100755 graphics/items/icon_palettes/chilan_berry.pal create mode 100755 graphics/items/icon_palettes/chople_berry.pal create mode 100755 graphics/items/icon_palettes/coba_berry.pal create mode 100755 graphics/items/icon_palettes/colbur_berry.pal create mode 100755 graphics/items/icon_palettes/cover_fossil.pal create mode 100755 graphics/items/icon_palettes/custap_berry.pal create mode 100755 graphics/items/icon_palettes/dark_memory.pal create mode 100755 graphics/items/icon_palettes/dawn_stone.pal create mode 100755 graphics/items/icon_palettes/dragon_memory.pal create mode 100755 graphics/items/icon_palettes/dubious_disc.pal create mode 100755 graphics/items/icon_palettes/dusk_stone.pal create mode 100755 graphics/items/icon_palettes/eject_button.pal create mode 100755 graphics/items/icon_palettes/electirizer.pal create mode 100755 graphics/items/icon_palettes/electric_memory.pal create mode 100755 graphics/items/icon_palettes/fairy_memory.pal create mode 100755 graphics/items/icon_palettes/fighting_memory.pal create mode 100755 graphics/items/icon_palettes/fire_memory.pal create mode 100755 graphics/items/icon_palettes/flying_memory.pal create mode 100755 graphics/items/icon_palettes/full_incense.pal create mode 100755 graphics/items/icon_palettes/ghost_memory.pal create mode 100755 graphics/items/icon_palettes/gracidea.pal create mode 100755 graphics/items/icon_palettes/grass_memory.pal create mode 100755 graphics/items/icon_palettes/green_apricorn.pal create mode 100755 graphics/items/icon_palettes/ground_memory.pal create mode 100755 graphics/items/icon_palettes/haban_berry.pal create mode 100755 graphics/items/icon_palettes/ice_memory.pal create mode 100755 graphics/items/icon_palettes/ice_stone.pal create mode 100755 graphics/items/icon_palettes/jaboca_berry.pal create mode 100755 graphics/items/icon_palettes/jaw_fossil.pal create mode 100755 graphics/items/icon_palettes/kasib_berry.pal create mode 100755 graphics/items/icon_palettes/kebia_berry.pal create mode 100755 graphics/items/icon_palettes/kee_berry.pal create mode 100755 graphics/items/icon_palettes/luck_incense.pal create mode 100755 graphics/items/icon_palettes/luminous_moss.pal create mode 100755 graphics/items/icon_palettes/magmarizer.pal create mode 100755 graphics/items/icon_palettes/maranga_berry.pal create mode 100755 graphics/items/icon_palettes/micle_berry.pal create mode 100755 graphics/items/icon_palettes/occa_berry.pal create mode 100755 graphics/items/icon_palettes/odd_incense.pal create mode 100755 graphics/items/icon_palettes/odd_keystone.pal create mode 100755 graphics/items/icon_palettes/old_gateau.pal create mode 100755 graphics/items/icon_palettes/oval_stone.pal create mode 100755 graphics/items/icon_palettes/passho_berry.pal create mode 100755 graphics/items/icon_palettes/payapa_berry.pal create mode 100755 graphics/items/icon_palettes/pink_apricorn.pal create mode 100755 graphics/items/icon_palettes/pink_nectar.pal create mode 100755 graphics/items/icon_palettes/plume_fossil.pal create mode 100755 graphics/items/icon_palettes/poison_memory.pal create mode 100755 graphics/items/icon_palettes/power_anklet.pal create mode 100755 graphics/items/icon_palettes/power_band.pal create mode 100755 graphics/items/icon_palettes/power_belt.pal create mode 100755 graphics/items/icon_palettes/power_bracer.pal create mode 100755 graphics/items/icon_palettes/power_lens.pal create mode 100755 graphics/items/icon_palettes/power_weight.pal create mode 100755 graphics/items/icon_palettes/prism_scale.pal create mode 100755 graphics/items/icon_palettes/protector.pal create mode 100755 graphics/items/icon_palettes/psychic_memory.pal create mode 100755 graphics/items/icon_palettes/pure_incense.pal create mode 100755 graphics/items/icon_palettes/purple_nectar.pal create mode 100755 graphics/items/icon_palettes/rare_bone.pal create mode 100755 graphics/items/icon_palettes/razor_claw.pal create mode 100755 graphics/items/icon_palettes/razor_fang.pal create mode 100755 graphics/items/icon_palettes/reaper_cloth.pal create mode 100755 graphics/items/icon_palettes/red_apricorn.pal create mode 100755 graphics/items/icon_palettes/red_card.pal create mode 100755 graphics/items/icon_palettes/red_nectar.pal create mode 100755 graphics/items/icon_palettes/rindo_berry.pal create mode 100755 graphics/items/icon_palettes/ring_target.pal create mode 100755 graphics/items/icon_palettes/rock_incense.pal create mode 100755 graphics/items/icon_palettes/rock_memory.pal create mode 100755 graphics/items/icon_palettes/rocky_helmet.pal create mode 100755 graphics/items/icon_palettes/rose_incense.pal create mode 100755 graphics/items/icon_palettes/roseli_berry.pal create mode 100755 graphics/items/icon_palettes/rowap_berry.pal create mode 100755 graphics/items/icon_palettes/sachet.pal create mode 100755 graphics/items/icon_palettes/sail_fossil.pal create mode 100755 graphics/items/icon_palettes/shiny_stone.pal create mode 100755 graphics/items/icon_palettes/shuca_berry.pal create mode 100755 graphics/items/icon_palettes/skull_fossil.pal create mode 100755 graphics/items/icon_palettes/snowball.pal create mode 100755 graphics/items/icon_palettes/steel_memory.pal create mode 100755 graphics/items/icon_palettes/sweet_heart.pal create mode 100755 graphics/items/icon_palettes/tanga_berry.pal create mode 100755 graphics/items/icon_palettes/wacan_berry.pal create mode 100755 graphics/items/icon_palettes/water_memory.pal create mode 100755 graphics/items/icon_palettes/wave_incense.pal create mode 100755 graphics/items/icon_palettes/weakness_policy.pal create mode 100755 graphics/items/icon_palettes/whipped_dream.pal create mode 100755 graphics/items/icon_palettes/white_apricorn.pal create mode 100755 graphics/items/icon_palettes/x_special_defense.pal create mode 100755 graphics/items/icon_palettes/yache_berry.pal create mode 100755 graphics/items/icon_palettes/yellow_apricorn.pal create mode 100755 graphics/items/icon_palettes/yellow_nectar.pal create mode 100755 graphics/items/icons/ability_capsule.png create mode 100755 graphics/items/icons/absorb_bulb.png create mode 100755 graphics/items/icons/air_balloon.png create mode 100755 graphics/items/icons/armor_fossil.png create mode 100755 graphics/items/icons/babiri_berry.png create mode 100755 graphics/items/icons/big_malasada.png create mode 100755 graphics/items/icons/black_apricorn.png create mode 100755 graphics/items/icons/blue_apricorn.png create mode 100755 graphics/items/icons/bug_memory.png create mode 100755 graphics/items/icons/cell_battery.png create mode 100755 graphics/items/icons/charti_berry.png create mode 100755 graphics/items/icons/chilan_berry.png create mode 100755 graphics/items/icons/chople_berry.png create mode 100755 graphics/items/icons/coba_berry.png create mode 100755 graphics/items/icons/colbur_berry.png create mode 100755 graphics/items/icons/cover_fossil.png create mode 100755 graphics/items/icons/custap_berry.png create mode 100755 graphics/items/icons/dark_memory.png create mode 100755 graphics/items/icons/dawn_stone.png create mode 100755 graphics/items/icons/dragon_memory.png create mode 100755 graphics/items/icons/dubious_disc.png create mode 100755 graphics/items/icons/dusk_stone.png create mode 100755 graphics/items/icons/eject_button.png create mode 100755 graphics/items/icons/electirizer.png create mode 100755 graphics/items/icons/electric_memory.png create mode 100755 graphics/items/icons/fairy_memory.png create mode 100755 graphics/items/icons/fighting_memory.png create mode 100755 graphics/items/icons/fire_memory.png create mode 100755 graphics/items/icons/flying_memory.png create mode 100755 graphics/items/icons/full_incense.png create mode 100755 graphics/items/icons/ghost_memory.png create mode 100755 graphics/items/icons/gracidea.png create mode 100755 graphics/items/icons/grass_memory.png create mode 100755 graphics/items/icons/green_apricorn.png create mode 100755 graphics/items/icons/ground_memory.png create mode 100755 graphics/items/icons/haban_berry.png create mode 100755 graphics/items/icons/ice_memory.png create mode 100755 graphics/items/icons/ice_stone.png create mode 100755 graphics/items/icons/jaboca_berry.png create mode 100755 graphics/items/icons/jaw_fossil.png create mode 100755 graphics/items/icons/kasib_berry.png create mode 100755 graphics/items/icons/kebia_berry.png create mode 100755 graphics/items/icons/kee_berry.png create mode 100755 graphics/items/icons/luck_incense.png create mode 100755 graphics/items/icons/luminous_moss.png create mode 100755 graphics/items/icons/magmarizer.png create mode 100755 graphics/items/icons/maranga_berry.png create mode 100755 graphics/items/icons/micle_berry.png create mode 100755 graphics/items/icons/occa_berry.png create mode 100755 graphics/items/icons/odd_incense.png create mode 100755 graphics/items/icons/odd_keystone.png create mode 100755 graphics/items/icons/old_gateau.png create mode 100755 graphics/items/icons/oval_stone.png create mode 100755 graphics/items/icons/passho_berry.png create mode 100755 graphics/items/icons/payapa_berry.png create mode 100755 graphics/items/icons/pink_apricorn.png create mode 100755 graphics/items/icons/pink_nectar.png create mode 100755 graphics/items/icons/plume_fossil.png create mode 100755 graphics/items/icons/poison_memory.png create mode 100755 graphics/items/icons/power_anklet.png create mode 100755 graphics/items/icons/power_band.png create mode 100755 graphics/items/icons/power_belt.png create mode 100755 graphics/items/icons/power_bracer.png create mode 100755 graphics/items/icons/power_lens.png create mode 100755 graphics/items/icons/power_weight.png create mode 100755 graphics/items/icons/prism_scale.png create mode 100755 graphics/items/icons/protector.png create mode 100755 graphics/items/icons/psychic_memory.png create mode 100755 graphics/items/icons/pure_incense.png create mode 100755 graphics/items/icons/purple_nectar.png create mode 100755 graphics/items/icons/rare_bone.png create mode 100755 graphics/items/icons/razor_claw.png create mode 100755 graphics/items/icons/razor_fang.png create mode 100755 graphics/items/icons/reaper_cloth.png create mode 100755 graphics/items/icons/red_apricorn.png create mode 100755 graphics/items/icons/red_card.png create mode 100755 graphics/items/icons/red_nectar.png create mode 100755 graphics/items/icons/rindo_berry.png create mode 100755 graphics/items/icons/ring_target.png create mode 100755 graphics/items/icons/rock_incense.png create mode 100755 graphics/items/icons/rock_memory.png create mode 100755 graphics/items/icons/rocky_helmet.png create mode 100755 graphics/items/icons/rose_incense.png create mode 100755 graphics/items/icons/roseli_berry.png create mode 100755 graphics/items/icons/rowap_berry.png create mode 100755 graphics/items/icons/sachet.png create mode 100755 graphics/items/icons/sail_fossil.png create mode 100755 graphics/items/icons/shiny_stone.png create mode 100755 graphics/items/icons/shuca_berry.png create mode 100755 graphics/items/icons/skull_fossil.png create mode 100755 graphics/items/icons/snowball.png create mode 100755 graphics/items/icons/steel_memory.png create mode 100755 graphics/items/icons/sweet_heart.png create mode 100755 graphics/items/icons/tanga_berry.png create mode 100755 graphics/items/icons/wacan_berry.png create mode 100755 graphics/items/icons/water_memory.png create mode 100755 graphics/items/icons/wave_incense.png create mode 100755 graphics/items/icons/weakness_policy.png create mode 100755 graphics/items/icons/whipped_dream.png create mode 100755 graphics/items/icons/white_apricorn.png create mode 100755 graphics/items/icons/x_special_defense.png create mode 100755 graphics/items/icons/yache_berry.png create mode 100755 graphics/items/icons/yellow_apricorn.png create mode 100755 graphics/items/icons/yellow_nectar.png diff --git a/graphics/items/icon_palettes/ability_capsule.pal b/graphics/items/icon_palettes/ability_capsule.pal new file mode 100755 index 000000000..08bc90959 --- /dev/null +++ b/graphics/items/icon_palettes/ability_capsule.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +107 165 230 +123 123 156 +156 156 189 +206 206 255 +189 255 255 +132 214 255 +189 189 239 +222 222 255 +90 90 90 +222 132 255 +206 173 247 +140 140 247 +173 107 255 +230 206 255 diff --git a/graphics/items/icon_palettes/absorb_bulb.pal b/graphics/items/icon_palettes/absorb_bulb.pal new file mode 100755 index 000000000..8551b917b --- /dev/null +++ b/graphics/items/icon_palettes/absorb_bulb.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +222 222 115 +189 140 66 +156 99 41 +181 173 115 +132 74 33 +214 173 115 +90 66 41 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/air_balloon.pal b/graphics/items/icon_palettes/air_balloon.pal new file mode 100755 index 000000000..3fb7948b9 --- /dev/null +++ b/graphics/items/icon_palettes/air_balloon.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +66 66 66 +247 123 123 +239 74 74 +247 173 173 +49 49 49 +165 49 49 +206 206 156 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/armor_fossil.pal b/graphics/items/icon_palettes/armor_fossil.pal new file mode 100755 index 000000000..4c4b3a4b8 --- /dev/null +++ b/graphics/items/icon_palettes/armor_fossil.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +248 192 160 +216 136 96 +192 112 80 +136 88 56 +208 136 104 +224 160 112 +80 56 40 +168 96 64 +112 80 56 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/babiri_berry.pal b/graphics/items/icon_palettes/babiri_berry.pal new file mode 100755 index 000000000..e867db13a --- /dev/null +++ b/graphics/items/icon_palettes/babiri_berry.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +104 168 48 +160 224 72 +200 240 152 +160 128 48 +232 208 120 +72 104 40 +88 120 56 +64 80 40 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/big_malasada.pal b/graphics/items/icon_palettes/big_malasada.pal new file mode 100755 index 000000000..60fca4191 --- /dev/null +++ b/graphics/items/icon_palettes/big_malasada.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +180 106 49 +205 131 41 +156 90 49 +213 156 65 +213 148 90 +139 82 41 +246 197 98 +222 172 74 +246 197 106 +246 222 74 +180 82 74 +238 98 90 +255 172 197 +246 123 123 diff --git a/graphics/items/icon_palettes/black_apricorn.pal b/graphics/items/icon_palettes/black_apricorn.pal new file mode 100755 index 000000000..63d139493 --- /dev/null +++ b/graphics/items/icon_palettes/black_apricorn.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +247 189 123 +115 82 66 +173 107 49 +123 123 123 +74 74 74 +222 156 99 +189 189 189 +255 255 255 +99 99 99 +57 57 57 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/blue_apricorn.pal b/graphics/items/icon_palettes/blue_apricorn.pal new file mode 100755 index 000000000..411abd8ae --- /dev/null +++ b/graphics/items/icon_palettes/blue_apricorn.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +231 181 140 +115 82 66 +165 99 41 +49 123 239 +33 82 165 +206 148 99 +132 181 255 +255 255 255 +41 107 206 +41 66 107 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/bug_memory.pal b/graphics/items/icon_palettes/bug_memory.pal new file mode 100755 index 000000000..c653b1698 --- /dev/null +++ b/graphics/items/icon_palettes/bug_memory.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 248 +48 48 48 +172 236 128 +232 244 240 +248 252 248 +224 244 208 +184 236 152 +216 244 192 +208 244 176 +144 228 104 +120 120 144 +96 96 120 +160 236 104 +136 164 168 +112 128 136 +160 188 192 diff --git a/graphics/items/icon_palettes/cell_battery.pal b/graphics/items/icon_palettes/cell_battery.pal new file mode 100755 index 000000000..1e28e6a35 --- /dev/null +++ b/graphics/items/icon_palettes/cell_battery.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +140 140 148 +206 206 214 +255 255 255 +156 231 255 +41 198 255 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/charti_berry.pal b/graphics/items/icon_palettes/charti_berry.pal new file mode 100755 index 000000000..721b2bd15 --- /dev/null +++ b/graphics/items/icon_palettes/charti_berry.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +168 152 48 +200 168 32 +208 184 8 +248 232 40 +248 248 184 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/chilan_berry.pal b/graphics/items/icon_palettes/chilan_berry.pal new file mode 100755 index 000000000..72a54a9b9 --- /dev/null +++ b/graphics/items/icon_palettes/chilan_berry.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +160 224 72 +168 136 64 +232 208 120 +208 168 64 +104 168 48 +88 120 56 +248 232 176 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/chople_berry.pal b/graphics/items/icon_palettes/chople_berry.pal new file mode 100755 index 000000000..404a16ff0 --- /dev/null +++ b/graphics/items/icon_palettes/chople_berry.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +168 48 48 +216 64 64 +248 80 80 +248 136 120 +248 184 160 +232 168 56 +184 120 32 +240 216 80 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/coba_berry.pal b/graphics/items/icon_palettes/coba_berry.pal new file mode 100755 index 000000000..497d19db5 --- /dev/null +++ b/graphics/items/icon_palettes/coba_berry.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +48 88 120 +48 112 168 +40 200 216 +128 240 248 +80 160 208 +112 184 232 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/colbur_berry.pal b/graphics/items/icon_palettes/colbur_berry.pal new file mode 100755 index 000000000..b218b1b5f --- /dev/null +++ b/graphics/items/icon_palettes/colbur_berry.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +248 184 240 +240 104 224 +192 40 176 +248 144 232 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/cover_fossil.pal b/graphics/items/icon_palettes/cover_fossil.pal new file mode 100755 index 000000000..17aca6ea2 --- /dev/null +++ b/graphics/items/icon_palettes/cover_fossil.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +123 123 165 +140 140 181 +115 115 165 +82 82 140 +99 99 156 +165 165 198 +66 66 115 +198 198 214 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/custap_berry.pal b/graphics/items/icon_palettes/custap_berry.pal new file mode 100755 index 000000000..b237f92fc --- /dev/null +++ b/graphics/items/icon_palettes/custap_berry.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +240 208 104 +160 128 48 +240 168 112 +232 80 64 +192 64 64 +248 192 160 +248 120 112 +248 216 200 +208 120 48 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/dark_memory.pal b/graphics/items/icon_palettes/dark_memory.pal new file mode 100755 index 000000000..7850c59fb --- /dev/null +++ b/graphics/items/icon_palettes/dark_memory.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 248 +48 48 48 +128 184 184 +184 212 208 +200 228 224 +232 244 240 +248 252 248 +160 204 200 +96 164 168 +116 116 144 +96 96 120 +80 156 160 +184 112 112 +136 88 88 +200 148 144 +88 88 112 diff --git a/graphics/items/icon_palettes/dawn_stone.pal b/graphics/items/icon_palettes/dawn_stone.pal new file mode 100755 index 000000000..a5af707a7 --- /dev/null +++ b/graphics/items/icon_palettes/dawn_stone.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +144 248 232 +24 248 216 +16 200 192 +8 216 176 +248 248 248 +24 176 160 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/dragon_memory.pal b/graphics/items/icon_palettes/dragon_memory.pal new file mode 100755 index 000000000..4b0a86416 --- /dev/null +++ b/graphics/items/icon_palettes/dragon_memory.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +180 213 255 +230 246 255 +139 189 255 +156 197 255 +255 255 255 +172 180 213 +205 230 255 +213 180 172 +123 123 148 +98 98 123 +255 180 131 +172 139 123 +131 106 98 +197 164 156 diff --git a/graphics/items/icon_palettes/dubious_disc.pal b/graphics/items/icon_palettes/dubious_disc.pal new file mode 100755 index 000000000..502d7af56 --- /dev/null +++ b/graphics/items/icon_palettes/dubious_disc.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +120 88 104 +248 176 248 +216 176 200 +184 0 176 +248 32 232 +192 176 192 +176 104 152 +144 88 120 +160 112 176 +168 152 184 +168 144 128 +192 128 168 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/dusk_stone.pal b/graphics/items/icon_palettes/dusk_stone.pal new file mode 100755 index 000000000..a5be7f480 --- /dev/null +++ b/graphics/items/icon_palettes/dusk_stone.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +184 144 184 +168 120 168 +232 168 224 +136 88 144 +144 104 160 +112 80 120 +96 72 96 +80 64 80 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/eject_button.pal b/graphics/items/icon_palettes/eject_button.pal new file mode 100755 index 000000000..363a27e60 --- /dev/null +++ b/graphics/items/icon_palettes/eject_button.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +255 222 24 +198 214 222 +140 140 140 +214 181 24 +255 115 33 +255 66 24 +107 132 148 +181 41 33 +140 165 181 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/electirizer.pal b/graphics/items/icon_palettes/electirizer.pal new file mode 100755 index 000000000..e750bb16a --- /dev/null +++ b/graphics/items/icon_palettes/electirizer.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +248 248 16 +120 120 120 +88 88 16 +248 248 208 +80 80 80 +160 152 0 +168 168 168 +224 216 184 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/electric_memory.pal b/graphics/items/icon_palettes/electric_memory.pal new file mode 100755 index 000000000..3567d9e8e --- /dev/null +++ b/graphics/items/icon_palettes/electric_memory.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +255 205 57 +255 230 123 +255 255 222 +255 238 156 +255 255 255 +255 255 189 +255 222 90 +255 197 24 +123 123 148 +98 98 123 +255 197 0 +180 164 131 +139 131 115 +197 189 164 diff --git a/graphics/items/icon_palettes/fairy_memory.pal b/graphics/items/icon_palettes/fairy_memory.pal new file mode 100755 index 000000000..229a7f8dc --- /dev/null +++ b/graphics/items/icon_palettes/fairy_memory.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +255 128 64 +49 49 49 +205 148 255 +222 189 246 +255 255 255 +230 205 238 +213 172 246 +246 222 255 +189 131 255 +222 139 238 +123 123 148 +98 98 123 +246 148 213 +180 115 148 +139 98 123 +197 156 180 diff --git a/graphics/items/icon_palettes/fighting_memory.pal b/graphics/items/icon_palettes/fighting_memory.pal new file mode 100755 index 000000000..873621d21 --- /dev/null +++ b/graphics/items/icon_palettes/fighting_memory.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +238 164 90 +238 197 156 +255 238 230 +246 213 189 +238 180 123 +255 255 255 +230 148 57 +230 131 24 +230 115 0 +123 123 148 +98 98 123 +189 139 123 +148 115 106 +205 172 156 diff --git a/graphics/items/icon_palettes/fire_memory.pal b/graphics/items/icon_palettes/fire_memory.pal new file mode 100755 index 000000000..a5a760f7c --- /dev/null +++ b/graphics/items/icon_palettes/fire_memory.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +255 189 65 +255 238 222 +255 255 255 +255 230 189 +255 197 98 +238 172 32 +255 222 156 +255 180 41 +255 205 131 +123 123 148 +98 98 123 +180 131 131 +139 106 115 +197 164 164 diff --git a/graphics/items/icon_palettes/flying_memory.pal b/graphics/items/icon_palettes/flying_memory.pal new file mode 100755 index 000000000..1891eeeb8 --- /dev/null +++ b/graphics/items/icon_palettes/flying_memory.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +189 238 255 +213 246 255 +246 246 255 +180 205 222 +172 222 238 +172 238 255 +255 255 255 +156 238 255 +197 197 197 +123 123 148 +98 98 123 +123 189 189 +106 148 139 +156 205 205 diff --git a/graphics/items/icon_palettes/full_incense.pal b/graphics/items/icon_palettes/full_incense.pal new file mode 100755 index 000000000..7b4948f23 --- /dev/null +++ b/graphics/items/icon_palettes/full_incense.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +120 96 40 +248 184 184 +216 72 72 +248 248 104 +240 232 32 +248 248 168 +112 96 48 +216 208 0 +152 136 0 +176 48 48 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/ghost_memory.pal b/graphics/items/icon_palettes/ghost_memory.pal new file mode 100755 index 000000000..aa10565da --- /dev/null +++ b/graphics/items/icon_palettes/ghost_memory.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +255 128 64 +49 49 49 +222 172 246 +230 205 246 +255 238 255 +213 148 246 +230 189 246 +255 255 255 +197 123 238 +238 222 246 +180 98 222 +123 123 148 +98 98 123 +131 131 189 +106 115 148 +156 156 205 diff --git a/graphics/items/icon_palettes/gracidea.pal b/graphics/items/icon_palettes/gracidea.pal new file mode 100755 index 000000000..a1d740e73 --- /dev/null +++ b/graphics/items/icon_palettes/gracidea.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +247 107 132 +255 140 165 +82 148 16 +99 206 8 +255 173 189 +173 49 74 +255 214 222 +198 123 74 +247 239 90 +255 255 255 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/grass_memory.pal b/graphics/items/icon_palettes/grass_memory.pal new file mode 100755 index 000000000..07a5778f9 --- /dev/null +++ b/graphics/items/icon_palettes/grass_memory.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +156 238 197 +197 246 213 +255 255 255 +139 238 180 +238 246 246 +213 246 230 +123 238 172 +180 246 205 +123 123 148 +98 98 123 +106 238 164 +131 180 180 +106 139 139 +164 197 197 diff --git a/graphics/items/icon_palettes/green_apricorn.pal b/graphics/items/icon_palettes/green_apricorn.pal new file mode 100755 index 000000000..2d8947844 --- /dev/null +++ b/graphics/items/icon_palettes/green_apricorn.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +231 181 140 +115 82 66 +165 99 41 +57 189 99 +24 132 57 +206 148 99 +132 239 165 +255 255 255 +41 156 74 +33 90 49 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/ground_memory.pal b/graphics/items/icon_palettes/ground_memory.pal new file mode 100755 index 000000000..b9272a0dc --- /dev/null +++ b/graphics/items/icon_palettes/ground_memory.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +246 238 90 +255 255 156 +255 255 255 +230 213 82 +255 255 123 +255 255 222 +255 255 90 +255 255 189 +222 197 65 +123 123 148 +98 98 123 +164 148 131 +131 115 106 +180 164 156 diff --git a/graphics/items/icon_palettes/haban_berry.pal b/graphics/items/icon_palettes/haban_berry.pal new file mode 100755 index 000000000..857889ed0 --- /dev/null +++ b/graphics/items/icon_palettes/haban_berry.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +248 120 120 +248 152 152 +232 64 64 +208 32 32 +160 40 40 +96 48 48 +80 48 72 +104 56 96 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/ice_memory.pal b/graphics/items/icon_palettes/ice_memory.pal new file mode 100755 index 000000000..201520bd9 --- /dev/null +++ b/graphics/items/icon_palettes/ice_memory.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +197 246 255 +255 255 255 +213 246 255 +172 238 255 +156 238 255 +230 246 255 +139 230 246 +131 213 238 +123 123 148 +98 98 123 +131 180 180 +106 139 139 +164 205 197 +0 0 0 diff --git a/graphics/items/icon_palettes/ice_stone.pal b/graphics/items/icon_palettes/ice_stone.pal new file mode 100755 index 000000000..b922cbbab --- /dev/null +++ b/graphics/items/icon_palettes/ice_stone.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +189 238 246 +148 213 222 +222 246 255 +238 255 255 +246 255 255 +98 189 205 +57 156 180 +213 238 246 +24 106 148 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/jaboca_berry.pal b/graphics/items/icon_palettes/jaboca_berry.pal new file mode 100755 index 000000000..7f937b28e --- /dev/null +++ b/graphics/items/icon_palettes/jaboca_berry.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +240 232 104 +160 128 48 +96 96 40 +120 120 48 +200 184 40 +248 248 208 +160 152 48 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/jaw_fossil.pal b/graphics/items/icon_palettes/jaw_fossil.pal new file mode 100755 index 000000000..d06360faf --- /dev/null +++ b/graphics/items/icon_palettes/jaw_fossil.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +132 140 181 +173 173 173 +115 115 156 +66 66 99 +90 90 132 +132 132 173 +198 189 189 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/kasib_berry.pal b/graphics/items/icon_palettes/kasib_berry.pal new file mode 100755 index 000000000..81a6165aa --- /dev/null +++ b/graphics/items/icon_palettes/kasib_berry.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +248 248 184 +168 120 48 +224 64 184 +248 104 200 +176 48 144 +248 160 224 +104 56 96 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/kebia_berry.pal b/graphics/items/icon_palettes/kebia_berry.pal new file mode 100755 index 000000000..b63d95d44 --- /dev/null +++ b/graphics/items/icon_palettes/kebia_berry.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +40 152 40 +48 192 56 +80 232 96 +40 104 40 +128 168 48 +144 192 56 +176 240 152 +128 112 96 +104 88 80 +208 248 192 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/kee_berry.pal b/graphics/items/icon_palettes/kee_berry.pal new file mode 100755 index 000000000..7d25b433a --- /dev/null +++ b/graphics/items/icon_palettes/kee_berry.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +156 222 115 +115 189 82 +82 156 49 +49 115 33 +230 140 90 +255 173 123 +189 132 107 +206 99 66 +148 123 99 +255 222 189 +230 189 165 +0 0 0 +189 156 132 +0 0 0 diff --git a/graphics/items/icon_palettes/luck_incense.pal b/graphics/items/icon_palettes/luck_incense.pal new file mode 100755 index 000000000..84abcd949 --- /dev/null +++ b/graphics/items/icon_palettes/luck_incense.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +112 80 40 +160 232 248 +88 176 224 +240 200 64 +216 224 120 +240 240 192 +56 136 184 +216 160 64 +152 112 64 +248 248 248 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/luminous_moss.pal b/graphics/items/icon_palettes/luminous_moss.pal new file mode 100755 index 000000000..51bad6ab7 --- /dev/null +++ b/graphics/items/icon_palettes/luminous_moss.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +255 128 64 +60 120 56 +216 252 160 +32 164 8 +112 228 56 +152 244 100 +248 252 248 +72 72 88 +40 196 8 +72 228 16 +52 48 48 +200 228 168 +144 140 152 +200 196 208 +112 112 152 +0 0 0 diff --git a/graphics/items/icon_palettes/magmarizer.pal b/graphics/items/icon_palettes/magmarizer.pal new file mode 100755 index 000000000..4e0a0b196 --- /dev/null +++ b/graphics/items/icon_palettes/magmarizer.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +232 104 104 +136 136 136 +104 48 48 +240 160 160 +96 96 96 +176 48 48 +120 96 96 +240 152 48 +248 248 80 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/maranga_berry.pal b/graphics/items/icon_palettes/maranga_berry.pal new file mode 100755 index 000000000..30c39e54c --- /dev/null +++ b/graphics/items/icon_palettes/maranga_berry.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +247 247 140 +148 140 49 +189 181 49 +189 181 123 +123 107 49 +99 82 41 +148 132 99 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/micle_berry.pal b/graphics/items/icon_palettes/micle_berry.pal new file mode 100755 index 000000000..9bc9af2da --- /dev/null +++ b/graphics/items/icon_palettes/micle_berry.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +72 120 64 +56 168 56 +64 200 64 +136 232 136 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/occa_berry.pal b/graphics/items/icon_palettes/occa_berry.pal new file mode 100755 index 000000000..c8f33e015 --- /dev/null +++ b/graphics/items/icon_palettes/occa_berry.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +120 208 152 +48 104 72 +232 112 48 +248 144 96 +216 120 64 +184 96 32 +56 160 96 +248 184 144 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/odd_incense.pal b/graphics/items/icon_palettes/odd_incense.pal new file mode 100755 index 000000000..f51f61c90 --- /dev/null +++ b/graphics/items/icon_palettes/odd_incense.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +255 128 64 +48 48 48 +136 48 152 +240 192 240 +248 128 248 +216 168 216 +112 96 48 +224 56 240 +160 96 200 +120 72 192 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/odd_keystone.pal b/graphics/items/icon_palettes/odd_keystone.pal new file mode 100755 index 000000000..89db79825 --- /dev/null +++ b/graphics/items/icon_palettes/odd_keystone.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +216 160 112 +192 144 104 +248 192 152 +128 104 80 +160 128 96 +248 208 184 +104 80 64 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/old_gateau.pal b/graphics/items/icon_palettes/old_gateau.pal new file mode 100755 index 000000000..6d819579b --- /dev/null +++ b/graphics/items/icon_palettes/old_gateau.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +115 115 115 +173 107 156 +189 132 173 +165 82 140 +107 58 90 +132 66 115 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/oval_stone.pal b/graphics/items/icon_palettes/oval_stone.pal new file mode 100755 index 000000000..f5681b929 --- /dev/null +++ b/graphics/items/icon_palettes/oval_stone.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +96 96 96 +200 208 216 +216 232 240 +144 160 168 +200 216 232 +248 248 248 +160 168 176 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/passho_berry.pal b/graphics/items/icon_palettes/passho_berry.pal new file mode 100755 index 000000000..64ba104b5 --- /dev/null +++ b/graphics/items/icon_palettes/passho_berry.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +48 96 160 +200 160 56 +232 224 104 +40 104 208 +64 128 232 +120 168 248 +128 112 64 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/payapa_berry.pal b/graphics/items/icon_palettes/payapa_berry.pal new file mode 100755 index 000000000..190039e34 --- /dev/null +++ b/graphics/items/icon_palettes/payapa_berry.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +176 232 104 +112 168 32 +72 96 40 +96 96 96 +120 56 104 +136 40 112 +192 40 152 +240 64 216 +248 128 224 +248 168 232 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/pink_apricorn.pal b/graphics/items/icon_palettes/pink_apricorn.pal new file mode 100755 index 000000000..485ed3f0b --- /dev/null +++ b/graphics/items/icon_palettes/pink_apricorn.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +231 181 140 +115 82 66 +165 99 41 +255 148 181 +222 99 140 +206 148 99 +255 198 222 +255 255 255 +239 123 165 +148 74 99 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/pink_nectar.pal b/graphics/items/icon_palettes/pink_nectar.pal new file mode 100755 index 000000000..e6167ec00 --- /dev/null +++ b/graphics/items/icon_palettes/pink_nectar.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +255 139 139 +255 205 205 +255 90 90 +255 246 246 +90 65 65 +123 90 82 +148 98 82 +189 148 156 +115 74 65 +123 74 74 +255 197 189 +255 123 115 +189 90 90 +0 0 0 diff --git a/graphics/items/icon_palettes/plume_fossil.pal b/graphics/items/icon_palettes/plume_fossil.pal new file mode 100755 index 000000000..0d9f2b825 --- /dev/null +++ b/graphics/items/icon_palettes/plume_fossil.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +123 123 165 +99 99 156 +115 115 165 +66 66 115 +82 82 140 +165 165 198 +140 140 181 +198 198 214 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/poison_memory.pal b/graphics/items/icon_palettes/poison_memory.pal new file mode 100755 index 000000000..3d3b9e43d --- /dev/null +++ b/graphics/items/icon_palettes/poison_memory.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +255 128 64 +49 49 49 +255 205 172 +255 238 230 +255 255 255 +255 222 197 +230 148 156 +255 189 148 +255 180 123 +205 123 189 +180 98 222 +123 123 148 +98 98 123 +172 123 189 +131 106 148 +189 156 205 diff --git a/graphics/items/icon_palettes/power_anklet.pal b/graphics/items/icon_palettes/power_anklet.pal new file mode 100755 index 000000000..6c7c5b643 --- /dev/null +++ b/graphics/items/icon_palettes/power_anklet.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +96 96 96 +48 48 48 +32 168 216 +96 208 232 +136 232 240 +56 192 208 +48 120 168 +48 64 144 +32 144 192 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/power_band.pal b/graphics/items/icon_palettes/power_band.pal new file mode 100755 index 000000000..160108bc9 --- /dev/null +++ b/graphics/items/icon_palettes/power_band.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +96 96 96 +48 48 48 +208 184 32 +232 224 96 +240 240 176 +224 208 64 +152 144 40 +104 96 40 +192 160 24 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/power_belt.pal b/graphics/items/icon_palettes/power_belt.pal new file mode 100755 index 000000000..e4e815796 --- /dev/null +++ b/graphics/items/icon_palettes/power_belt.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +96 96 96 +48 48 48 +200 136 64 +232 176 96 +240 208 152 +232 160 104 +136 104 48 +112 64 24 +176 112 56 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/power_bracer.pal b/graphics/items/icon_palettes/power_bracer.pal new file mode 100755 index 000000000..c3cb52c47 --- /dev/null +++ b/graphics/items/icon_palettes/power_bracer.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +96 96 96 +48 48 48 +216 88 88 +240 112 112 +248 144 144 +168 72 72 +112 56 56 +184 80 80 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/power_lens.pal b/graphics/items/icon_palettes/power_lens.pal new file mode 100755 index 000000000..fe384576d --- /dev/null +++ b/graphics/items/icon_palettes/power_lens.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +255 128 64 +48 48 48 +240 80 240 +248 96 248 +240 176 248 +104 56 112 +144 64 152 +192 64 216 +160 64 184 +32 224 248 +56 144 248 +248 248 248 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/power_weight.pal b/graphics/items/icon_palettes/power_weight.pal new file mode 100755 index 000000000..8224c5b9a --- /dev/null +++ b/graphics/items/icon_palettes/power_weight.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +96 96 96 +48 48 48 +64 200 80 +96 232 120 +152 240 168 +72 152 88 +72 184 88 +56 104 64 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/prism_scale.pal b/graphics/items/icon_palettes/prism_scale.pal new file mode 100755 index 000000000..15d3698bf --- /dev/null +++ b/graphics/items/icon_palettes/prism_scale.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +82 82 82 +189 239 255 +132 206 239 +173 173 222 +49 49 49 +206 140 206 +239 107 189 +255 156 214 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/protector.pal b/graphics/items/icon_palettes/protector.pal new file mode 100755 index 000000000..224b5495b --- /dev/null +++ b/graphics/items/icon_palettes/protector.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +224 112 56 +232 152 112 +216 88 32 +104 56 40 +168 96 56 +136 72 48 +80 48 40 +152 80 56 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/psychic_memory.pal b/graphics/items/icon_palettes/psychic_memory.pal new file mode 100755 index 000000000..af0dadf34 --- /dev/null +++ b/graphics/items/icon_palettes/psychic_memory.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +255 172 164 +255 222 213 +255 255 255 +255 197 197 +255 189 180 +255 246 246 +255 230 230 +255 213 205 +255 180 172 +123 123 148 +98 98 123 +180 139 131 +139 115 115 +197 172 164 diff --git a/graphics/items/icon_palettes/pure_incense.pal b/graphics/items/icon_palettes/pure_incense.pal new file mode 100755 index 000000000..83918a517 --- /dev/null +++ b/graphics/items/icon_palettes/pure_incense.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +104 104 104 +248 248 248 +208 112 112 +216 216 216 +232 232 232 +112 96 48 +200 200 200 +152 152 152 +248 240 80 +184 184 184 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/purple_nectar.pal b/graphics/items/icon_palettes/purple_nectar.pal new file mode 100755 index 000000000..7b6def78c --- /dev/null +++ b/graphics/items/icon_palettes/purple_nectar.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +213 139 255 +238 205 255 +197 90 255 +255 246 255 +90 65 65 +123 90 82 +148 98 82 +189 148 156 +115 74 65 +123 74 74 +255 197 189 +255 123 115 +189 90 90 +0 0 0 diff --git a/graphics/items/icon_palettes/rare_bone.pal b/graphics/items/icon_palettes/rare_bone.pal new file mode 100755 index 000000000..2ba2fbbb1 --- /dev/null +++ b/graphics/items/icon_palettes/rare_bone.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +224 232 200 +184 192 160 +128 128 96 +208 208 168 +152 152 128 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/razor_claw.pal b/graphics/items/icon_palettes/razor_claw.pal new file mode 100755 index 000000000..b4f818746 --- /dev/null +++ b/graphics/items/icon_palettes/razor_claw.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +248 248 248 +128 136 144 +208 216 216 +152 160 168 +104 112 120 +176 192 200 +80 80 80 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/razor_fang.pal b/graphics/items/icon_palettes/razor_fang.pal new file mode 100755 index 000000000..ee390f2c6 --- /dev/null +++ b/graphics/items/icon_palettes/razor_fang.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +160 144 88 +208 192 128 +232 224 184 +104 112 120 +176 192 200 +152 160 168 +248 248 248 +128 136 144 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/reaper_cloth.pal b/graphics/items/icon_palettes/reaper_cloth.pal new file mode 100755 index 000000000..8ab71423f --- /dev/null +++ b/graphics/items/icon_palettes/reaper_cloth.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +80 72 88 +48 48 48 +144 128 168 +128 104 136 +168 152 184 +104 88 120 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/red_apricorn.pal b/graphics/items/icon_palettes/red_apricorn.pal new file mode 100755 index 000000000..8025f6c43 --- /dev/null +++ b/graphics/items/icon_palettes/red_apricorn.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +231 181 140 +115 82 66 +165 99 41 +255 66 49 +189 33 24 +206 148 99 +255 148 148 +255 255 255 +222 49 33 +115 41 33 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/red_card.pal b/graphics/items/icon_palettes/red_card.pal new file mode 100755 index 000000000..5309dc86c --- /dev/null +++ b/graphics/items/icon_palettes/red_card.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +66 66 66 +255 82 66 +49 49 49 +239 24 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/red_nectar.pal b/graphics/items/icon_palettes/red_nectar.pal new file mode 100755 index 000000000..5f1a8336d --- /dev/null +++ b/graphics/items/icon_palettes/red_nectar.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +255 90 90 +255 148 148 +255 49 49 +255 222 205 +90 65 65 +255 189 189 +123 90 82 +148 98 82 +189 148 156 +115 74 65 +123 74 74 +255 197 189 +255 123 115 +189 90 90 diff --git a/graphics/items/icon_palettes/rindo_berry.pal b/graphics/items/icon_palettes/rindo_berry.pal new file mode 100755 index 000000000..bdf699dcc --- /dev/null +++ b/graphics/items/icon_palettes/rindo_berry.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +248 240 48 +80 216 96 +56 112 72 +208 200 16 +120 112 48 +32 168 48 +184 248 160 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/ring_target.pal b/graphics/items/icon_palettes/ring_target.pal new file mode 100755 index 000000000..4773d5912 --- /dev/null +++ b/graphics/items/icon_palettes/ring_target.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +66 66 66 +173 140 66 +148 115 49 +115 115 123 +206 206 214 +255 255 255 +123 99 49 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/rock_incense.pal b/graphics/items/icon_palettes/rock_incense.pal new file mode 100755 index 000000000..d3e3fe323 --- /dev/null +++ b/graphics/items/icon_palettes/rock_incense.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +96 72 32 +216 208 160 +192 160 104 +200 184 112 +112 96 48 +168 136 64 +136 104 48 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/rock_memory.pal b/graphics/items/icon_palettes/rock_memory.pal new file mode 100755 index 000000000..f11cde989 --- /dev/null +++ b/graphics/items/icon_palettes/rock_memory.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +222 197 115 +246 238 222 +255 255 255 +222 189 90 +238 222 172 +238 230 197 +230 213 148 +213 180 65 +123 123 148 +98 98 123 +172 148 139 +139 115 115 +197 172 164 +0 0 0 diff --git a/graphics/items/icon_palettes/rocky_helmet.pal b/graphics/items/icon_palettes/rocky_helmet.pal new file mode 100755 index 000000000..92bc3c24c --- /dev/null +++ b/graphics/items/icon_palettes/rocky_helmet.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +198 198 198 +156 156 156 +82 82 82 +214 156 0 +255 198 0 +255 222 123 +57 156 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/rose_incense.pal b/graphics/items/icon_palettes/rose_incense.pal new file mode 100755 index 000000000..379551e9c --- /dev/null +++ b/graphics/items/icon_palettes/rose_incense.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +255 128 64 +48 48 48 +120 120 48 +248 240 80 +240 248 152 +232 232 200 +248 248 248 +112 96 48 +208 200 112 +152 152 80 +232 120 232 +224 56 192 +176 48 160 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/roseli_berry.pal b/graphics/items/icon_palettes/roseli_berry.pal new file mode 100755 index 000000000..94bf9414f --- /dev/null +++ b/graphics/items/icon_palettes/roseli_berry.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +57 49 49 +49 49 49 +198 57 66 +140 41 66 +222 82 82 +239 156 132 +41 57 74 +99 123 181 +57 90 140 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/rowap_berry.pal b/graphics/items/icon_palettes/rowap_berry.pal new file mode 100755 index 000000000..3050dc608 --- /dev/null +++ b/graphics/items/icon_palettes/rowap_berry.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +216 208 128 +200 152 56 +176 152 64 +40 168 176 +56 216 224 +152 120 48 +16 144 152 +48 112 120 +40 88 96 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/sachet.pal b/graphics/items/icon_palettes/sachet.pal new file mode 100755 index 000000000..7c59557a5 --- /dev/null +++ b/graphics/items/icon_palettes/sachet.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +255 128 64 +49 49 49 +74 74 74 +189 115 198 +173 99 181 +99 66 123 +148 90 165 +247 214 115 +214 173 57 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/sail_fossil.pal b/graphics/items/icon_palettes/sail_fossil.pal new file mode 100755 index 000000000..f845f7dd2 --- /dev/null +++ b/graphics/items/icon_palettes/sail_fossil.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +57 49 49 +49 49 49 +132 206 181 +90 156 132 +115 173 156 +57 90 74 +66 107 90 +90 140 123 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/shiny_stone.pal b/graphics/items/icon_palettes/shiny_stone.pal new file mode 100755 index 000000000..f29748189 --- /dev/null +++ b/graphics/items/icon_palettes/shiny_stone.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +192 224 160 +248 248 136 +224 240 208 +248 248 248 +168 192 152 +152 176 120 +248 224 112 +248 216 8 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/shuca_berry.pal b/graphics/items/icon_palettes/shuca_berry.pal new file mode 100755 index 000000000..61b071e34 --- /dev/null +++ b/graphics/items/icon_palettes/shuca_berry.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +168 232 96 +216 240 176 +96 184 32 +40 96 40 +80 136 32 +216 192 24 +248 232 96 +160 136 32 +248 248 248 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/skull_fossil.pal b/graphics/items/icon_palettes/skull_fossil.pal new file mode 100755 index 000000000..5a8f9d170 --- /dev/null +++ b/graphics/items/icon_palettes/skull_fossil.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +192 112 80 +224 160 112 +208 136 104 +248 192 160 +216 136 96 +136 88 56 +80 56 40 +168 96 64 +112 80 56 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/snowball.pal b/graphics/items/icon_palettes/snowball.pal new file mode 100755 index 000000000..900d872d7 --- /dev/null +++ b/graphics/items/icon_palettes/snowball.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 123 165 +74 90 99 +247 255 255 +198 239 255 +132 173 206 +165 206 231 +8 0 0 +0 0 0 +8 8 0 +41 115 156 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/steel_memory.pal b/graphics/items/icon_palettes/steel_memory.pal new file mode 100755 index 000000000..6dc939e71 --- /dev/null +++ b/graphics/items/icon_palettes/steel_memory.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +148 172 180 +222 222 222 +238 246 246 +197 197 197 +213 213 213 +255 255 255 +115 164 172 +189 189 189 +82 156 164 +123 123 148 +98 98 123 +139 156 172 +115 131 131 +189 197 205 diff --git a/graphics/items/icon_palettes/sweet_heart.pal b/graphics/items/icon_palettes/sweet_heart.pal new file mode 100755 index 000000000..d57265698 --- /dev/null +++ b/graphics/items/icon_palettes/sweet_heart.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +82 82 82 +49 49 49 +165 123 41 +181 140 58 +197 148 74 +132 99 33 +90 66 25 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/tanga_berry.pal b/graphics/items/icon_palettes/tanga_berry.pal new file mode 100755 index 000000000..8950724c2 --- /dev/null +++ b/graphics/items/icon_palettes/tanga_berry.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +240 232 56 +48 136 48 +56 168 56 +72 120 64 +192 176 40 +56 80 48 +64 200 64 +136 232 136 +168 160 32 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/wacan_berry.pal b/graphics/items/icon_palettes/wacan_berry.pal new file mode 100755 index 000000000..8569be727 --- /dev/null +++ b/graphics/items/icon_palettes/wacan_berry.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +248 240 48 +208 200 16 +144 240 136 +56 112 72 +80 216 120 +64 168 96 +248 248 248 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/water_memory.pal b/graphics/items/icon_palettes/water_memory.pal new file mode 100755 index 000000000..17979fd4c --- /dev/null +++ b/graphics/items/icon_palettes/water_memory.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +115 180 238 +180 213 246 +238 246 246 +205 230 246 +139 197 238 +164 205 246 +255 255 255 +90 172 238 +74 164 238 +123 123 148 +98 98 123 +131 172 180 +106 139 139 +164 189 197 diff --git a/graphics/items/icon_palettes/wave_incense.pal b/graphics/items/icon_palettes/wave_incense.pal new file mode 100755 index 000000000..86abf6076 --- /dev/null +++ b/graphics/items/icon_palettes/wave_incense.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +48 88 152 +40 200 240 +64 144 192 +72 240 248 +128 224 240 +176 240 248 +112 96 48 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/weakness_policy.pal b/graphics/items/icon_palettes/weakness_policy.pal new file mode 100755 index 000000000..46a59e35f --- /dev/null +++ b/graphics/items/icon_palettes/weakness_policy.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +214 247 198 +132 140 247 +165 198 214 +189 214 206 +231 148 148 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/whipped_dream.pal b/graphics/items/icon_palettes/whipped_dream.pal new file mode 100755 index 000000000..3b6440bbb --- /dev/null +++ b/graphics/items/icon_palettes/whipped_dream.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +214 90 132 +198 49 90 +140 41 74 +255 148 189 +239 206 198 +255 255 255 +189 132 132 +222 181 181 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/white_apricorn.pal b/graphics/items/icon_palettes/white_apricorn.pal new file mode 100755 index 000000000..53472131b --- /dev/null +++ b/graphics/items/icon_palettes/white_apricorn.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +231 181 140 +115 82 66 +165 99 41 +255 255 255 +181 198 214 +206 148 99 +214 222 231 +115 123 132 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/x_special_defense.pal b/graphics/items/icon_palettes/x_special_defense.pal new file mode 100755 index 000000000..548816d06 --- /dev/null +++ b/graphics/items/icon_palettes/x_special_defense.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +64 134 134 +42 42 42 +127 134 134 +184 198 198 +219 219 219 +191 219 219 +92 176 176 +78 141 141 +28 92 92 +148 198 198 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/yache_berry.pal b/graphics/items/icon_palettes/yache_berry.pal new file mode 100755 index 000000000..2b15404f4 --- /dev/null +++ b/graphics/items/icon_palettes/yache_berry.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +48 48 48 +32 216 80 +56 168 88 +40 88 48 +24 128 168 +32 160 192 +120 216 224 +64 192 216 +192 240 248 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/yellow_apricorn.pal b/graphics/items/icon_palettes/yellow_apricorn.pal new file mode 100755 index 000000000..b6004717b --- /dev/null +++ b/graphics/items/icon_palettes/yellow_apricorn.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +231 181 140 +115 82 66 +165 99 41 +239 206 49 +198 132 8 +206 148 99 +255 231 132 +255 255 255 +222 173 24 +123 90 24 +0 0 0 +0 0 0 +0 0 0 +0 0 0 diff --git a/graphics/items/icon_palettes/yellow_nectar.pal b/graphics/items/icon_palettes/yellow_nectar.pal new file mode 100755 index 000000000..bebf85a5f --- /dev/null +++ b/graphics/items/icon_palettes/yellow_nectar.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +128 0 255 +49 49 49 +230 172 0 +255 222 82 +197 139 0 +255 246 213 +90 65 65 +123 90 82 +148 98 82 +189 148 156 +115 74 65 +123 74 74 +255 197 189 +255 123 115 +189 90 90 +0 0 0 diff --git a/graphics/items/icons/ability_capsule.png b/graphics/items/icons/ability_capsule.png new file mode 100755 index 0000000000000000000000000000000000000000..4cb366137fb5c1c6e016792d615d891835589d6c GIT binary patch literal 349 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOpLmkvD9 kb1WbI4`euOd4+}H=zFzC_ACpw0PSb+boFyt=akR{00lRI+yDRo literal 0 HcmV?d00001 diff --git a/graphics/items/icons/absorb_bulb.png b/graphics/items/icons/absorb_bulb.png new file mode 100755 index 0000000000000000000000000000000000000000..d958ab368400806acaa18f633728fb51d7cb556b GIT binary patch literal 365 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuX`}-K=j-fkNUX zt`Q}{`DrEPiAAXl?mjL+V-(6#ixiCYObT0uLNGk@=KHnJ& z6l6^Dc6a%|l>O6D5T_)_FPOpM*^M+Hr^VC7F{ENna>4-a0+K%z(?cE(P7aWVB$L*AhlYq3W4h8@+1&IshR zDX6OOWovAbXS!gquz)elpk=mP!%DHl6ip-cqcsW)46Fje>;mDfAAvSAc)I$ztaD0e F0sz57WJ3S| literal 0 HcmV?d00001 diff --git a/graphics/items/icons/armor_fossil.png b/graphics/items/icons/armor_fossil.png new file mode 100755 index 0000000000000000000000000000000000000000..a24d2ec4da2ea92769d904e4094a51fdb2bb7184 GIT binary patch literal 457 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuTaH?san~0ENU$ zTq8f&dGR6$uVN3S^A-&>@^qBLXe>kaRUjGT{%a5-fx6N~I#Be29mZBJ-= zqMv~J7Gc&~;*lJmFFmSG-qO#xXO&n+N!R>Y1$`>VCeCDUS)!h}Bw>cWZr@!2xA!|w zUH>-cTt%qU*4w{%6(>&qdrp2$znIQmJ-a8T*IEY5S^g{S_3F&a8~timuKp!Br?C6* e`}Q66^Gn!;SUl#f?-CLP1&XJupUXO@geCywzpE+$ literal 0 HcmV?d00001 diff --git a/graphics/items/icons/babiri_berry.png b/graphics/items/icons/babiri_berry.png new file mode 100755 index 0000000000000000000000000000000000000000..aeca14e70a9135d4f590e21024aa2b54b3596b78 GIT binary patch literal 391 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuTYZ@?sYofkNUX zt`Q}{`DrEPiAAXl?mjL+V-(6#ixiCYObT0Ye2D%J-h)vXq&5-k&G_NlX9nW$dqPwryzQ(se1w)L!%b zU)k9kR>|yD^NJHw@>_T4Dr}#=FhTspLJoQDh-k~ylJ^r$^(r!#Z`@*9IIqXJKW^&6 zjyHjycAZsBy4A?4$fmUX^y);u#&=(DUr^OGUn;dGFZQYZW9G7HD!vvoS$ROd@^tlc JS?83{1OTcBfX)B_ literal 0 HcmV?d00001 diff --git a/graphics/items/icons/big_malasada.png b/graphics/items/icons/big_malasada.png new file mode 100755 index 0000000000000000000000000000000000000000..d24cd9e00d3121ae551fc82c594a5391e3d29981 GIT binary patch literal 393 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuTZubB>0%0fod% zTq8q1{=C`9s_ttoQJDTl{=LuD5qpG289L% zafCcg$&rzHvS`g3zL4WDmdNC+O4^zAG(}uN-P2R^WY+g5#$l5i=DbizeSOs|{oI`x zt|uYy?(NJvH*nPM;9(! zn8=jSSG`knf-u*!89OA}4_Tf(<}Em9%a#z9^ysKCjWY~v8%+fCxsv)zq$F}$cCa66 p+!ZaQ$T)@Rli4AgBMnb1lYrhV(u!MrCVvme;hwI3F6*2UngB7LcA@|P literal 0 HcmV?d00001 diff --git a/graphics/items/icons/blue_apricorn.png b/graphics/items/icons/blue_apricorn.png new file mode 100755 index 0000000000000000000000000000000000000000..35d0ed23b24bd46ac022e2fa3b8e65abc9c2ad5b GIT binary patch literal 368 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuVv2jD1==fI{LW zt`Q}{`DrEPiAAXl?mjL+V-(6#ixiCYObT03Sxn=8rAkfS{r|Fap zG6M$cS+|}9vKf=S-Ch1KW&d;(#3>2#3ubV5b|VeQY4>z-45^rtoS-0Pz-7S2#pPh> z)a9nNuv0*8anR0+iPQCQlB1OxNu=2 zQ$k<$PR$9zT+e3gkZ3<-dGeUI;G8X6LRiwHqrx=KFtBYj5zyyK>MxO!$Z6TZeyDL* ow3H&_6sAvRhir~CJh4mydb3C?ZtmdK II;Vst0J5#57ytkO literal 0 HcmV?d00001 diff --git a/graphics/items/icons/cell_battery.png b/graphics/items/icons/cell_battery.png new file mode 100755 index 0000000000000000000000000000000000000000..6183bdb085b331e37b8df0e501c0a7f616f4d2fe GIT binary patch literal 289 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuRB?@;~lB01Anh zxJHx&=ckpFCl;kLxcj&OjZr8|EmAPnGbwCc@(`$mqolyk9VlZAWHWd*XvzaAmUKs7 zM+SzC{oH>NS%G|m0G|-o28REJhK4;oQ_h{c_W%F?InV!V9{Uf{gafck?9c>CF(!Gt zyZm3u{^=-)QxfDC%;50sMjDV~;pyTSQZXkv;Q&7it6+{>sxqU6dxYmnfrEvG3;Bvs&j{D{?9}O&Y zPCp#gcu7@CBIDJKmX8H3d%Lyd=e<95s@S+bVPeCYMJM|!-Bn!My8`}vI+g#Gsr0tk U_GkVLk3i1%boFyt=akR{05QIKBme*a literal 0 HcmV?d00001 diff --git a/graphics/items/icons/chilan_berry.png b/graphics/items/icons/chilan_berry.png new file mode 100755 index 0000000000000000000000000000000000000000..d1516f7323dc1f2d41d6b928dfeec32d3e960690 GIT binary patch literal 377 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuRB8r)JD!0Sbwi zxJHx&=ckpFCl;kLxcj&OjZr8|EmAPnGbwCc@(`$mqolyk9VlZAWHWd*XvzaAmUKs7 zM+SzC{oH>NS%G|m0G|-o28RCz1_lcrc&zAfcyXcP!U~6s6$TL%7C&BW0BOYl;nQyY z1qw1IdAqy(U&{XJD2P)M&Q^S3F()T-G@yGywq3o`Pop literal 0 HcmV?d00001 diff --git a/graphics/items/icons/chople_berry.png b/graphics/items/icons/chople_berry.png new file mode 100755 index 0000000000000000000000000000000000000000..3fa84f379a6d0e372553e247a3caf54f78b8aad8 GIT binary patch literal 388 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuWhr9di;~fkNUX zt`Q}{`DrEPiAAXl?mjL+V-(6#ixiCYObT0%UR(kO5DR*@1-$x_$3g zY~0fLl-I_Y&132olg4RkAGZbO$nRhb{r~H_ch;=`tg8;K{kv(}99z*fJ^U5AYQD|~ zstqIU4aDwC))vfAJ|M7pf(oN#+7UV9m;8*uavs4fMecGDy-EdY+cQNPFRMjt3sv4} zW1PP}a9Pn8q51qLPnE|f)kKG`d-p7~{$69=D*3e^`foAXoRoXARZp}HB9zs-Zg;CWK8mQ zclp1R{nJqprzFTPn8D%MjWi&q)6>N2*tUFNW!`0!!K27?B zgVl!H{LdZ-7j^jUR^B^t$rbyhYqvJPWm&WAGf$ey#o~@nuO4x|pSdcd;Ng`Nt={j7 zzB0%E+C0h3nv-ldS;tgpM$xof4mr;g+ie&Nr7IN-)^9hseCb>8!@`-n+a839tNp0^ g|Fz3Be%_x*d7-azTB=JwTZ6pe>FVdQ&MBb@0CS>z8UO$Q literal 0 HcmV?d00001 diff --git a/graphics/items/icons/colbur_berry.png b/graphics/items/icons/colbur_berry.png new file mode 100755 index 0000000000000000000000000000000000000000..56d46a52a22f561828126c00267dedfa52b81e6c GIT binary patch literal 376 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuS0!CcRJcfkNUX zt`Q}{`DrEPiAAXl?mjL+V-(6#ixiCYObT0w`{lmz(&GdMiEkp|@Sd%8G=RLrUEzbM&kz|nG;?bs~FHKh!#d~|jCS-haQ;P8vMyR4I^pEVCyR+^*Gmbud4#u1HF?h|PuC&hj^3MCaj_&8Qf!gFI6%a_!lvI6-A0X`wF4GjMc4GpWSm-h5*EiPUf6x5TPJZI_BV@^)R$BtbC=|%<0 zQC9pw5ym8McbET5**_fxaY};xf*Bm1-ADs+c6z!vhE&XH?cd1PWFX@DQof<>M(9WG z7sf9#qSo}d99YN3RzAz5hsXC9qeOi;mxqMUp3AnC-}ml$ZBhSZC-?r_Rh#)W8ao3R zwe-Fx7l~ew(tB7b@j|OBzr{vpjpUxq+%5jIKc8Nrrn91No$u6>3l&({Ryd^g6tAkj zA>h`yvM=I*)}$EIkY#`E#2(!%ycy$u!D?a*SGDBpJ1NVj8;DJKF0I>=x7>ZBnbLnV mr+tPmWB6v4MV3CSf62T?M(g>XRd2mO9`2FmF za`Iz0y0^S=nR-Bf#ngnWwu{)VY|^h_na}onqQNGK#~IUqin?ivCfxtwlX2l3W51~* z-{z|euKkhpxN_n7$z`fdiwqN;E}RPPyVy2q&-vRD=`uTI=kZ9IKl?hnqxAi;*B|P> f@YJ3=xBtAjTaN@~>7hgX7`151InG*?1R+N-XNJyv% zn6qFSavwc6a%|l>O6D5T_)_FPOpM*^M+HXP2joV@SoE z(JUzjR2P&TH%uv2~G4aHKif8Y3b|y4Wm61$2H>Yy9 zz!}YQQJdmtcYG&YeDqXJ^zopr05#8mqW}N^ literal 0 HcmV?d00001 diff --git a/graphics/items/icons/dragon_memory.png b/graphics/items/icons/dragon_memory.png new file mode 100755 index 0000000000000000000000000000000000000000..d073dace311d1b6d64b92c6985d07dc34d537c6a GIT binary patch literal 420 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOnmGz`Nqj#fkNUX zt`Q}{`DrEPiAAXl?mjL+V-(6#ixiCYObT0i=7s*K}7mXC)n7GUw=VqYj{6#w2fdm;X!IKOF^eN`m}?862M7NCR?qd%8G=RLn_E zIKVH#%F6m6M=?3sRii&p<%Eu|robUVea0f4kb^-zmmB9i;ZrqmFG}0FdSmOQRlN#* zXHLEpT8afO=I-wQ z4s0DeTFkib?XCVVdLrXuKySyjt>53RXDe=+6&!o*9&2`@z*UA_uCL$eZgsdB+$TtT#Caarzwc1$u+Q)78&qol`;+ E05yK3wg3PC literal 0 HcmV?d00001 diff --git a/graphics/items/icons/dubious_disc.png b/graphics/items/icons/dubious_disc.png new file mode 100755 index 0000000000000000000000000000000000000000..bf2ab2fc0fa65b9074f76608b6d9f2d6ee2fc78d GIT binary patch literal 377 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuUNn=8O1^fI{LW zt`Q}{`DrEPiAAXl?mjL+V-(6#ixiCYObT067YLq#7^4KvquP9Z& zE`@VG3#^ipwN*LNzo#W9e=g!kzx2*nJ$%09W{xvEOP1}a`99BB+d<~$?pF@y-Z{%E zT$V`9*VVtj*K@I8(&{&BL%jmbI?A^%7JL|V(=EkbVIwCq!2lJ4m1 z$iT3%pZiZDE0Avx;1lB7!0_L|z+lIO9V;qUyjby|BVxjYj0FV&6$u^*0S*Bm-Kb#U zw5`!V5ym8McbET5**_fxaY};xf*Bm1-ADs+`aNA7Ln`JZCnzv-aB*=RxasBP)fOPP zcv5$F_eRAQ;c+rT;F+o00((wYR)&z(8s2k!d~bog;pyt{`@cAo$M literal 0 HcmV?d00001 diff --git a/graphics/items/icons/eject_button.png b/graphics/items/icons/eject_button.png new file mode 100755 index 0000000000000000000000000000000000000000..a0492ed6e0b90c8452ddee7b90aa8e85950c412c GIT binary patch literal 370 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuUL5TME0r0)@m& zTq8N1BP5;CP>j*|L@DK3+{(jtGQ zbTkUdYWW$bJMm6=kx>-HCMm)3tVDy6*JN81$3v5y8q(2gn~JP}nsO#E_9$rTa!8+f o-L%nh&$?C)enT#$%02@IhMYf2*H>oF&}%WQZXkv;Q&9&#G77COdQ)LOuc-U2fgOL08ukZi78^{`bzGFiaibdSs_!!k}@{q_Q#G&AYlQ=BcQ8K+Cl zo-%#9gT+ka*}H{+;}!E%nITW4lE_zB)%aGOx5<|=Tx!6tb^W~)Fs nbET$%Sw}ikI&&q*{3LdUZ$Gu~XH~5G3G#ubtDnm{r-UW|YiD)n literal 0 HcmV?d00001 diff --git a/graphics/items/icons/electric_memory.png b/graphics/items/icons/electric_memory.png new file mode 100755 index 0000000000000000000000000000000000000000..ce9a8f362472756d183dc3b583780ae0966271b4 GIT binary patch literal 421 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOnmI3V()JU0)@m& zTq8CGcWsQ|A;DJ+MR&Rn1occd@wppx%K4zo$(def_1-O9ZPsLA zq^>?weEPawzXg`OIy3X6@Y3+Rt%W+Q68G;h7ptV7<4H-_^ZVUDrwIqWq*{44mB0VT zEU9oYF-EE4`@6s43X5BN51;M6esA}FsWXPUp6?>6#n-et9+P=7ZN={W2g;0QEm^uV z+%d$^K#%Rzly|o{3b%ae+Rzayop^6z9BcaGDk*jbhBtqm&Y90Fodfg-gQu&X%Q~lo FCIAtqs67Ax literal 0 HcmV?d00001 diff --git a/graphics/items/icons/fairy_memory.png b/graphics/items/icons/fairy_memory.png new file mode 100755 index 0000000000000000000000000000000000000000..fba869128077e8ac8b054eaa796298b882915926 GIT binary patch literal 422 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOnmHobGn4~0)@m& zTq8gC?f?J(&(6NPy5`%rd;j+~|G(G$uDW_k zQd0G|DOa}?Pw7soK00R$lf;2nK)sAf-tI2{m$H943gVOm`2{mLJiCzw-zaN!51?k0taSIm5U0)1?QY z(vC7SCmRPHZVJC!%Mo<7IPI3p%g}PgImYQmtP=O{F&C?(oij;E*z^0{KPQ3Zi!~=W zetUPfUV*t~%B4fB@9*vX&y}(zVpe9>ja${zopr0NfR(HUIzs literal 0 HcmV?d00001 diff --git a/graphics/items/icons/fighting_memory.png b/graphics/items/icons/fighting_memory.png new file mode 100755 index 0000000000000000000000000000000000000000..ad21a2d078c4e665c575d9cb0dd5d7c5f7702240 GIT binary patch literal 419 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOnmGdr7yR40ENU$ zTq8Aup4+;W>svr{04yD`(1P>8(4qo4?6Y zJAFwT>-&Ab1(sx8U6m=ET6Vv+(1=yy{ypYmmGpBaDG7Uizx(Gl;h?Nys>?(cPl#YZps1Rwr(Z})!oGoE~!!MCc#*R(pCh`ca(y?g(`GNZOB(|5Z$ zhZq{%ePoWrET{9@UGe5{fRein*(iofkD2?*~NeQ(g<##FBm*s{an^LB{Ts5 D0s@~l literal 0 HcmV?d00001 diff --git a/graphics/items/icons/fire_memory.png b/graphics/items/icons/fire_memory.png new file mode 100755 index 0000000000000000000000000000000000000000..33116aed1223ea6b9bd195ec18e47bc5fa1bf0cb GIT binary patch literal 422 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOnmH&Jf{3QKq2uG z*NBqf{Irtt#G+INcOMs^F$!g=MGD4xCWWm_9s-qcloa^617(bXYzD6eO?e>2lJ4m1 z$iT3%pZiZDE0Avx;1lB7!0_MD(D46W$N%r{{Re_)d;cFzdbdX5|Ghc?w`l%9+gx2e zB`K+TOLKE~R`Jm#OB(*{=?3a$O!9Vj`M;F?(@_woB*-tA!Qt7BG$3cMr;B4q#hm1X z1N;)KtgH`m6os$5X!Hlh96oZiRH;RI-L^wVj+zMR9F1UkV$ojKVEM>+>ZTrF>oR$k zVl8#u-mV+9-xWPVD}S!(G}`_CkcBp@#Ql5B#YfW5<)kF+`Tg#nn}WNCr|tyDZ}0Bb zD=;6q6voPZZ*TQ~(-RphL)UsQ{&sKoe)cnwf^Vj7`>q$k-CUt@LHBNXee>HCp0Yy2 z-nJD<33nK$bXwF3Jj$3UtF~-6|Dip~o2AdWeKp}@UNS%G|m0G|-o28REJhK76J{lEI{|F>`dx17DV=H9zC@BRb9oOl0^9z9xJ zJtZlrx_a;4tSQ}d&Yt}}SvwS{modrP-R1vM_D@GaoRT2FU~P*cr+Mv#{`G$mor?|1*)CLGM1*~YV}{QW;> zNd?QzcU(TayZd{+qg(fMZSmRf_m8qD57#JQpI=xGdzUuNS%G|m0G|-o28RCz1_l)g8b5aIxZ&aP<44Aa7YaXqtSCq@xN(7DMhC+N z0|Ss5FtB{i6+IxEG0EHA<^NLlPe(zVk|4ie28U-i(tw-|o-U3d6?2jk6c`P-6mIw& z>fDsoBl(`IivGqca3?~924giV_Bq#b3% z#TBxbb#r$t-db%w!L<1MJ6DCp;qRliR)1f0b@u^3flExA!gPaLD%=7%Ian0)l0$@8 hm{eEDvpi(+V_?vlZLBmaW_CHqhn}u}F6*2UngG%igWdoD literal 0 HcmV?d00001 diff --git a/graphics/items/icons/ghost_memory.png b/graphics/items/icons/ghost_memory.png new file mode 100755 index 0000000000000000000000000000000000000000..3041643aaae310df75027b50b583157979b80f50 GIT binary patch literal 421 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOnhv5`~EYV0ENU$ zTq8DzfoC7}T@Y!S7^BvVr?5<&d*SFIRkb zG)Q;NezxW0?)P>qE2FlqS{s=5Jyt^9x#8nmTLbq+iw{p|{P=G7Z|O#vix(Dj@@y)9 z|BqQxVaXIT*AMUR{$B6s*1a?`&F^;g`+sr*?k1I9GcVoSouJDjG}B>w#Qnd#+a?<> z-E*hd%te&>vDt#2i!Yl6+)uyxVsfii;F;{qy9H*emKQQGa51mdK II;Vst0CZod-v9sr literal 0 HcmV?d00001 diff --git a/graphics/items/icons/gracidea.png b/graphics/items/icons/gracidea.png new file mode 100755 index 0000000000000000000000000000000000000000..31bac3846cde562c1b5467f1b810c03f27d4dc78 GIT binary patch literal 446 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuX`f6YpDk0ENU$ zTq8x5IB2B z!E^N^BhC&zYwm-!)eHyY7O<|}(Ix$zYvH4HPKJ9O`yagZ2@*XRdG^fgJ^ma&_1*6C z?uhF;KaD}ltD(|CpwC0`++9rt+4Dj|&$HVLmOh`_VDee!qECq128*xE`sJ&?X|&e+ z|Jd|yR&Fd?(TwQmXyw!kbH8m*k5}fl>Tch8kK0y2=k3FSYlW{$7uDwHUF*nsth3U! zc+0JRDYjF&le5KSkB&+3dzS`QRmWreMv_eJvud2!U;LK0|H>rf WrakTdrd4}E!QkoY=d#Wzp$Pzr45e)V literal 0 HcmV?d00001 diff --git a/graphics/items/icons/grass_memory.png b/graphics/items/icons/grass_memory.png new file mode 100755 index 0000000000000000000000000000000000000000..646568c412748023460c2d11430a035cb28fad9a GIT binary patch literal 421 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOnhuAaaymmfI{LW zt`Q}{`DrEPiAAXl?mjL+V-(6#ixiCYObT0efxIx+q3F-YqoqlTU|XR zDXBW^-IC@lTe7;lmmEDB$X#9s)XSLU?e6k_Df_3RAWlh;UoeBivm0qZ&K^$}$B>FS z$q5JeC0JQmALJ+sr@LzO2ZmT4RgD!qB*@ED*mEGLXRSkD^iIPW$`=J!&779ECri0Q zxp+}&RqDr8yZIegotyJAXG&bD__3La2Y!5$11h_ic;Z0C_q%^v6`Gx=a!IDVzxS8j z$iX8sZRUf!yT8Xb_Dq|TX}7oN?cU$356(H6I?pTnebZJ04%Y^%}hQSl_fc(6$#C=z<5G>kDiXt^xhQ;OXk;vd$@? F2>=dYr+EMX literal 0 HcmV?d00001 diff --git a/graphics/items/icons/green_apricorn.png b/graphics/items/icons/green_apricorn.png new file mode 100755 index 0000000000000000000000000000000000000000..dc821541bc81faf4287b45d7b1aa2307f0ad6ef0 GIT binary patch literal 368 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuQOwP24iOfkNUX zt`Q}{`DrEPiAAXl?mjL+V-(6#ixiCYObT06(-l;i3nCsb$9TM$_EKeTu7M!zXO9)GPbX1te83wkECIb3gN&O{K5;-k9*bg=C oik4DjoWk_U?2yfoh9{OuKyMal#VtOQzX#-SPgg&ebxsLQ0D?z#ApigX literal 0 HcmV?d00001 diff --git a/graphics/items/icons/ground_memory.png b/graphics/items/icons/ground_memory.png new file mode 100755 index 0000000000000000000000000000000000000000..0f9f31734df68fa62e50018d8e213aca67c17b7b GIT binary patch literal 420 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOnhw8FMN)R1BJv( zTq8@ zOAF3qPAP!knRmMl{8lkMzFnQrmyxkTk@@l6^6%zNJYkn+oKUF#{?2{^ zqmXRoW!Cri_WqYj+2S%Q_1Tua-`~AwEbdvpyY$Uo?rVn>5;;q{zuvu{U@dtyHbyJm zImFN)Z`PwA%b#ByI~J#!oi({tEAUKq=G_9bRm%$*78i@$%`-b#!8@e*bnPwmN6SQBZ0w%8^>6PDcMtn}-(!Of zbJpMM&wrj*^VQYi-b*(7ZR>i=Rz0jP+j>K>s%>Xi!Y=l`Dl^R#=UB`(*8g)-e!q?K UwC{J;+yQye)78&qol`;+0D5AH;Q#;t literal 0 HcmV?d00001 diff --git a/graphics/items/icons/ice_memory.png b/graphics/items/icons/ice_memory.png new file mode 100755 index 0000000000000000000000000000000000000000..c0f7cd76e8527420ce18cb2f1b452f3f3b174cca GIT binary patch literal 415 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOnhu26`yal0fod% zTq8gFw5vbwvMoIMKE^g>Sf0FYu#@^*Lmzm)wGNQ|*0$S;_|;n|HeAZMGWi(^Q|oaBT9 z{1U9JtPgS&lZ9P1`U6dl-nbDXcu3GYl(DGmKu}Mvg5OT=8Ok>&ilyYd+mxj|!+5dp z-W4fVXLc)u8mF6?dabu&ew@K!aL0%7IQ?D|j{t9| zmY7ZPvpc#IE;@O=d*zyaZeBF+vlSxJt?MkAuN_i&!dKFLeP(!qwd7PsnGP+sW3CQ; wm)G?QxO?jt6-I3pd?x!cw7_iD@FVdQ&MBb@0Alr-lmGw# literal 0 HcmV?d00001 diff --git a/graphics/items/icons/ice_stone.png b/graphics/items/icons/ice_stone.png new file mode 100755 index 0000000000000000000000000000000000000000..ee5309544ed31e32cbcd876a2315cdf9b6589041 GIT binary patch literal 422 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuRZ~2ll-b1`3In zxJHx&=ckpFCl;kLxcj&OjZr8|EmAPnGbwCc@(`$mqolyk9VlZAWHWd*XvzaAmUKs7 zM+SzC{oH>NS%G|m0G|-o28REJhK76JeVcOi-o0=C-~Ipp?f?Izy=N`wY`OaGn?%+W zkO9a*dM-PV%b4Wt?(%;r`=_HIPDzkoFoVOh8)-n!UQZXtkcv6U2?`7>tgM1LsmkIK z{TEG6-q_>Ja7d8L+feVlL5qivuXm{7`v8{WBZn_d>AkBcbF6EFig@z(G6VNL%08-B zBKIB=IK)}RTr`W@aaEUgQ>^nGC7lB@$%_-h#jifo6L61-G`(>|b4MlXiJ*lGE+i!T zc0WDsC=+<~Lc-FMv8SaS+d5}Wx1JfjCW`UWA%)DiH!(3=xz=!FVdQ&MBb@01m5<`2YX_ literal 0 HcmV?d00001 diff --git a/graphics/items/icons/jaboca_berry.png b/graphics/items/icons/jaboca_berry.png new file mode 100755 index 0000000000000000000000000000000000000000..da6d029b081f3ad50e05180ac7dc4d263f776036 GIT binary patch literal 395 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuRZews!#M1Hm+DVV|DaxP^M3t-|BVWE3@3uZx&BYFQ=>#rl(Ce$AHK>sS!zk1Zp*GWCDrrI8kW@W%LuEwEudms9DE|HncFNaOd~T! z@lkZ>qG!jd)Rswgx>tWbvt`yae;I?63X$q_8J*MK&sR9`wf_rSu&vUY-OB9UAkTTa L`njxgN@xNAtjCB; literal 0 HcmV?d00001 diff --git a/graphics/items/icons/jaw_fossil.png b/graphics/items/icons/jaw_fossil.png new file mode 100755 index 0000000000000000000000000000000000000000..a52a7579fd7cef5cb59f6cbcec192ae3f1521c10 GIT binary patch literal 444 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuRaZ&bc{PfI{LW zt`Q}{`DrEPiAAXl?mjL+V-(6#ixiCYObT0?an+uh~=Qua?rL7b8xzhDN3XE)M-oXegrjv*CuOfMMb9X8-$4fw@2>Gi_wB_`Fb zmLFt{tQrzC%M(5_**Y0Lxv}t3o3OmS0~1R|>e^QSQaiS6yM#jpH>z(h4$BElUw@@4 zYvSHN8=5|>34HG_6FFDPDMBMFi2uUGa_+x@J)c&aJFRFDxx9vR(P^vxt7{Du`g%&9 zy$XL}sK2Yi=Mhg$f1LicInNd+1r|&+n$J_CD}H>dM_Il>eD{^v;>^v9ymtP)VX!Hs zFmIA*!UCOLk1BIsRP4IH{JC@3c)y9+>_3=eD>96dInc KelF{r5}E)l6{9Ht literal 0 HcmV?d00001 diff --git a/graphics/items/icons/kasib_berry.png b/graphics/items/icons/kasib_berry.png new file mode 100755 index 0000000000000000000000000000000000000000..c09fa20dec70f94d3dbbd8cb4645678a3c5539a0 GIT binary patch literal 403 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuRZ`zb~A;4HObD zag8Vm&QB{TPb^AhaQATm8lzB_TBKmCXHwX@!lvI6-A0X`wF4GjMc3=Dq!*s-F*;DN)A9~mb$7)ve7nkgKvF6#?-^LR-KJNdrcDjFPTU4hzqwS?Nzpsl*gd6SK z?_$il`G&vXL90#9g4Y5L6mTBeBxLd4qiJSS>*)&(k4tz88e06L#nhMFm5NS%G|m0G|-o28RCz1_l~4Gz<<{1iVPl$k1q5VKCu<#fA?v8VV9JA_6Y_ zH~>@&2emp=V}KmSByV?@|4Z3F9R+bpg8YIR9G=}s19BF4x;TbZ%$eH1k@t{+fa_!4 zq-dUoJ3Ef13+Vnh!nCI05EIAul|F7Cm{cMgpKdtc7Zg}X*2Y|9zkzWaNH7Gs9It(Dgj&cbiQ^A literal 0 HcmV?d00001 diff --git a/graphics/items/icons/kee_berry.png b/graphics/items/icons/kee_berry.png new file mode 100755 index 0000000000000000000000000000000000000000..83749d1b834290f251a24847a7328cef4a855f3e GIT binary patch literal 447 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOnhwIUw>aO1`3In zxJHx&=ckpFCl;kLxcj&OjZr8|EmAPnGbwCc@(`$mqolyk9VlZAWHWd*XvzaAmUKs7 zM+SzC{oH>NS%G|m0G|-o28REJhK6(Q6&LRf3YueRSgiQ0C+h#&>b))5=aQYKR44zx zxA)oJr9kC-=d=LHD@q(cfD~hrx4X;#rR<-Mf;c5Xe!&b5&u*jvIoCX0978JRq)zbV zV{{Z~-JO5Iv~E(OsjZ(ujKhwG`Nk5>TMxa-y%8~?<4BNNEyG-mY-zK;hhn>`RfMv> z?%NacYH!k;a)u+}-jW>06t5@7vYp}Xd1lm;vRHS|vf`-H2D_F=o8`|hxL!Exw?(wt z(mNjtHy(L;ZS4ohM z8CmRWYR-Brw_@ZLoqCryXP(%PADfPy%>7)lQhiBT|6UC?y>kgGL=60&IQHvb7W#Bc f=D~Yi`_F8;mG&;ieoa4tK4kE8^>bP0l+XkKiH)kO literal 0 HcmV?d00001 diff --git a/graphics/items/icons/luck_incense.png b/graphics/items/icons/luck_incense.png new file mode 100755 index 0000000000000000000000000000000000000000..396ab2f613214054432e0b2c30cd9a8cc6643679 GIT binary patch literal 404 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuX7UMRVKM0fod% zTq8MHUV4D~uDxxjoFEWSYnFrf4POfF1dMwhjO-y|P z42qXYdB_I;ST)mO!zz)KU0D%7SGh*5J{8>DAaikL;?t|QPX{YAJIlX7~K z<>m$(g=*D~#g^HsCmJHP)f;>IVp!RN5Bdqr7?wim#qA0LTO9r> daHtnBF^F$5nZf2L)BtoggQu&X%Q~loCIE&}gwp^3 literal 0 HcmV?d00001 diff --git a/graphics/items/icons/luminous_moss.png b/graphics/items/icons/luminous_moss.png new file mode 100755 index 0000000000000000000000000000000000000000..6ee31c5e1b2e25f0bee21f6fcc51c3edf680537d GIT binary patch literal 385 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOoE2OiLbb0fI{LW zt`Q}{`DrEPiAAXl?mjL+V-(6#ixiCYObT0q1Yq5WZ9}$98W`9R5f>+ zi91+K%JN(}OHRP|jhLgN)2lJ4m1 z$iT3%pZiZDE0Avx;1lB7!0_L|z~DtjMn^|ShJnF{1q%`q5;hnZR3s#Pm|^haM*zqG zBoMl!F9yhEO!9Vj`M;F?(@_woB*-tA!Qt7BG$5zn)5S5QVoq|x0e+T=H@%veIJQli zw1}aJ_p#%RfO#9d1!gRk;&{>_*<88mVXJ~mdKI;Vst04BY9p8x;= literal 0 HcmV?d00001 diff --git a/graphics/items/icons/maranga_berry.png b/graphics/items/icons/maranga_berry.png new file mode 100755 index 0000000000000000000000000000000000000000..2551c0167b24e40e13af93973161ad854d86142b GIT binary patch literal 401 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOnhw2zZK#gfkNUX zt`Q}{`DrEPiAAXl?mjL+V-(6#ixiCYObT0dZUv(1>TJX0Ak8T)$sny5Ao|nXy+A?6 zByV?@|4Z3F9R+bpg8YIR9G=}s19Db)x;TbZ%*mawk+0c+$K|6ui$;kWckxpVYp=Qn zuPN&SSry_0LoCe88t70z%V@`}!Wk?&e+Qi>_p+sEDMs zndO!`wePIiyegTg|bh;K#Dc zUqw5=9G_vYl)e3A-_IF53K>r(a8Hu3DxP_4;S}jTo(-oCABl3G#F!hxyDsjg^=Y|J x8#jjS&|c%VZlP+x;`B-RHgW~r`{jNwVb?q*Hm&bK#b1zfJzf1=);T3K0RUxsYGD8X literal 0 HcmV?d00001 diff --git a/graphics/items/icons/occa_berry.png b/graphics/items/icons/occa_berry.png new file mode 100755 index 0000000000000000000000000000000000000000..05d9860fb5b613027d791f346d8f7cab50aa1d04 GIT binary patch literal 366 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuSl_Y|+6iKq2uG z*NBqf{Irtt#G+INcOMs^F$!g=MGD4xCWWm_9s-qcloa^617(bXYzD6eO?e>2lJ4m1 z$iT3%pZiZDE0Avx;1lB7!0_L|z@Xy741)}h7X=1CCM4XbaM+QcV6hQdxqfmZI3ohNW3O@$Tfeps^nd+e^=}OoLA?3$bWI!ObO@h<@2A2mGd{psXbhK zb;T3cbDOvGeRo~g>}VA?@8^*)Z`YI(1(B0XrU`qR^$iZ(abVnPddc*_n*|A9Q&+9% ldSU)u^v<7O2af+=BL41x>>cBcx=J9&d%F6$taD0e0sw7Qek%X~ literal 0 HcmV?d00001 diff --git a/graphics/items/icons/odd_incense.png b/graphics/items/icons/odd_incense.png new file mode 100755 index 0000000000000000000000000000000000000000..11c7d24f7da536d51a355be4965734b221ecb150 GIT binary patch literal 402 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuSl#91XY4fI{LW zt`Q}{`DrEPiAAXl?mjL+V-(6#ixiCYObT0sPH%dRD}k( zw;1jQ3Na>mySw~f%Kqsnh*J{e7tG-B>_!@pv(nSWF{ENna)JV*0hhuJpF?e21=~6{ zEL8UKyJDep)j~i^P$MTNM}uo(khqAc2%m@!ORgTe~DWM4f^qPJA literal 0 HcmV?d00001 diff --git a/graphics/items/icons/odd_keystone.png b/graphics/items/icons/odd_keystone.png new file mode 100755 index 0000000000000000000000000000000000000000..8ef2d3cdb53688d349b5bfd6ec041ef49cac5b7b GIT binary patch literal 395 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuSlZ-NA7mfkNUX zt`Q}{`DrEPiAAXl?mjL+V-(6#ixiCYObT0>J2CAm31cSu2i?LiUqtp(NWi*tBA z`7c~KJ}pdYd#;mhgRjlOFL(NQa(XvE;{G#Pvg^@%p`{|JZmhe#PM2)Vzq{F1RVO`W zowBoR{^8%EKjt!RZklUsA{5hO!jbW-(#PQ5mr|ZiwhtFG*`B@^zf#Jhd4SF5_=*Hp zrtP;6xy;D<;dDWgFJb5H1W&6U7KhT7eY*GY%901MaVwTgvbTTC>^(sxmF1L+J;-;S Lu6{1-oD!M?FJ=F96vQbB@(X5gcy=QV$Vv2caSW-Llbo=CD?x;XNm0Z7h6D%CLZNjF7cM;5 zDbU9;K{jhzhss1CW_;+Nsvxt1Wyax*M?f%V+B7wWM=jHVz$x^g1(S!&3SEId1|jxW lVjS#B2M@3m?NiW{V`Dfkt6UP_Ew%;ZJWp3Ymvv4FO#s0VTpR!Z literal 0 HcmV?d00001 diff --git a/graphics/items/icons/oval_stone.png b/graphics/items/icons/oval_stone.png new file mode 100755 index 0000000000000000000000000000000000000000..27e0a7ccf2e8a1c8acbf7f2e199e779e3553c0a4 GIT binary patch literal 364 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuSk`tDdiN0Sbwi zxJHx&=ckpFCl;kLxcj&OjZr8|EmAPnGbwCc@(`$mqolyk9VlZAWHWd*XvzaAmUKs7 zM+SzC{oH>NS%G|m0G|-o28RCz1_lWU2`4Vxxbfn{gas>3+<5Wh$BzXoHh{EZfI5$t zHb6nfByV?@|4Z3F9R+bpg8YIR9G=}s19F-@T^vIy<|HR5h#PQmDc(4xw~Wc4Z$o!? zx1!IXqq;|rN@}UTiJLa*8Ph|9Z9As#SYpZEXz8QopsOd>o6x7>(cSH;FhiN~+I_~S z4O1dZ9Hw}h?A~Fq-Ob@^iG+0d7B`0}hNTUSOh@K%EU0kTzQVdl!B62#?kZVX$AWNU eF0Mm2fgx1pfllT-G@yGywn@MRe`} literal 0 HcmV?d00001 diff --git a/graphics/items/icons/passho_berry.png b/graphics/items/icons/passho_berry.png new file mode 100755 index 0000000000000000000000000000000000000000..cdf3756078f0db0a2e375c617b5dd6f2cd6b4934 GIT binary patch literal 383 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuSm03Qfr?fI{LW zt`Q}{`DrEPiAAXl?mjL+V-(6#ixiCYObT0no&6`u!9lDV0d^&yi#RnRGnoX8*$+4R<=}O8p@qhKv6V2zXly{t3v~oJgN1m>JF6*2UngH}}f)M}! literal 0 HcmV?d00001 diff --git a/graphics/items/icons/payapa_berry.png b/graphics/items/icons/payapa_berry.png new file mode 100755 index 0000000000000000000000000000000000000000..fe021c473ec4a2cd04b29db04798f2ec2b5038a5 GIT binary patch literal 390 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuU*_Tj~RAfkNUX zt`Q}{`DrEPiAAXl?mjL+V-(6#ixiCYObT0i!+tFlxFyybe9X*p&rm*kTN4>^T)4Z3Qsodtr1IXiS|78 zph(9h*Jd`C*1XdWF9aM}*Dt-bDAQwA^sO&^X?KGTZvAX~=Y7Vacg(Z)#d=yyTQ=w1 QMUZzqUHx3vIVCg!0E&{05dZ)H literal 0 HcmV?d00001 diff --git a/graphics/items/icons/pink_apricorn.png b/graphics/items/icons/pink_apricorn.png new file mode 100755 index 0000000000000000000000000000000000000000..abcedcba49d70b5045f309260ee632dbd94e059a GIT binary patch literal 368 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuU+g%4<8m0)@m& zTq8+_V;U3dk)E+F3C%+eNwMaZp~|yIYpbN~(|I_#UY=S++fUs=82cZDT;{)1wO) zE=*)f=&RnTIYF4~*^C_$?T0K+9`hEQvt>&NOL}xvn8q0fwv8qN`dmrRM^vUdy&5?#DmPtTw7HP#TK9j!(O|mw5Yk?GFlDE6d|E27oj)FKPL4Lsu4$p3+0XdUAT^vIy<|HR5 z2y-wo_MBajlar&u@RUPZTT@f}kV;QX%#?*eJ*(WjypA~r^c8Q|Sh#|7%H$L&sVtV~ z5|%Sp&2Y3x@>F}eE-R~3z;BnE`{pRA7Ujr$7cahD<5gttzP9< zvafm8w(sX|T7QmnmQ}BP{%&ujbmF>cb>H)p&s^o{X=*Ak6J%h}`KfwLFspG5&~*%+ Lu6{1-oD!M<>~)6^ literal 0 HcmV?d00001 diff --git a/graphics/items/icons/plume_fossil.png b/graphics/items/icons/plume_fossil.png new file mode 100755 index 0000000000000000000000000000000000000000..cf98166b31c59481e7fc6b0eab96ad809faab63e GIT binary patch literal 393 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuU*hX+>8WfI{LW zt`Q}{`DrEPiAAXl?mjL+V-(6#ixiCYObT0h;8El*6 zol&LSa&|_d)H6F}iA4cRbPq3%kvx=G;`uUTeTJzQOW_e)BP%Vdrr3iro!k1j_@5?( zcKAf6ySuLrl;}8oV~XM4MM^hpcv2V^2QS$bw0dHc)Qrn9Qc_Y^^~6PJNj(Ood0{L{NGZ2wtDZDq}%WQZXkv z;Q+q`D=X`R97W;h4jTP|YfcN9w;Aw^;ALRo?srdZXmKo;DSNL3Im4;3KI?hRiOdT zqv4%EA;u(ccbET5**_fxaY};xf*Bm1-ADs+wt2cZhE&X{ov@Lw$v~hjTFqUE{W_b^ zja=ojeT(-o*f1{HePzkMgNCOcysi@EEc`hCpZ@>)w_Bb5OxNkE`5Jk1%krA9=Ztmd zZh9Hjzd$JD9{&rTdqF2l=1L0~eEoLfmF2Eag6=a;EI4S)?^)bA(c)ELr_XVVckc`i za4A`AW?aY^@nGVD>)bA`D{|*@OUB(%p7D0FzHWA($9c20#T#ryzSt}?PdVtf2lJ4m1 z$iT3%pZiZDE0Avx;1lB7!0WcH*l}=ca3Yv$ai? zm?V@IDpmMDVA{^`nO&!R$ulk1G`V}lT+es!H(CE@lJifV$8VP0PYLLI$lEz_va`&6 lXXnNrZx3{B{r~U4Eb(l9)00^-0rNl}_H^}gS?83{1OQ`0l0X0e literal 0 HcmV?d00001 diff --git a/graphics/items/icons/power_belt.png b/graphics/items/icons/power_belt.png new file mode 100755 index 0000000000000000000000000000000000000000..e4273f85c649f5718c320ca4e86ef05514036ee4 GIT binary patch literal 412 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuQP}$FDe?0}6?k zxJHx&=ckpFCl;kLxcj&OjZr8|EmAPnGbwCc@(`$mqolyk9VlZAWHWd*XvzaAmUKs7 zM+SzC{oH>NS%G|m0G|-o28RC$2?+)U1}8ckUTjGCaAC%a1sNR~1_cfh8wxByx={ho z9-&)65ym8McbET5**_fxaY};xf*Bm1-ADs+Hha1_hE&X{ov@#;$w1&(w3@pRdpMKY zn>gjNcMA*K)emg&_I)KSlb`Tw+r37X*gwnOPyhYSfAy96mp1<5^F>OFJ;d*SH3x-C|bmFM{LEBd%Y<;Qg(RG4(4d#a6c2mq{uUyy=+6n zr~3{z2hV;G*gnp|vd$@?2>`=klN0~| literal 0 HcmV?d00001 diff --git a/graphics/items/icons/power_bracer.png b/graphics/items/icons/power_bracer.png new file mode 100755 index 0000000000000000000000000000000000000000..54aa34844bd5283d773bcac0014076c6814cfe82 GIT binary patch literal 401 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuQQM&l0v&1BJv( zTq8gaiWvgBuYM9|{V7Oqj63!=u2$Vn;v#NGk^Lw!5JL z6l6^Dc6a%|l>O6D5T_)_FPOpM*^M+HXN9MWV@SoE+6jhy%?3QKveVXiOto?k*eD)7 z#r7GKsLX;TUikuf2X_8u?hTk;RTW>iZH~ZS{ov5lXN$sePoHUib>p3%ZI6}jxn&nJ zlCDNiaw%o-=Wp4Z$I7q0F0XS_<+PqV&K+FG+M1ka`0IE4;eB#&k~7O|xqBk6pL{ml zc)n{=Py9pI!a04bt+yx{+Y9R1w%L51b1&dWon!L7zGZA)X+~!c?zbzopr0NoLYQ2+n{ literal 0 HcmV?d00001 diff --git a/graphics/items/icons/power_lens.png b/graphics/items/icons/power_lens.png new file mode 100755 index 0000000000000000000000000000000000000000..b18d9118603721027c2f2de4dec3010d3d6f5e47 GIT binary patch literal 428 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuR-S2j@@M01Anh zxJHx&=ckpFCl;kLxcj&OjZr8|EmAPnGbwCc@(`$mqolyk9VlZAWHWd*XvzaAmUKs7 zM+SzC{oH>NS%G|m0G|-o{|ycX1_mDjKKw}d@nOS{42yyZ4l@oo+*shSL*c;>iwQq~ z0AvOXh{rVX0NIR5-tI2{m$H943gVOm`2{mLJiCzwNaSW-LlX_t<*C7J|h6g1@ zzFJ!zsByjX%}T%hYK@1_^`MM&LEHNW_Bic+{Xn`y|M}d%jvto&-to9d{MbJyj*H9t zW}I9w`SCJ|LTz*2($G~if)nM^%o~DyIX%6)1DZQt(rOTptmQwGQYg&;Car~arDvgSFR9zWbW(8y!aF{vj-0wAHpOt1Mlet}Z zk=v6mbJSBK?0G-DFWfgJ%K6^>SjH!Ro;$bg>F3XlH%oFeI0_0#22WQ%mvv4FO#s<= BoMZq1 literal 0 HcmV?d00001 diff --git a/graphics/items/icons/power_weight.png b/graphics/items/icons/power_weight.png new file mode 100755 index 0000000000000000000000000000000000000000..149679c387039ebf447780311c16a6602f172bca GIT binary patch literal 404 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuR;1))Q8F1BJv( zTq8gaiWv1BVj<2`?&Ud|2TzBf?`xghhq}Pzfe5Wznew ziZUj7ySw~f%Kqsnh*J{e7tG-B>_!@pv)a?eF{ENn?F2)?=d* z6a!&reFuI9$Hu)Jc?n-{+?Wy+@!`w7PqKem9{iuN>5Te0twn0{Egm$^GE}}J*y^NLjCYHhYxIX-Lfg=jhd?378ll(8J98(uf2&@sN?2-tPw6M z?(WGtdG{B~85PrI*uP&WnmSq8tv@RLX{x5uyf3_wUzoY~dpY<1NHq9*X1~3`dEqq& V4K7~qt6T~4rl+f)%Q~loCIIvPigf@0 literal 0 HcmV?d00001 diff --git a/graphics/items/icons/prism_scale.png b/graphics/items/icons/prism_scale.png new file mode 100755 index 0000000000000000000000000000000000000000..335816ddbcc430a99e947268e3d57f34c46ed87c GIT binary patch literal 325 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuR-+rrt`GKq2uG z*NBqf{Irtt#G+INcOMs^F$!g=MGD4xCWWm_9s-qcloa^617(bXYzD6eO?e>2lJ4m1 z$iT3%pZiZDE0Avx;1lB7!0J+T2f%hT1*Wt~$(696$pVweB` literal 0 HcmV?d00001 diff --git a/graphics/items/icons/protector.png b/graphics/items/icons/protector.png new file mode 100755 index 0000000000000000000000000000000000000000..fa88ae155606283f48afcb04e98c276f1dbf0dda GIT binary patch literal 381 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuU9>_Lo}ufkNUX zt`Q}{`DrEPiAAXl?mjL+V-(6#ixiCYObT0jVp@HV(PPlZ2Yo zm$W=Ev|_Ye)hW=ofpbE*9M?o4Gqb`V{d|3v)syDr?^_GvC)nd~6r x$-#aiSf6DV^Pxlm9rjB-O#%KKO4ZWZ3=HXNYKvcaclCk%;_2$=vd$@?2>^#baW((| literal 0 HcmV?d00001 diff --git a/graphics/items/icons/psychic_memory.png b/graphics/items/icons/psychic_memory.png new file mode 100755 index 0000000000000000000000000000000000000000..beda2c22df19697b1682d33e6ebb667f3f0edfc6 GIT binary patch literal 420 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOne;tIihw?fI{LW zt`Q}{`DrEPiAAXl?mjL+V-(6#ixiCYObT0%p zPf1Fu-qPLNU0i&0&5}2h(jce2M4`Yx>6a^e%$NS%G|m0G|-o28REJhK5(W|Gzu?|7g_z|KI*cIXYHH1x-l`+B;=Vv6o}D zm)HNJd;eD#?~RHAYP$3z@Dq??O!9Vj`M;F?(@_woB*-tA!Qt7BG$3b^r;B4q#hl~> z1z`>*#-6h)a&mH17@l%SYinw1A5!UwiJ7u6sArX%m)9}JfWG1l8w*!(PMMq{C6&eU zT*7kZsu_+JNuFv?*JWjO3i$1EbKe{#)uJ4E@8ZQbQ_Td=Otiav@!}=ZV&x+ZyVa}w zO7=C++V=h2P3zBb&a&#Y&)@B>luleXt?qlC@|mkVJxxsoW`Yb1IzLs931&5}0lJRC M)78&qol`;+0M!qQG5`Po literal 0 HcmV?d00001 diff --git a/graphics/items/icons/rare_bone.png b/graphics/items/icons/rare_bone.png new file mode 100755 index 0000000000000000000000000000000000000000..80b4af9d58c1da065daf944ab4f7c186a4593288 GIT binary patch literal 331 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuXhw#X;Y`0ENU$ zTq8dfNqags$*bxBrE(}R|_ zLst#iRFy3jojP@}uYfaD*l|Zo&;|ylcCABVF+xoqLOloFmKAU+E;VT3Tc~hVpe1mb p$1@|V)k@VzEd)T$&UawUjP3u8!^mO%eS?83{1OOzsV6*@L literal 0 HcmV?d00001 diff --git a/graphics/items/icons/razor_claw.png b/graphics/items/icons/razor_claw.png new file mode 100755 index 0000000000000000000000000000000000000000..59c27fc809c3c4b96527f828df4ac8a685ffb529 GIT binary patch literal 360 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuXh&(E)y0Kq2uG z*NBqf{Irtt#G+INcOMs^F$!g=MGD4xCWWm_9s-qcloa^617(bXYzD6eO?e>2lJ4m1 z$iT3%pZiZDE0Avx;1lB7!0_L|z~IM^9}OK7F5I{=W5J4yf{G0XP6Px5fV5(O>cbsj zKtaYNZ+DmfOW8ji1#wD({DK)Ap4~_Ta_T)@978JRBqt~cb8vBS9k|is<#nvhVBUo8 zqKp-aAx=j%O-)Q97_=6ONpVeOdgZ}d$fPKfDj>b6@8VJ3Gn}l&r%pSay_7KL!={9T zA3`|V9rsvlaNNUlN>GPUnXhl#4Gz@w%D1NK*Pg$nMPlCOe}IZV)h@K5pV ZZ-x*5W&G#PFqsWh2%Q~loCIC?WZ;1c^ literal 0 HcmV?d00001 diff --git a/graphics/items/icons/razor_fang.png b/graphics/items/icons/razor_fang.png new file mode 100755 index 0000000000000000000000000000000000000000..dd54b98e794fe4e8cd935874ad5178068b272de9 GIT binary patch literal 342 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuXhoq20$KfI{LW zt`Q}{`DrEPiAAXl?mjL+V-(6#ixiCYObT0FS$q5Q_99#+;r;0wzaT85f z-7#fCcd)=5NS%G|m0G|-o28RCu9uWox1``@qG-PzFn6V=xq5`A|2VnUccCU+*2_lSD-luN=y1d&&Fc>}T%TPSZE1ZXm)jC zzl({y=>s#B2FuNtSydS7=M->G=z9F=p!PxmOTHHy8J5mHe%xgSM_g&D&kiAhc32lJ4m1 z$iT3%pZiZDE0Avx;1lB7!0_MD(D3=zp5h>H1o;IsI6S+N2IRDRx;TbZ%t=mA5HsL1;Ns$P zuypEj(^}XmAh$SZXT`*97v+}6L3wfSZdo!bsXmJ1d!*82+4k(I>O#S_jRC1ok1kxe zFp(*tuX?BE1YxdcGj>R{AF@1o%v*5ImMtMH>CsVP8fO^THkt_Nb0zhcNJ-?h>|j6C qxGP#pk#P#sC$mE~M;e}3CIP)!q!qXLO#U8_!#!R7T-G@yGywpmNOeR2 literal 0 HcmV?d00001 diff --git a/graphics/items/icons/red_card.png b/graphics/items/icons/red_card.png new file mode 100755 index 0000000000000000000000000000000000000000..1d07d827fa80c2cf0d01dbc995375355ff3609ad GIT binary patch literal 311 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuS~s3_qW{1BJv( zTq8EaktF()}eLEL~#p|C|{Vuh0zhuq>xlO}CqY+C&25l{HiM@7NKB~kkYP(ss^Mj3xM3p@?CqVn8sscb LS3j3^P6NS%G|m0G|-o28REJhKB#6qW({r0%ZNacQ(q=@&Dev)lorHl7jY5nN#fL zSncKY|LETT)x~?GqV(SR$^rEXr%X*t+(eW-g@T$fA++6X$c}CEt@+T7=$Nj$VN&?nggB3 N;OXk;vd$@?2>^|~h^_zt literal 0 HcmV?d00001 diff --git a/graphics/items/icons/rindo_berry.png b/graphics/items/icons/rindo_berry.png new file mode 100755 index 0000000000000000000000000000000000000000..4729e188c0176fb5c005d1f8af633e9454a69051 GIT binary patch literal 353 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuS~QUvz`SfI{LW zt`Q}{`DrEPiAAXl?mjL+V-(6#ixiCYObT0oDireFi==wu;a%9pb|{5>Z`(K zpeSRKx4X;#rR<-Mf;c5Xe!&b5&u*jvITfBRjv*Cuk`oj-Bv>a{ICXIpI;ytxZ0OW# zI;^oQqvL|otcacoLZSjK#S*a-e8kN3S~!|ExNf$L@QPuW8LYu@gfJ}O_M*GGa5+^j^zCY8(In literal 0 HcmV?d00001 diff --git a/graphics/items/icons/ring_target.png b/graphics/items/icons/ring_target.png new file mode 100755 index 0000000000000000000000000000000000000000..fae2b944bee351a510f90ce982908f1f5741e460 GIT binary patch literal 330 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuS~Ycl2L%0ENU$ zTq8uF_yY~P8|LSBzkX8)v&)fJK zP>?an+uh~=Qua?rL7b8xzhDN3XE)M-oJ3C-$B>FS$q5R=988QoXICs)lA^@$l%sVj ztERP+<)Wugm!4`12+dl$D%GI0=b@w5L&swQe!GGuRSES3uZvn0=Q4x&+T*4isUGHS t$DJ7-GKtP8cE}6PbSX0R5nWXe^nXj5qNS%G|m0G|-o28RCz1_lWp3O6n+IItk&#Eyc31cMbF4jmZ=Agvfc+oLoZ zD9D)P?e6k_Df_3RAWlh;UoeBivm0qZ&N@#Q$B>FSQ~Q1SnhXS58-*=Gn!GbjHsl`T zo{*5x%~{06_aOe(THa;FIk%g36g}KN^Z{k+a)FK{*tYBs(<=}$^&I) zQEeKNPTq1z!gm%>2?X8z0a$xGPq);loe%h*SRe XHl?d86sTSZ2YJ-f)z4*}Q$iB}m>`Sq literal 0 HcmV?d00001 diff --git a/graphics/items/icons/rock_memory.png b/graphics/items/icons/rock_memory.png new file mode 100755 index 0000000000000000000000000000000000000000..32d46fea49a32782aa641c6f953fcc9060b90efb GIT binary patch literal 414 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOne+1p9)vI1BJv( zTq8q+(8T z!U28>R#w&rIf}y19T+97?;bsBA#h0W5<}4(?}I@-jtYH+mNS$kS6zAbC}v-l@(g2B zjhkm`uFmXM2sKV`WA$2Z#r${)m%%+t?q?jWZDK|S^LAF}DRwMgl6XR)_}Q8035-Ir znQBex=jQBYHHy+%YjHE@?9JlU2j`RsZ|^frKM*BxWKv_^N~_OYIqHi!JD3BH9@wG8 y`eH_`v|``1xQR&{vy{(RUt0YjC&d3T14DzH?PgEiFkhet7(8A5T-G@yGywn$MwxE_ literal 0 HcmV?d00001 diff --git a/graphics/items/icons/rocky_helmet.png b/graphics/items/icons/rocky_helmet.png new file mode 100755 index 0000000000000000000000000000000000000000..006a9f8aa4a1236a4117423c53524aece23dd9a5 GIT binary patch literal 385 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuS~S=bel00fod% zTq8_!@pGsDxxF{EP7+lu9vQR^D|l?Re_VxL;;>EMumheWhn}bAiCx$_Hnf1Pjd*5*p)A{ubt~ z#m-zZFJy`4GBwGN85*W*nq%kAsMO?m_U9tMo#aN28YKgzU zD|~Q{tnBXc@{(rDS?N{|bNY-YJGh;nWBK`vqyl4E(}ZVdEY;Kff?6uv0ysHX6!Vfp kgjkqVSIDzGWbtEQShmAdV7bnlIFR=|UHx3vIVCg!0D)PF5C8xG literal 0 HcmV?d00001 diff --git a/graphics/items/icons/roseli_berry.png b/graphics/items/icons/roseli_berry.png new file mode 100755 index 0000000000000000000000000000000000000000..7487cb2a4c6eb837c0fbbd48dbcf19a074e3d51a GIT binary patch literal 400 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuVMz;@1O0fkNUX zt`Q}{`DrEPiAAXl?mjL+V-(6#ixiCYObT0x|$B>FSQzsbm9Wvl?ojgyWacQ!q$J~RR zR*R=`3$${FoMN@w5xINHOw}LTE-YE$<55xNKW%@G@wfQgF8#2lr!K5odel2(;a)Yn z2Bu<9qtCuCA4_jey5Iax%KH3=jk6r2Wm}&rGMH`ao)ox3{cX>Tok~(oWrjVI)n6T) zm$XS`NyCJe&=)W7&7Yi;{bhyAlQY*m`tNR9Hu=f%^ZzD2eOkP?ms_*$-$PbsdDT?e S%_lNJ-t%H1o;IsI6S+N2IQRgba4!+m{U7pBVUt&K-){{fRq4p z&gLDG_YWLdu~_YTgEeoT6wl^kj}AUtV78~>Q1C4=x5vDD>&pLcEl-cE@0m3@Almx) zvR9X8`AmZVN-3>1t~w7Nz24rwRNb*l z;OqJ)w)`$F5i`VM>%=zKYSvNQNH;1@#w4!Ubv;Impjdv5YUhwK*?jlei Nc)I$ztaD0e0su_GqIm!S literal 0 HcmV?d00001 diff --git a/graphics/items/icons/sachet.png b/graphics/items/icons/sachet.png new file mode 100755 index 0000000000000000000000000000000000000000..32c566a91da29c1cc4e8dbb233428baef9659504 GIT binary patch literal 369 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuVM-TnP?_Kq2uG z*NBqf{Irtt#G+INcOMs^F$!g=MGD4xCWWm_9s-qcloa^617(bXYzD6eO?e>2lJ4m1 z$iT3%pZiZDE0Avx;1lBdzrn%K(9p}vYj5$fwaHtPovNoqE&YD2_}W@akX8)PHF?an+uh~=Qua?rL7b8xzhDN3XE)M-oDNSH$B>FSxf2}u4k-w@O8P%I-nO-Z+4x4S z^CfPHo93eH9*Ej(J8E=bQT@@!hVvVO*cD3_Td0R<6izDH^F4hnG0OUB1Cphb&pRdm^XKR*~e#dey-O@oprhH+>$v#?upUv kJ2@1Oe#=_$zj5&&hGGkme`{WC*#z=}r>mdKI;Vst0EXavx&QzG literal 0 HcmV?d00001 diff --git a/graphics/items/icons/sail_fossil.png b/graphics/items/icons/sail_fossil.png new file mode 100755 index 0000000000000000000000000000000000000000..4c6514820e4ced0dd23e7513258217c26851b386 GIT binary patch literal 438 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOhRm0Yu3%R1PY0l zxJHx&=ckpFCl;kLxcj&OjZr8|EmAPnGbwCc@(`$mqolyk9VlZAWHWd*XvzaAmUKs7 zM+SzC{oH>NS%G|m0G|-o28REZh9J;#Zfn$>mg2Q@ETg=fvZJDUszF*YfNxx+IZ%)> z$=luK|5El(M?svDAirP+hi5m^fSj|QE{-7;b6h7J%xgB_X^Wk=U{0B9iO?R0Ex)h0 z-idZTx4_CaU+G+B(!qY)B{l7fW3 z=f%feelFzAwn<<3d=`7p?dM#rAM@D*rak?5@efmCtxs<00_nY=aPV~Xb6Mw<&;$S| CJ)njF literal 0 HcmV?d00001 diff --git a/graphics/items/icons/shiny_stone.png b/graphics/items/icons/shiny_stone.png new file mode 100755 index 0000000000000000000000000000000000000000..d48db4d86a2787f0b2971dc8a85abbdcf4b65ec4 GIT binary patch literal 390 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuQyWt|ztz1BJv( zTq8{r zk9fYf0!0{;yxm>?FJ=F96vQbB@(X5gcy=QV$eHWu;uumfCpkfZm4k~*;l`ishk!*2;*I z787SnKP_2ZOilAwaOXTC$jNIs)AF#AY|hGpj1}(g#lb>zl5-f1Ep=@@ zJvGk?Jd)V@<|urA0`p00i_ I>zopr03d&VivR!s literal 0 HcmV?d00001 diff --git a/graphics/items/icons/shuca_berry.png b/graphics/items/icons/shuca_berry.png new file mode 100755 index 0000000000000000000000000000000000000000..cc99671876d928848bea243aef7f464857717cd4 GIT binary patch literal 369 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuQyqVM}ybfkNUX zt`Q}{`DrEPiAAXl?mjL+V-(6#ixiCYObT0+=6D^#MF>&;D zOj4estMTX&)8wQOuHxn*30Bv+Ax5vw$5WbBv=n7d771vy?BYH%lcRL0 nMF(&BrxF(F7m|)D@k#6qJ9V^NUX+}20Xg2&)z4*}Q$iB}hU2W0JSK%m1b9pN@h!B|(0{3=Yq3qyafMJzX3_D(2K)*xz-?L4fVU8|jp% zdz`J!8-3^A6xd)aY4CT|_2n18Et<5&ZQ|8)P6eOYo(JEP_#e_9e3swt#?Nbo_xK*) zsa-Rt+=2I9lJQGlMcFMco|U?A{N$aVB%0|F>gy;rEt+9zh=Zfqb#De1d+nI^wO9ER zSnFkk)lM>Mv_GDb;Pdoi-z5PjMZS(1F)R;roFm0FvilRZt|&?CTID+NeTmMJdzV+s z7e=~o+x?yW{13D2 X<#w9hDp{FT0SXOIS3j3^P6`jF*AdfN0+uh~=Qua?rL7b8xzhDN3XE)M-oD@$N$B>FS$q5VW1Vls{HjDPol@(o( zvn(Mw`LTjV`$fqUhAl-`8gi12SL{k!(6c$3xh0rsih*HkQCIK8lx0%Z*0Y!RHAu}( zN}9xGJgYb}D{Ga?8CK)zZC-v2yVIZfu*?<$I;~LTk&v87706wlu6{1-oD!M?FJ=F96vQbB@(X5gcy=QV$l2xT;uumf zCpqB&zXU5Q>w_Fc;b2!r3F|X^_qYfins|YwXwKvVK|Q_>ew~Fv4V zyxm>?FJ=F96vQbB@(X5gcy=QV$cguKaSW-Llbo=?EI~vhAt0!!s3msJjGkW6137BK z;^L{v$;uMPZ%T9~_dJ+krCb=)Lae474oOSO31ca4s+t+O old0$Mk~qF%-j4Po%UBo~Hk=TMX?wp@0caJ2r>mdKI;Vst0E7)*Q~&?~ literal 0 HcmV?d00001 diff --git a/graphics/items/icons/tanga_berry.png b/graphics/items/icons/tanga_berry.png new file mode 100755 index 0000000000000000000000000000000000000000..37f8e2465647f01a9a0419795c50ebef6ef45551 GIT binary patch literal 416 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuQyc$%3u_fkNUX zt`Q}{`DrEPiAAXl?mjL+V-(6#ixiCYObT0e#Kc;qZxd;<>`_ycn`>+>bM%1B zbfNyfKE80x37Lo9={fjySBrKiKYI7*(#405^7yXBzhPo}*Cx=%*&)pHjAJ_U(mB1| z+z0t0rsU=1?FJ=F96vQbB@(X5gcy=QV$eHQs;uumfr*(oYU$X&E>tyL8OYEy7b~PPk zoG^)5!NoXyQAyvGW7Yom9xT}+J@4M~=jk`alD0ei-C}aqK4IgMAf{JL?F+@7p4(+U zmrG#2ec33@B5=#~r}G~EnKdu3>IvgzF|5ZoxGvDF2XVX9?zXn!wbES zry6QHPn4Z&@{8e3hD(mdl&O=$1ooM)b3gP?f7>sHb3xLjmM<);L4NXd^>bP0l+XkK D?5Bs! literal 0 HcmV?d00001 diff --git a/graphics/items/icons/water_memory.png b/graphics/items/icons/water_memory.png new file mode 100755 index 0000000000000000000000000000000000000000..d7096f57cc1b3a5e23ca67229f934183d5a0bbc5 GIT binary patch literal 417 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOnmI7x{beQ0)@m& zTq8FS z$q5JeC0JQmALJ+sUw6^y4_tF&@nKWJLxMrfg@+CV^-OMT6nis;F;{qy9H*emKQQGT)plxQ{v}TO`snbJYD@<);T3K F0RS&2s*L~u literal 0 HcmV?d00001 diff --git a/graphics/items/icons/wave_incense.png b/graphics/items/icons/wave_incense.png new file mode 100755 index 0000000000000000000000000000000000000000..aec3fd05efd0cb8fd4a25429af26f80b1100e4f2 GIT binary patch literal 400 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuWVlKMjKJ0ENU$ zTq8GQRtyk#Mc_P8 zkTJ>I-R1vM_D@GaoRT2FU>wJ&)n?eo?Q)b`1md zB0d4tSNFnP)`&LeAK2-6DM*cN-@z*X^HrNBKjFW0HavajjkUXUTK=Vo+QwbccZ?VI zy(%NSaMmlia~Gf7V%!mP;B z=bW7vPI=fCE$!32V$G%wqmai=Hi@^{G{1i~zEF{{PdE3#WgYtiR&}4)YRnWWuQ=CD P2Kms_)z4*}Q$iB}Yb%Xq literal 0 HcmV?d00001 diff --git a/graphics/items/icons/weakness_policy.png b/graphics/items/icons/weakness_policy.png new file mode 100755 index 0000000000000000000000000000000000000000..d8f0b45531de71a01ce8ead3c4921103ed38dbda GIT binary patch literal 316 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuWY8j=kS61BJv( zTq8mMHS^BH+j1HxvX2#3ubV5b|VeQneXZ17*a7OIpF|950i(CqH9W@qL90U z=gb9NN^_29ELp-5uD(cW$r7f?LQF+d7Rb1%t11+<6dak;n3HPWF{Pq=uAVnk@_uI`PUx3?HE8Z5WDeAL)h_|Qq6^*-#6Oa$5ujrVTavuRI`(vcT0 zXTE%T`Lcprx3Bl?I5XZ;iD!IfPn$NA<8xy~+AM`b{7p?W9yT#CNS%G|m0G|-o28REJhKA3#_7n#>Elt+^|NsBiW7p12NxpXPd2w|MNH;1_ zk}YroiZCX5ySw~f%Kqsnh*J{e7tG-B>_!@p)8^^o7*a7OIYB|pfXjf3i_5{%smo1k zVW)uH;-H-s6SFfES{?`G#l4e~;+iN_sLx&~bWq0m^QTD{0y?Y~Z2FX>pzgzPrcmFU zwdlYs3E!9==ZAAr9*420>*|UgoH=cpAeV82qYm$p?uHx6GuhaL72h=$EOjnz literal 0 HcmV?d00001 diff --git a/graphics/items/icons/x_special_defense.png b/graphics/items/icons/x_special_defense.png new file mode 100755 index 0000000000000000000000000000000000000000..54a3e00fdfc4a7552ac0baeed26766786478932d GIT binary patch literal 410 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuR;BBLANS%G|m0G|-o28RC*ZEadwTJ>#hJB}T@ef#$Q+qYvjZ1C&tm5GU&a_kt$ z03?tmeA*w#WlZvRclp1R{nJqprzFTPn8D%MjWi%Bdc6y4A^f4@(NeQUQycIC8pw zZQAnmvb46EgJtB?N1{Rj=T<#!og`|^azLi@Q<3AsKF@$~E-o%Fr%*!!4K6Ofpq9$E eV9&_`D-3`E&82T6a9kl2NS%G|m0G|-o28RCz1_lZ@0xVWUXhaxDG^|iqaG>JG1BU}Q4t)3l(v1ov zs<^KJMHrL3-Ch1KW&d;(#3>2#3ubV5b|VeQS>);B7*a8(^}=c1Lk2u-57L_1Tpn`y z1Z?FFP+Jl5{G6hFWP?@gg0E~Bau<5GR5={l?q7GJY}#MWsp~gre&zaV`JZ*|cHh#@ zOKh>h^ZODf&A(B0eO1hc@5c5kw5J;#z5Hj(v1co@DjWp@EFRwL%yj1NKESD3!NAG> z?qE;Hq2BUm^B$QTVpkU8NjR&!Zl|%5OJ=5PUe8-a*4uUd!BOkuCp_Xkvsza-B)_p2 O>ai z6v#<%@Z0zQS0INm$=luK|5El(M?svDAirP+hi5m^fSh(u7srr_ImrnMVg_6WTwGiZ zmQG!6S_?Y`h2%Q~loCIIoLc@O{q literal 0 HcmV?d00001 diff --git a/graphics/items/icons/yellow_nectar.png b/graphics/items/icons/yellow_nectar.png new file mode 100755 index 0000000000000000000000000000000000000000..fff8ae6977c5533c2c9cce09d1d608990bf6a6f6 GIT binary patch literal 379 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xOOuR-i=UwEbfI{LW zt`Q}{`DrEPiAAXl?mjL+V-(6#ixiCYObT0^Zw4CnraR;VFl-wx*``A(ft(m?;Z`dRDo4c^z{M=qui^v2X?Fl*uVlQdum| zB`jyIn&D`XBM!@>b~bGpSjA@)6`U8Cdj~`^HcShU{>QApz9bs MUHx3vIVCg!08gle*Z=?k literal 0 HcmV?d00001 diff --git a/include/graphics.h b/include/graphics.h index 3966952f3..5da1aaebd 100644 --- a/include/graphics.h +++ b/include/graphics.h @@ -4171,7 +4171,215 @@ extern const u32 gItemIcon_PsychicSeed[]; extern const u32 gItemIconPalette_PsychicSeed[]; extern const u32 gItemIcon_AdrenalineOrb[]; extern const u32 gItemIconPalette_AdrenalineOrb[]; - +// Unordered +extern const u32 gItemIcon_SweetHeart[]; +extern const u32 gItemIconPalette_SweetHeart[]; +extern const u32 gItemIcon_BigMalasada[]; +extern const u32 gItemIconPalette_BigMalasada[]; +extern const u32 gItemIcon_OldGateau[]; +extern const u32 gItemIconPalette_OldGateau[]; +extern const u32 gItemIcon_XSpecialDefense[]; +extern const u32 gItemIconPalette_XSpecialDefense[]; +extern const u32 gItemIcon_AbilityCapsule[]; +extern const u32 gItemIconPalette_AbilityCapsule[]; +extern const u32 gItemIcon_DawnStone[]; +extern const u32 gItemIconPalette_DawnStone[]; +extern const u32 gItemIcon_DuskStone[]; +extern const u32 gItemIconPalette_DuskStone[]; +extern const u32 gItemIcon_ShinyStone[]; +extern const u32 gItemIconPalette_ShinyStone[]; +extern const u32 gItemIcon_IceStone[]; +extern const u32 gItemIconPalette_IceStone[]; +extern const u32 gItemIcon_RedApricorn[]; +extern const u32 gItemIconPalette_RedApricorn[]; +extern const u32 gItemIcon_BlueApricorn[]; +extern const u32 gItemIconPalette_BlueApricorn[]; +extern const u32 gItemIcon_YellowApricorn[]; +extern const u32 gItemIconPalette_YellowApricorn[]; +extern const u32 gItemIcon_GreenApricorn[]; +extern const u32 gItemIconPalette_GreenApricorn[]; +extern const u32 gItemIcon_PinkApricorn[]; +extern const u32 gItemIconPalette_PinkApricorn[]; +extern const u32 gItemIcon_WhiteApricorn[]; +extern const u32 gItemIconPalette_WhiteApricorn[]; +extern const u32 gItemIcon_BlackApricorn[]; +extern const u32 gItemIconPalette_BlackApricorn[]; +extern const u32 gItemIcon_RedNectar[]; +extern const u32 gItemIconPalette_RedNectar[]; +extern const u32 gItemIcon_YellowNectar[]; +extern const u32 gItemIconPalette_YellowNectar[]; +extern const u32 gItemIcon_PinkNectar[]; +extern const u32 gItemIconPalette_PinkNectar[]; +extern const u32 gItemIcon_PurpleNectar[]; +extern const u32 gItemIconPalette_PurpleNectar[]; +extern const u32 gItemIcon_RareBone[]; +extern const u32 gItemIconPalette_RareBone[]; +extern const u32 gItemIcon_OccaBerry[]; +extern const u32 gItemIconPalette_OccaBerry[]; +extern const u32 gItemIcon_PasshoBerry[]; +extern const u32 gItemIconPalette_PasshoBerry[]; +extern const u32 gItemIcon_WacanBerry[]; +extern const u32 gItemIconPalette_WacanBerry[]; +extern const u32 gItemIcon_RindoBerry[]; +extern const u32 gItemIconPalette_RindoBerry[]; +extern const u32 gItemIcon_YacheBerry[]; +extern const u32 gItemIconPalette_YacheBerry[]; +extern const u32 gItemIcon_ChopleBerry[]; +extern const u32 gItemIconPalette_ChopleBerry[]; +extern const u32 gItemIcon_KebiaBerry[]; +extern const u32 gItemIconPalette_KebiaBerry[]; +extern const u32 gItemIcon_ShucaBerry[]; +extern const u32 gItemIconPalette_ShucaBerry[]; +extern const u32 gItemIcon_CobaBerry[]; +extern const u32 gItemIconPalette_CobaBerry[]; +extern const u32 gItemIcon_PayapaBerry[]; +extern const u32 gItemIconPalette_PayapaBerry[]; +extern const u32 gItemIcon_TangaBerry[]; +extern const u32 gItemIconPalette_TangaBerry[]; +extern const u32 gItemIcon_ChartiBerry[]; +extern const u32 gItemIconPalette_ChartiBerry[]; +extern const u32 gItemIcon_KasibBerry[]; +extern const u32 gItemIconPalette_KasibBerry[]; +extern const u32 gItemIcon_HabanBerry[]; +extern const u32 gItemIconPalette_HabanBerry[]; +extern const u32 gItemIcon_ColburBerry[]; +extern const u32 gItemIconPalette_ColburBerry[]; +extern const u32 gItemIcon_BabiriBerry[]; +extern const u32 gItemIconPalette_BabiriBerry[]; +extern const u32 gItemIcon_ChilanBerry[]; +extern const u32 gItemIconPalette_ChilanBerry[]; +extern const u32 gItemIcon_MicleBerry[]; +extern const u32 gItemIconPalette_MicleBerry[]; +extern const u32 gItemIcon_CustapBerry[]; +extern const u32 gItemIconPalette_CustapBerry[]; +extern const u32 gItemIcon_JabocaBerry[]; +extern const u32 gItemIconPalette_JabocaBerry[]; +extern const u32 gItemIcon_RowapBerry[]; +extern const u32 gItemIconPalette_RowapBerry[]; +extern const u32 gItemIcon_RoseliBerry[]; +extern const u32 gItemIconPalette_RoseliBerry[]; +extern const u32 gItemIcon_KeeBerry[]; +extern const u32 gItemIconPalette_KeeBerry[]; +extern const u32 gItemIcon_MarangaBerry[]; +extern const u32 gItemIconPalette_MarangaBerry[]; +extern const u32 gItemIcon_OvalStone[]; +extern const u32 gItemIconPalette_OvalStone[]; +extern const u32 gItemIcon_Protector[]; +extern const u32 gItemIconPalette_Protector[]; +extern const u32 gItemIcon_Electirizer[]; +extern const u32 gItemIconPalette_Electirizer[]; +extern const u32 gItemIcon_Magmarizer[]; +extern const u32 gItemIconPalette_Magmarizer[]; +extern const u32 gItemIcon_DubiousDisc[]; +extern const u32 gItemIconPalette_DubiousDisc[]; +extern const u32 gItemIcon_ReaperCloth[]; +extern const u32 gItemIconPalette_ReaperCloth[]; +extern const u32 gItemIcon_RazorClaw[]; +extern const u32 gItemIconPalette_RazorClaw[]; +extern const u32 gItemIcon_RazorFang[]; +extern const u32 gItemIconPalette_RazorFang[]; +extern const u32 gItemIcon_PrismScale[]; +extern const u32 gItemIconPalette_PrismScale[]; +extern const u32 gItemIcon_WhippedDream[]; +extern const u32 gItemIconPalette_WhippedDream[]; +extern const u32 gItemIcon_Sachet[]; +extern const u32 gItemIconPalette_Sachet[]; +extern const u32 gItemIcon_PowerBracer[]; +extern const u32 gItemIconPalette_PowerBracer[]; +extern const u32 gItemIcon_PowerBelt[]; +extern const u32 gItemIconPalette_PowerBelt[]; +extern const u32 gItemIcon_PowerLens[]; +extern const u32 gItemIconPalette_PowerLens[]; +extern const u32 gItemIcon_PowerBand[]; +extern const u32 gItemIconPalette_PowerBand[]; +extern const u32 gItemIcon_PowerAnklet[]; +extern const u32 gItemIconPalette_PowerAnklet[]; +extern const u32 gItemIcon_PowerWeight[]; +extern const u32 gItemIconPalette_PowerWeight[]; +extern const u32 gItemIcon_RockyHelmet[]; +extern const u32 gItemIconPalette_RockyHelmet[]; +extern const u32 gItemIcon_AirBalloon[]; +extern const u32 gItemIconPalette_AirBalloon[]; +extern const u32 gItemIcon_RedCard[]; +extern const u32 gItemIconPalette_RedCard[]; +extern const u32 gItemIcon_RingTarget[]; +extern const u32 gItemIconPalette_RingTarget[]; +extern const u32 gItemIcon_EjectButton[]; +extern const u32 gItemIconPalette_EjectButton[]; +extern const u32 gItemIcon_AbsorbBulb[]; +extern const u32 gItemIconPalette_AbsorbBulb[]; +extern const u32 gItemIcon_CellBattery[]; +extern const u32 gItemIconPalette_CellBattery[]; +extern const u32 gItemIcon_LuminousMoss[]; +extern const u32 gItemIconPalette_LuminousMoss[]; +extern const u32 gItemIcon_Snowball[]; +extern const u32 gItemIconPalette_Snowball[]; +extern const u32 gItemIcon_WeaknessPolicy[]; +extern const u32 gItemIconPalette_WeaknessPolicy[]; +extern const u32 gItemIcon_OddIncense[]; +extern const u32 gItemIconPalette_OddIncense[]; +extern const u32 gItemIcon_RockIncense[]; +extern const u32 gItemIconPalette_RockIncense[]; +extern const u32 gItemIcon_FullIncense[]; +extern const u32 gItemIconPalette_FullIncense[]; +extern const u32 gItemIcon_WaveIncense[]; +extern const u32 gItemIconPalette_WaveIncense[]; +extern const u32 gItemIcon_RoseIncense[]; +extern const u32 gItemIconPalette_RoseIncense[]; +extern const u32 gItemIcon_LuckIncense[]; +extern const u32 gItemIconPalette_LuckIncense[]; +extern const u32 gItemIcon_PureIncense[]; +extern const u32 gItemIconPalette_PureIncense[]; +extern const u32 gItemIcon_OddKeystone[]; +extern const u32 gItemIconPalette_OddKeystone[]; +extern const u32 gItemIcon_Gracidea[]; +extern const u32 gItemIconPalette_Gracidea[]; +extern const u32 gItemIcon_BugMemory[]; +extern const u32 gItemIconPalette_BugMemory[]; +extern const u32 gItemIcon_DarkMemory[]; +extern const u32 gItemIconPalette_DarkMemory[]; +extern const u32 gItemIcon_DragonMemory[]; +extern const u32 gItemIconPalette_DragonMemory[]; +extern const u32 gItemIcon_ElectricMemory[]; +extern const u32 gItemIconPalette_ElectricMemory[]; +extern const u32 gItemIcon_FairyMemory[]; +extern const u32 gItemIconPalette_FairyMemory[]; +extern const u32 gItemIcon_FightingMemory[]; +extern const u32 gItemIconPalette_FightingMemory[]; +extern const u32 gItemIcon_FireMemory[]; +extern const u32 gItemIconPalette_FireMemory[]; +extern const u32 gItemIcon_FlyingMemory[]; +extern const u32 gItemIconPalette_FlyingMemory[]; +extern const u32 gItemIcon_GhostMemory[]; +extern const u32 gItemIconPalette_GhostMemory[]; +extern const u32 gItemIcon_GrassMemory[]; +extern const u32 gItemIconPalette_GrassMemory[]; +extern const u32 gItemIcon_GroundMemory[]; +extern const u32 gItemIconPalette_GroundMemory[]; +extern const u32 gItemIcon_IceMemory[]; +extern const u32 gItemIconPalette_IceMemory[]; +extern const u32 gItemIcon_PoisonMemory[]; +extern const u32 gItemIconPalette_PoisonMemory[]; +extern const u32 gItemIcon_PsychicMemory[]; +extern const u32 gItemIconPalette_PsychicMemory[]; +extern const u32 gItemIcon_RockMemory[]; +extern const u32 gItemIconPalette_RockMemory[]; +extern const u32 gItemIcon_SteelMemory[]; +extern const u32 gItemIconPalette_SteelMemory[]; +extern const u32 gItemIcon_WaterMemory[]; +extern const u32 gItemIconPalette_WaterMemory[]; +extern const u32 gItemIcon_ArmorFossil[]; +extern const u32 gItemIconPalette_ArmorFossil[]; +extern const u32 gItemIcon_SkullFossil[]; +extern const u32 gItemIconPalette_SkullFossil[]; +extern const u32 gItemIcon_CoverFossil[]; +extern const u32 gItemIconPalette_CoverFossil[]; +extern const u32 gItemIcon_PlumeFossil[]; +extern const u32 gItemIconPalette_PlumeFossil[]; +extern const u32 gItemIcon_JawFossil[]; +extern const u32 gItemIconPalette_JawFossil[]; +extern const u32 gItemIcon_SailFossil[]; +extern const u32 gItemIconPalette_SailFossil[]; extern const u32 gItemIcon_ReturnToFieldArrow[]; extern const u32 gItemIconPalette_ReturnToFieldArrow[]; diff --git a/src/data/graphics/items.h b/src/data/graphics/items.h index 4285fcf36..61c9a4e7d 100644 --- a/src/data/graphics/items.h +++ b/src/data/graphics/items.h @@ -1179,3 +1179,317 @@ const u32 gItemIconPalette_PsychicSeed[] = INCBIN_U32("graphics/items/icon_palet const u32 gItemIcon_AdrenalineOrb[] = INCBIN_U32("graphics/items/icons/adrenaline_orb.4bpp.lz"); const u32 gItemIconPalette_AdrenalineOrb[] = INCBIN_U32("graphics/items/icon_palettes/adrenaline_orb.gbapal.lz"); + +// Unordered + +const u32 gItemIcon_SweetHeart[] = INCBIN_U32("graphics/items/icons/sweet_heart.4bpp.lz"); +const u32 gItemIconPalette_SweetHeart[] = INCBIN_U32("graphics/items/icon_palettes/sweet_heart.gbapal.lz"); + +const u32 gItemIcon_BigMalasada[] = INCBIN_U32("graphics/items/icons/big_malasada.4bpp.lz"); +const u32 gItemIconPalette_BigMalasada[] = INCBIN_U32("graphics/items/icon_palettes/big_malasada.gbapal.lz"); + +const u32 gItemIcon_OldGateau[] = INCBIN_U32("graphics/items/icons/old_gateau.4bpp.lz"); +const u32 gItemIconPalette_OldGateau[] = INCBIN_U32("graphics/items/icon_palettes/old_gateau.gbapal.lz"); + +const u32 gItemIcon_XSpecialDefense[] = INCBIN_U32("graphics/items/icons/x_special_defense.4bpp.lz"); +const u32 gItemIconPalette_XSpecialDefense[] = INCBIN_U32("graphics/items/icon_palettes/x_special_defense.gbapal.lz"); + +const u32 gItemIcon_AbilityCapsule[] = INCBIN_U32("graphics/items/icons/ability_capsule.4bpp.lz"); +const u32 gItemIconPalette_AbilityCapsule[] = INCBIN_U32("graphics/items/icon_palettes/ability_capsule.gbapal.lz"); + +const u32 gItemIcon_DawnStone[] = INCBIN_U32("graphics/items/icons/dawn_stone.4bpp.lz"); +const u32 gItemIconPalette_DawnStone[] = INCBIN_U32("graphics/items/icon_palettes/dawn_stone.gbapal.lz"); + +const u32 gItemIcon_DuskStone[] = INCBIN_U32("graphics/items/icons/dusk_stone.4bpp.lz"); +const u32 gItemIconPalette_DuskStone[] = INCBIN_U32("graphics/items/icon_palettes/dusk_stone.gbapal.lz"); + +const u32 gItemIcon_ShinyStone[] = INCBIN_U32("graphics/items/icons/shiny_stone.4bpp.lz"); +const u32 gItemIconPalette_ShinyStone[] = INCBIN_U32("graphics/items/icon_palettes/shiny_stone.gbapal.lz"); + +const u32 gItemIcon_IceStone[] = INCBIN_U32("graphics/items/icons/ice_stone.4bpp.lz"); +const u32 gItemIconPalette_IceStone[] = INCBIN_U32("graphics/items/icon_palettes/ice_stone.gbapal.lz"); + +const u32 gItemIcon_RedApricorn[] = INCBIN_U32("graphics/items/icons/red_apricorn.4bpp.lz"); +const u32 gItemIconPalette_RedApricorn[] = INCBIN_U32("graphics/items/icon_palettes/red_apricorn.gbapal.lz"); + +const u32 gItemIcon_BlueApricorn[] = INCBIN_U32("graphics/items/icons/blue_apricorn.4bpp.lz"); +const u32 gItemIconPalette_BlueApricorn[] = INCBIN_U32("graphics/items/icon_palettes/blue_apricorn.gbapal.lz"); + +const u32 gItemIcon_YellowApricorn[] = INCBIN_U32("graphics/items/icons/yellow_apricorn.4bpp.lz"); +const u32 gItemIconPalette_YellowApricorn[] = INCBIN_U32("graphics/items/icon_palettes/yellow_apricorn.gbapal.lz"); + +const u32 gItemIcon_GreenApricorn[] = INCBIN_U32("graphics/items/icons/green_apricorn.4bpp.lz"); +const u32 gItemIconPalette_GreenApricorn[] = INCBIN_U32("graphics/items/icon_palettes/green_apricorn.gbapal.lz"); + +const u32 gItemIcon_PinkApricorn[] = INCBIN_U32("graphics/items/icons/pink_apricorn.4bpp.lz"); +const u32 gItemIconPalette_PinkApricorn[] = INCBIN_U32("graphics/items/icon_palettes/pink_apricorn.gbapal.lz"); + +const u32 gItemIcon_WhiteApricorn[] = INCBIN_U32("graphics/items/icons/white_apricorn.4bpp.lz"); +const u32 gItemIconPalette_WhiteApricorn[] = INCBIN_U32("graphics/items/icon_palettes/white_apricorn.gbapal.lz"); + +const u32 gItemIcon_BlackApricorn[] = INCBIN_U32("graphics/items/icons/black_apricorn.4bpp.lz"); +const u32 gItemIconPalette_BlackApricorn[] = INCBIN_U32("graphics/items/icon_palettes/black_apricorn.gbapal.lz"); + +const u32 gItemIcon_RedNectar[] = INCBIN_U32("graphics/items/icons/red_nectar.4bpp.lz"); +const u32 gItemIconPalette_RedNectar[] = INCBIN_U32("graphics/items/icon_palettes/red_nectar.gbapal.lz"); + +const u32 gItemIcon_YellowNectar[] = INCBIN_U32("graphics/items/icons/yellow_nectar.4bpp.lz"); +const u32 gItemIconPalette_YellowNectar[] = INCBIN_U32("graphics/items/icon_palettes/yellow_nectar.gbapal.lz"); + +const u32 gItemIcon_PinkNectar[] = INCBIN_U32("graphics/items/icons/pink_nectar.4bpp.lz"); +const u32 gItemIconPalette_PinkNectar[] = INCBIN_U32("graphics/items/icon_palettes/pink_nectar.gbapal.lz"); + +const u32 gItemIcon_PurpleNectar[] = INCBIN_U32("graphics/items/icons/purple_nectar.4bpp.lz"); +const u32 gItemIconPalette_PurpleNectar[] = INCBIN_U32("graphics/items/icon_palettes/purple_nectar.gbapal.lz"); + +const u32 gItemIcon_RareBone[] = INCBIN_U32("graphics/items/icons/rare_bone.4bpp.lz"); +const u32 gItemIconPalette_RareBone[] = INCBIN_U32("graphics/items/icon_palettes/rare_bone.gbapal.lz"); + +const u32 gItemIcon_OccaBerry[] = INCBIN_U32("graphics/items/icons/occa_berry.4bpp.lz"); +const u32 gItemIconPalette_OccaBerry[] = INCBIN_U32("graphics/items/icon_palettes/occa_berry.gbapal.lz"); + +const u32 gItemIcon_PasshoBerry[] = INCBIN_U32("graphics/items/icons/passho_berry.4bpp.lz"); +const u32 gItemIconPalette_PasshoBerry[] = INCBIN_U32("graphics/items/icon_palettes/passho_berry.gbapal.lz"); + +const u32 gItemIcon_WacanBerry[] = INCBIN_U32("graphics/items/icons/wacan_berry.4bpp.lz"); +const u32 gItemIconPalette_WacanBerry[] = INCBIN_U32("graphics/items/icon_palettes/wacan_berry.gbapal.lz"); + +const u32 gItemIcon_RindoBerry[] = INCBIN_U32("graphics/items/icons/rindo_berry.4bpp.lz"); +const u32 gItemIconPalette_RindoBerry[] = INCBIN_U32("graphics/items/icon_palettes/rindo_berry.gbapal.lz"); + +const u32 gItemIcon_YacheBerry[] = INCBIN_U32("graphics/items/icons/yache_berry.4bpp.lz"); +const u32 gItemIconPalette_YacheBerry[] = INCBIN_U32("graphics/items/icon_palettes/yache_berry.gbapal.lz"); + +const u32 gItemIcon_ChopleBerry[] = INCBIN_U32("graphics/items/icons/chople_berry.4bpp.lz"); +const u32 gItemIconPalette_ChopleBerry[] = INCBIN_U32("graphics/items/icon_palettes/chople_berry.gbapal.lz"); + +const u32 gItemIcon_KebiaBerry[] = INCBIN_U32("graphics/items/icons/kebia_berry.4bpp.lz"); +const u32 gItemIconPalette_KebiaBerry[] = INCBIN_U32("graphics/items/icon_palettes/kebia_berry.gbapal.lz"); + +const u32 gItemIcon_ShucaBerry[] = INCBIN_U32("graphics/items/icons/shuca_berry.4bpp.lz"); +const u32 gItemIconPalette_ShucaBerry[] = INCBIN_U32("graphics/items/icon_palettes/shuca_berry.gbapal.lz"); + +const u32 gItemIcon_CobaBerry[] = INCBIN_U32("graphics/items/icons/coba_berry.4bpp.lz"); +const u32 gItemIconPalette_CobaBerry[] = INCBIN_U32("graphics/items/icon_palettes/coba_berry.gbapal.lz"); + +const u32 gItemIcon_PayapaBerry[] = INCBIN_U32("graphics/items/icons/payapa_berry.4bpp.lz"); +const u32 gItemIconPalette_PayapaBerry[] = INCBIN_U32("graphics/items/icon_palettes/payapa_berry.gbapal.lz"); + +const u32 gItemIcon_TangaBerry[] = INCBIN_U32("graphics/items/icons/tanga_berry.4bpp.lz"); +const u32 gItemIconPalette_TangaBerry[] = INCBIN_U32("graphics/items/icon_palettes/tanga_berry.gbapal.lz"); + +const u32 gItemIcon_ChartiBerry[] = INCBIN_U32("graphics/items/icons/charti_berry.4bpp.lz"); +const u32 gItemIconPalette_ChartiBerry[] = INCBIN_U32("graphics/items/icon_palettes/charti_berry.gbapal.lz"); + +const u32 gItemIcon_KasibBerry[] = INCBIN_U32("graphics/items/icons/kasib_berry.4bpp.lz"); +const u32 gItemIconPalette_KasibBerry[] = INCBIN_U32("graphics/items/icon_palettes/kasib_berry.gbapal.lz"); + +const u32 gItemIcon_HabanBerry[] = INCBIN_U32("graphics/items/icons/haban_berry.4bpp.lz"); +const u32 gItemIconPalette_HabanBerry[] = INCBIN_U32("graphics/items/icon_palettes/haban_berry.gbapal.lz"); + +const u32 gItemIcon_ColburBerry[] = INCBIN_U32("graphics/items/icons/colbur_berry.4bpp.lz"); +const u32 gItemIconPalette_ColburBerry[] = INCBIN_U32("graphics/items/icon_palettes/colbur_berry.gbapal.lz"); + +const u32 gItemIcon_BabiriBerry[] = INCBIN_U32("graphics/items/icons/babiri_berry.4bpp.lz"); +const u32 gItemIconPalette_BabiriBerry[] = INCBIN_U32("graphics/items/icon_palettes/babiri_berry.gbapal.lz"); + +const u32 gItemIcon_ChilanBerry[] = INCBIN_U32("graphics/items/icons/chilan_berry.4bpp.lz"); +const u32 gItemIconPalette_ChilanBerry[] = INCBIN_U32("graphics/items/icon_palettes/chilan_berry.gbapal.lz"); + +const u32 gItemIcon_MicleBerry[] = INCBIN_U32("graphics/items/icons/micle_berry.4bpp.lz"); +const u32 gItemIconPalette_MicleBerry[] = INCBIN_U32("graphics/items/icon_palettes/micle_berry.gbapal.lz"); + +const u32 gItemIcon_CustapBerry[] = INCBIN_U32("graphics/items/icons/custap_berry.4bpp.lz"); +const u32 gItemIconPalette_CustapBerry[] = INCBIN_U32("graphics/items/icon_palettes/custap_berry.gbapal.lz"); + +const u32 gItemIcon_JabocaBerry[] = INCBIN_U32("graphics/items/icons/jaboca_berry.4bpp.lz"); +const u32 gItemIconPalette_JabocaBerry[] = INCBIN_U32("graphics/items/icon_palettes/jaboca_berry.gbapal.lz"); + +const u32 gItemIcon_RowapBerry[] = INCBIN_U32("graphics/items/icons/rowap_berry.4bpp.lz"); +const u32 gItemIconPalette_RowapBerry[] = INCBIN_U32("graphics/items/icon_palettes/rowap_berry.gbapal.lz"); + +const u32 gItemIcon_RoseliBerry[] = INCBIN_U32("graphics/items/icons/roseli_berry.4bpp.lz"); +const u32 gItemIconPalette_RoseliBerry[] = INCBIN_U32("graphics/items/icon_palettes/roseli_berry.gbapal.lz"); + +const u32 gItemIcon_KeeBerry[] = INCBIN_U32("graphics/items/icons/kee_berry.4bpp.lz"); +const u32 gItemIconPalette_KeeBerry[] = INCBIN_U32("graphics/items/icon_palettes/kee_berry.gbapal.lz"); + +const u32 gItemIcon_MarangaBerry[] = INCBIN_U32("graphics/items/icons/maranga_berry.4bpp.lz"); +const u32 gItemIconPalette_MarangaBerry[] = INCBIN_U32("graphics/items/icon_palettes/maranga_berry.gbapal.lz"); + +const u32 gItemIcon_OvalStone[] = INCBIN_U32("graphics/items/icons/oval_stone.4bpp.lz"); +const u32 gItemIconPalette_OvalStone[] = INCBIN_U32("graphics/items/icon_palettes/oval_stone.gbapal.lz"); + +const u32 gItemIcon_Protector[] = INCBIN_U32("graphics/items/icons/protector.4bpp.lz"); +const u32 gItemIconPalette_Protector[] = INCBIN_U32("graphics/items/icon_palettes/protector.gbapal.lz"); + +const u32 gItemIcon_Electirizer[] = INCBIN_U32("graphics/items/icons/electirizer.4bpp.lz"); +const u32 gItemIconPalette_Electirizer[] = INCBIN_U32("graphics/items/icon_palettes/electirizer.gbapal.lz"); + +const u32 gItemIcon_Magmarizer[] = INCBIN_U32("graphics/items/icons/magmarizer.4bpp.lz"); +const u32 gItemIconPalette_Magmarizer[] = INCBIN_U32("graphics/items/icon_palettes/magmarizer.gbapal.lz"); + +const u32 gItemIcon_DubiousDisc[] = INCBIN_U32("graphics/items/icons/dubious_disc.4bpp.lz"); +const u32 gItemIconPalette_DubiousDisc[] = INCBIN_U32("graphics/items/icon_palettes/dubious_disc.gbapal.lz"); + +const u32 gItemIcon_ReaperCloth[] = INCBIN_U32("graphics/items/icons/reaper_cloth.4bpp.lz"); +const u32 gItemIconPalette_ReaperCloth[] = INCBIN_U32("graphics/items/icon_palettes/reaper_cloth.gbapal.lz"); + +const u32 gItemIcon_RazorClaw[] = INCBIN_U32("graphics/items/icons/razor_claw.4bpp.lz"); +const u32 gItemIconPalette_RazorClaw[] = INCBIN_U32("graphics/items/icon_palettes/razor_claw.gbapal.lz"); + +const u32 gItemIcon_RazorFang[] = INCBIN_U32("graphics/items/icons/razor_fang.4bpp.lz"); +const u32 gItemIconPalette_RazorFang[] = INCBIN_U32("graphics/items/icon_palettes/razor_fang.gbapal.lz"); + +const u32 gItemIcon_PrismScale[] = INCBIN_U32("graphics/items/icons/prism_scale.4bpp.lz"); +const u32 gItemIconPalette_PrismScale[] = INCBIN_U32("graphics/items/icon_palettes/prism_scale.gbapal.lz"); + +const u32 gItemIcon_WhippedDream[] = INCBIN_U32("graphics/items/icons/whipped_dream.4bpp.lz"); +const u32 gItemIconPalette_WhippedDream[] = INCBIN_U32("graphics/items/icon_palettes/whipped_dream.gbapal.lz"); + +const u32 gItemIcon_Sachet[] = INCBIN_U32("graphics/items/icons/sachet.4bpp.lz"); +const u32 gItemIconPalette_Sachet[] = INCBIN_U32("graphics/items/icon_palettes/sachet.gbapal.lz"); + +const u32 gItemIcon_PowerBracer[] = INCBIN_U32("graphics/items/icons/power_bracer.4bpp.lz"); +const u32 gItemIconPalette_PowerBracer[] = INCBIN_U32("graphics/items/icon_palettes/power_bracer.gbapal.lz"); + +const u32 gItemIcon_PowerBelt[] = INCBIN_U32("graphics/items/icons/power_belt.4bpp.lz"); +const u32 gItemIconPalette_PowerBelt[] = INCBIN_U32("graphics/items/icon_palettes/power_belt.gbapal.lz"); + +const u32 gItemIcon_PowerLens[] = INCBIN_U32("graphics/items/icons/power_lens.4bpp.lz"); +const u32 gItemIconPalette_PowerLens[] = INCBIN_U32("graphics/items/icon_palettes/power_lens.gbapal.lz"); + +const u32 gItemIcon_PowerBand[] = INCBIN_U32("graphics/items/icons/power_band.4bpp.lz"); +const u32 gItemIconPalette_PowerBand[] = INCBIN_U32("graphics/items/icon_palettes/power_band.gbapal.lz"); + +const u32 gItemIcon_PowerAnklet[] = INCBIN_U32("graphics/items/icons/power_anklet.4bpp.lz"); +const u32 gItemIconPalette_PowerAnklet[] = INCBIN_U32("graphics/items/icon_palettes/power_anklet.gbapal.lz"); + +const u32 gItemIcon_PowerWeight[] = INCBIN_U32("graphics/items/icons/power_weight.4bpp.lz"); +const u32 gItemIconPalette_PowerWeight[] = INCBIN_U32("graphics/items/icon_palettes/power_weight.gbapal.lz"); + +const u32 gItemIcon_RockyHelmet[] = INCBIN_U32("graphics/items/icons/rocky_helmet.4bpp.lz"); +const u32 gItemIconPalette_RockyHelmet[] = INCBIN_U32("graphics/items/icon_palettes/rocky_helmet.gbapal.lz"); + +const u32 gItemIcon_AirBalloon[] = INCBIN_U32("graphics/items/icons/air_balloon.4bpp.lz"); +const u32 gItemIconPalette_AirBalloon[] = INCBIN_U32("graphics/items/icon_palettes/air_balloon.gbapal.lz"); + +const u32 gItemIcon_RedCard[] = INCBIN_U32("graphics/items/icons/red_card.4bpp.lz"); +const u32 gItemIconPalette_RedCard[] = INCBIN_U32("graphics/items/icon_palettes/red_card.gbapal.lz"); + +const u32 gItemIcon_RingTarget[] = INCBIN_U32("graphics/items/icons/ring_target.4bpp.lz"); +const u32 gItemIconPalette_RingTarget[] = INCBIN_U32("graphics/items/icon_palettes/ring_target.gbapal.lz"); + +const u32 gItemIcon_EjectButton[] = INCBIN_U32("graphics/items/icons/eject_button.4bpp.lz"); +const u32 gItemIconPalette_EjectButton[] = INCBIN_U32("graphics/items/icon_palettes/eject_button.gbapal.lz"); + +const u32 gItemIcon_AbsorbBulb[] = INCBIN_U32("graphics/items/icons/absorb_bulb.4bpp.lz"); +const u32 gItemIconPalette_AbsorbBulb[] = INCBIN_U32("graphics/items/icon_palettes/absorb_bulb.gbapal.lz"); + +const u32 gItemIcon_CellBattery[] = INCBIN_U32("graphics/items/icons/cell_battery.4bpp.lz"); +const u32 gItemIconPalette_CellBattery[] = INCBIN_U32("graphics/items/icon_palettes/cell_battery.gbapal.lz"); + +const u32 gItemIcon_LuminousMoss[] = INCBIN_U32("graphics/items/icons/luminous_moss.4bpp.lz"); +const u32 gItemIconPalette_LuminousMoss[] = INCBIN_U32("graphics/items/icon_palettes/luminous_moss.gbapal.lz"); + +const u32 gItemIcon_Snowball[] = INCBIN_U32("graphics/items/icons/snowball.4bpp.lz"); +const u32 gItemIconPalette_Snowball[] = INCBIN_U32("graphics/items/icon_palettes/snowball.gbapal.lz"); + +const u32 gItemIcon_WeaknessPolicy[] = INCBIN_U32("graphics/items/icons/weakness_policy.4bpp.lz"); +const u32 gItemIconPalette_WeaknessPolicy[] = INCBIN_U32("graphics/items/icon_palettes/weakness_policy.gbapal.lz"); + +const u32 gItemIcon_OddIncense[] = INCBIN_U32("graphics/items/icons/odd_incense.4bpp.lz"); +const u32 gItemIconPalette_OddIncense[] = INCBIN_U32("graphics/items/icon_palettes/odd_incense.gbapal.lz"); + +const u32 gItemIcon_RockIncense[] = INCBIN_U32("graphics/items/icons/rock_incense.4bpp.lz"); +const u32 gItemIconPalette_RockIncense[] = INCBIN_U32("graphics/items/icon_palettes/rock_incense.gbapal.lz"); + +const u32 gItemIcon_FullIncense[] = INCBIN_U32("graphics/items/icons/full_incense.4bpp.lz"); +const u32 gItemIconPalette_FullIncense[] = INCBIN_U32("graphics/items/icon_palettes/full_incense.gbapal.lz"); + +const u32 gItemIcon_WaveIncense[] = INCBIN_U32("graphics/items/icons/wave_incense.4bpp.lz"); +const u32 gItemIconPalette_WaveIncense[] = INCBIN_U32("graphics/items/icon_palettes/wave_incense.gbapal.lz"); + +const u32 gItemIcon_RoseIncense[] = INCBIN_U32("graphics/items/icons/rose_incense.4bpp.lz"); +const u32 gItemIconPalette_RoseIncense[] = INCBIN_U32("graphics/items/icon_palettes/rose_incense.gbapal.lz"); + +const u32 gItemIcon_LuckIncense[] = INCBIN_U32("graphics/items/icons/luck_incense.4bpp.lz"); +const u32 gItemIconPalette_LuckIncense[] = INCBIN_U32("graphics/items/icon_palettes/luck_incense.gbapal.lz"); + +const u32 gItemIcon_PureIncense[] = INCBIN_U32("graphics/items/icons/pure_incense.4bpp.lz"); +const u32 gItemIconPalette_PureIncense[] = INCBIN_U32("graphics/items/icon_palettes/pure_incense.gbapal.lz"); + +const u32 gItemIcon_OddKeystone[] = INCBIN_U32("graphics/items/icons/odd_keystone.4bpp.lz"); +const u32 gItemIconPalette_OddKeystone[] = INCBIN_U32("graphics/items/icon_palettes/odd_keystone.gbapal.lz"); + +const u32 gItemIcon_Gracidea[] = INCBIN_U32("graphics/items/icons/gracidea.4bpp.lz"); +const u32 gItemIconPalette_Gracidea[] = INCBIN_U32("graphics/items/icon_palettes/gracidea.gbapal.lz"); + +const u32 gItemIcon_BugMemory[] = INCBIN_U32("graphics/items/icons/bug_memory.4bpp.lz"); +const u32 gItemIconPalette_BugMemory[] = INCBIN_U32("graphics/items/icon_palettes/bug_memory.gbapal.lz"); + +const u32 gItemIcon_DarkMemory[] = INCBIN_U32("graphics/items/icons/dark_memory.4bpp.lz"); +const u32 gItemIconPalette_DarkMemory[] = INCBIN_U32("graphics/items/icon_palettes/dark_memory.gbapal.lz"); + +const u32 gItemIcon_DragonMemory[] = INCBIN_U32("graphics/items/icons/dragon_memory.4bpp.lz"); +const u32 gItemIconPalette_DragonMemory[] = INCBIN_U32("graphics/items/icon_palettes/dragon_memory.gbapal.lz"); + +const u32 gItemIcon_ElectricMemory[] = INCBIN_U32("graphics/items/icons/electric_memory.4bpp.lz"); +const u32 gItemIconPalette_ElectricMemory[] = INCBIN_U32("graphics/items/icon_palettes/electric_memory.gbapal.lz"); + +const u32 gItemIcon_FairyMemory[] = INCBIN_U32("graphics/items/icons/fairy_memory.4bpp.lz"); +const u32 gItemIconPalette_FairyMemory[] = INCBIN_U32("graphics/items/icon_palettes/fairy_memory.gbapal.lz"); + +const u32 gItemIcon_FightingMemory[] = INCBIN_U32("graphics/items/icons/fighting_memory.4bpp.lz"); +const u32 gItemIconPalette_FightingMemory[] = INCBIN_U32("graphics/items/icon_palettes/fighting_memory.gbapal.lz"); + +const u32 gItemIcon_FireMemory[] = INCBIN_U32("graphics/items/icons/fire_memory.4bpp.lz"); +const u32 gItemIconPalette_FireMemory[] = INCBIN_U32("graphics/items/icon_palettes/fire_memory.gbapal.lz"); + +const u32 gItemIcon_FlyingMemory[] = INCBIN_U32("graphics/items/icons/flying_memory.4bpp.lz"); +const u32 gItemIconPalette_FlyingMemory[] = INCBIN_U32("graphics/items/icon_palettes/flying_memory.gbapal.lz"); + +const u32 gItemIcon_GhostMemory[] = INCBIN_U32("graphics/items/icons/ghost_memory.4bpp.lz"); +const u32 gItemIconPalette_GhostMemory[] = INCBIN_U32("graphics/items/icon_palettes/ghost_memory.gbapal.lz"); + +const u32 gItemIcon_GrassMemory[] = INCBIN_U32("graphics/items/icons/grass_memory.4bpp.lz"); +const u32 gItemIconPalette_GrassMemory[] = INCBIN_U32("graphics/items/icon_palettes/grass_memory.gbapal.lz"); + +const u32 gItemIcon_GroundMemory[] = INCBIN_U32("graphics/items/icons/ground_memory.4bpp.lz"); +const u32 gItemIconPalette_GroundMemory[] = INCBIN_U32("graphics/items/icon_palettes/ground_memory.gbapal.lz"); + +const u32 gItemIcon_IceMemory[] = INCBIN_U32("graphics/items/icons/ice_memory.4bpp.lz"); +const u32 gItemIconPalette_IceMemory[] = INCBIN_U32("graphics/items/icon_palettes/ice_memory.gbapal.lz"); + +const u32 gItemIcon_PoisonMemory[] = INCBIN_U32("graphics/items/icons/poison_memory.4bpp.lz"); +const u32 gItemIconPalette_PoisonMemory[] = INCBIN_U32("graphics/items/icon_palettes/poison_memory.gbapal.lz"); + +const u32 gItemIcon_PsychicMemory[] = INCBIN_U32("graphics/items/icons/psychic_memory.4bpp.lz"); +const u32 gItemIconPalette_PsychicMemory[] = INCBIN_U32("graphics/items/icon_palettes/psychic_memory.gbapal.lz"); + +const u32 gItemIcon_RockMemory[] = INCBIN_U32("graphics/items/icons/rock_memory.4bpp.lz"); +const u32 gItemIconPalette_RockMemory[] = INCBIN_U32("graphics/items/icon_palettes/rock_memory.gbapal.lz"); + +const u32 gItemIcon_SteelMemory[] = INCBIN_U32("graphics/items/icons/steel_memory.4bpp.lz"); +const u32 gItemIconPalette_SteelMemory[] = INCBIN_U32("graphics/items/icon_palettes/steel_memory.gbapal.lz"); + +const u32 gItemIcon_WaterMemory[] = INCBIN_U32("graphics/items/icons/water_memory.4bpp.lz"); +const u32 gItemIconPalette_WaterMemory[] = INCBIN_U32("graphics/items/icon_palettes/water_memory.gbapal.lz"); + +const u32 gItemIcon_ArmorFossil[] = INCBIN_U32("graphics/items/icons/armor_fossil.4bpp.lz"); +const u32 gItemIconPalette_ArmorFossil[] = INCBIN_U32("graphics/items/icon_palettes/armor_fossil.gbapal.lz"); + +const u32 gItemIcon_SkullFossil[] = INCBIN_U32("graphics/items/icons/skull_fossil.4bpp.lz"); +const u32 gItemIconPalette_SkullFossil[] = INCBIN_U32("graphics/items/icon_palettes/skull_fossil.gbapal.lz"); + +const u32 gItemIcon_CoverFossil[] = INCBIN_U32("graphics/items/icons/cover_fossil.4bpp.lz"); +const u32 gItemIconPalette_CoverFossil[] = INCBIN_U32("graphics/items/icon_palettes/cover_fossil.gbapal.lz"); + +const u32 gItemIcon_PlumeFossil[] = INCBIN_U32("graphics/items/icons/plume_fossil.4bpp.lz"); +const u32 gItemIconPalette_PlumeFossil[] = INCBIN_U32("graphics/items/icon_palettes/plume_fossil.gbapal.lz"); + +const u32 gItemIcon_JawFossil[] = INCBIN_U32("graphics/items/icons/jaw_fossil.4bpp.lz"); +const u32 gItemIconPalette_JawFossil[] = INCBIN_U32("graphics/items/icon_palettes/jaw_fossil.gbapal.lz"); + +const u32 gItemIcon_SailFossil[] = INCBIN_U32("graphics/items/icons/sail_fossil.4bpp.lz"); +const u32 gItemIconPalette_SailFossil[] = INCBIN_U32("graphics/items/icon_palettes/sail_fossil.gbapal.lz"); diff --git a/src/data/item_icon_table.h b/src/data/item_icon_table.h index 18e94518e..7e7b44b16 100644 --- a/src/data/item_icon_table.h +++ b/src/data/item_icon_table.h @@ -477,4 +477,109 @@ const u32 *const gItemIconTable[][2] = [ITEM_MISTY_SEED] = {gItemIcon_MistySeed, gItemIconPalette_MistySeed}, [ITEM_PSYCHIC_SEED] = {gItemIcon_PsychicSeed, gItemIconPalette_PsychicSeed}, [ITEM_ADRENALINE_ORB] = {gItemIcon_AdrenalineOrb, gItemIconPalette_AdrenalineOrb}, + // Unordered + [ITEM_SWEET_HEART] = {gItemIcon_SweetHeart, gItemIconPalette_SweetHeart}, + [ITEM_BIG_MALASADA] = {gItemIcon_BigMalasada, gItemIconPalette_BigMalasada}, + [ITEM_OLD_GATEAU] = {gItemIcon_OldGateau, gItemIconPalette_OldGateau}, + [ITEM_X_SP_DEF] = {gItemIcon_XSpecialDefense, gItemIconPalette_XSpecialDefense}, + [ITEM_ABILITY_CAPSULE] = {gItemIcon_AbilityCapsule, gItemIconPalette_AbilityCapsule}, + [ITEM_DAWN_STONE] = {gItemIcon_DawnStone, gItemIconPalette_DawnStone}, + [ITEM_DUSK_STONE] = {gItemIcon_DuskStone, gItemIconPalette_DuskStone}, + [ITEM_SHINY_STONE] = {gItemIcon_ShinyStone, gItemIconPalette_ShinyStone}, + [ITEM_ICE_STONE] = {gItemIcon_IceStone, gItemIconPalette_IceStone}, + [ITEM_RED_APRICORN] = {gItemIcon_RedApricorn, gItemIconPalette_RedApricorn}, + [ITEM_BLUE_APRICORN] = {gItemIcon_BlueApricorn, gItemIconPalette_BlueApricorn}, + [ITEM_YELLOW_APRICORN] = {gItemIcon_YellowApricorn, gItemIconPalette_YellowApricorn}, + [ITEM_GREEN_APRICORN] = {gItemIcon_GreenApricorn, gItemIconPalette_GreenApricorn}, + [ITEM_PINK_APRICORN] = {gItemIcon_PinkApricorn, gItemIconPalette_PinkApricorn}, + [ITEM_WHITE_APRICORN] = {gItemIcon_WhiteApricorn, gItemIconPalette_WhiteApricorn}, + [ITEM_BLACK_APRICORN] = {gItemIcon_BlackApricorn, gItemIconPalette_BlackApricorn}, + [ITEM_RED_NECTAR] = {gItemIcon_RedNectar, gItemIconPalette_RedNectar}, + [ITEM_YELLOW_NECTAR] = {gItemIcon_YellowNectar, gItemIconPalette_YellowNectar}, + [ITEM_PINK_NECTAR] = {gItemIcon_PinkNectar, gItemIconPalette_PinkNectar}, + [ITEM_PURPLE_NECTAR] = {gItemIcon_PurpleNectar, gItemIconPalette_PurpleNectar}, + [ITEM_RARE_BONE] = {gItemIcon_RareBone, gItemIconPalette_RareBone}, + [ITEM_OCCA_BERRY] = {gItemIcon_OccaBerry, gItemIconPalette_OccaBerry}, + [ITEM_PASSHO_BERRY] = {gItemIcon_PasshoBerry, gItemIconPalette_PasshoBerry}, + [ITEM_WACAN_BERRY] = {gItemIcon_WacanBerry, gItemIconPalette_WacanBerry}, + [ITEM_RINDO_BERRY] = {gItemIcon_RindoBerry, gItemIconPalette_RindoBerry}, + [ITEM_YACHE_BERRY] = {gItemIcon_YacheBerry, gItemIconPalette_YacheBerry}, + [ITEM_CHOPLE_BERRY] = {gItemIcon_ChopleBerry, gItemIconPalette_ChopleBerry}, + [ITEM_KEBIA_BERRY] = {gItemIcon_KebiaBerry, gItemIconPalette_KebiaBerry}, + [ITEM_SHUCA_BERRY] = {gItemIcon_ShucaBerry, gItemIconPalette_ShucaBerry}, + [ITEM_COBA_BERRY] = {gItemIcon_CobaBerry, gItemIconPalette_CobaBerry}, + [ITEM_PAYAPA_BERRY] = {gItemIcon_PayapaBerry, gItemIconPalette_PayapaBerry}, + [ITEM_TANGA_BERRY] = {gItemIcon_TangaBerry, gItemIconPalette_TangaBerry}, + [ITEM_CHARTI_BERRY] = {gItemIcon_ChartiBerry, gItemIconPalette_ChartiBerry}, + [ITEM_KASIB_BERRY] = {gItemIcon_KasibBerry, gItemIconPalette_KasibBerry}, + [ITEM_HABAN_BERRY] = {gItemIcon_HabanBerry, gItemIconPalette_HabanBerry}, + [ITEM_COLBUR_BERRY] = {gItemIcon_ColburBerry, gItemIconPalette_ColburBerry}, + [ITEM_BABIRI_BERRY] = {gItemIcon_BabiriBerry, gItemIconPalette_BabiriBerry}, + [ITEM_CHILAN_BERRY] = {gItemIcon_ChilanBerry, gItemIconPalette_ChilanBerry}, + [ITEM_MICLE_BERRY] = {gItemIcon_MicleBerry, gItemIconPalette_MicleBerry}, + [ITEM_CUSTAP_BERRY] = {gItemIcon_CustapBerry, gItemIconPalette_CustapBerry}, + [ITEM_JABOCA_BERRY] = {gItemIcon_JabocaBerry, gItemIconPalette_JabocaBerry}, + [ITEM_ROWAP_BERRY] = {gItemIcon_RowapBerry, gItemIconPalette_RowapBerry}, + [ITEM_ROSELI_BERRY] = {gItemIcon_RoseliBerry, gItemIconPalette_RoseliBerry}, + [ITEM_KEE_BERRY] = {gItemIcon_KeeBerry, gItemIconPalette_KeeBerry}, + [ITEM_MARANGA_BERRY] = {gItemIcon_MarangaBerry, gItemIconPalette_MarangaBerry}, + [ITEM_OVAL_STONE] = {gItemIcon_OvalStone, gItemIconPalette_OvalStone}, + [ITEM_PROTECTOR] = {gItemIcon_Protector, gItemIconPalette_Protector}, + [ITEM_ELECTIRIZER] = {gItemIcon_Electirizer, gItemIconPalette_Electirizer}, + [ITEM_MAGMARIZER] = {gItemIcon_Magmarizer, gItemIconPalette_Magmarizer}, + [ITEM_DUBIOUS_DISC] = {gItemIcon_DubiousDisc, gItemIconPalette_DubiousDisc}, + [ITEM_REAPER_CLOTH] = {gItemIcon_ReaperCloth, gItemIconPalette_ReaperCloth}, + [ITEM_RAZOR_CLAW] = {gItemIcon_RazorClaw, gItemIconPalette_RazorClaw}, + [ITEM_RAZOR_FANG] = {gItemIcon_RazorFang, gItemIconPalette_RazorFang}, + [ITEM_PRISM_SCALE] = {gItemIcon_PrismScale, gItemIconPalette_PrismScale}, + [ITEM_WHIPPED_DREAM] = {gItemIcon_WhippedDream, gItemIconPalette_WhippedDream}, + [ITEM_SACHET] = {gItemIcon_Sachet, gItemIconPalette_Sachet}, + [ITEM_POWER_BRACER] = {gItemIcon_PowerBracer, gItemIconPalette_PowerBracer}, + [ITEM_POWER_BELT] = {gItemIcon_PowerBelt, gItemIconPalette_PowerBelt}, + [ITEM_POWER_LENS] = {gItemIcon_PowerLens, gItemIconPalette_PowerLens}, + [ITEM_POWER_BAND] = {gItemIcon_PowerBand, gItemIconPalette_PowerBand}, + [ITEM_POWER_ANKLET] = {gItemIcon_PowerAnklet, gItemIconPalette_PowerAnklet}, + [ITEM_POWER_WEIGHT] = {gItemIcon_PowerWeight, gItemIconPalette_PowerWeight}, + [ITEM_ROCKY_HELMET] = {gItemIcon_RockyHelmet, gItemIconPalette_RockyHelmet}, + [ITEM_AIR_BALLOON] = {gItemIcon_AirBalloon, gItemIconPalette_AirBalloon}, + [ITEM_RED_CARD] = {gItemIcon_RedCard, gItemIconPalette_RedCard}, + [ITEM_RING_TARGET] = {gItemIcon_RingTarget, gItemIconPalette_RingTarget}, + [ITEM_EJECT_BUTTON] = {gItemIcon_EjectButton, gItemIconPalette_EjectButton}, + [ITEM_ABSORB_BULB] = {gItemIcon_AbsorbBulb, gItemIconPalette_AbsorbBulb}, + [ITEM_CELL_BATTERY] = {gItemIcon_CellBattery, gItemIconPalette_CellBattery}, + [ITEM_LUMINOUS_MOSS] = {gItemIcon_LuminousMoss, gItemIconPalette_LuminousMoss}, + [ITEM_SNOWBALL] = {gItemIcon_Snowball, gItemIconPalette_Snowball}, + [ITEM_WEAKNESS_POLICY] = {gItemIcon_WeaknessPolicy, gItemIconPalette_WeaknessPolicy}, + [ITEM_ODD_INCENSE] = {gItemIcon_OddIncense, gItemIconPalette_OddIncense}, + [ITEM_ROCK_INCENSE] = {gItemIcon_RockIncense, gItemIconPalette_RockIncense}, + [ITEM_FULL_INCENSE] = {gItemIcon_FullIncense, gItemIconPalette_FullIncense}, + [ITEM_WAVE_INCENSE] = {gItemIcon_WaveIncense, gItemIconPalette_WaveIncense}, + [ITEM_ROSE_INCENSE] = {gItemIcon_RoseIncense, gItemIconPalette_RoseIncense}, + [ITEM_LUCK_INCENSE] = {gItemIcon_LuckIncense, gItemIconPalette_LuckIncense}, + [ITEM_PURE_INCENSE] = {gItemIcon_PureIncense, gItemIconPalette_PureIncense}, + [ITEM_ODD_KEYSTONE] = {gItemIcon_OddKeystone, gItemIconPalette_OddKeystone}, + [ITEM_GRACIDEA] = {gItemIcon_Gracidea, gItemIconPalette_Gracidea}, + [ITEM_BUG_MEMORY] = {gItemIcon_BugMemory, gItemIconPalette_BugMemory}, + [ITEM_DARK_MEMORY] = {gItemIcon_DarkMemory, gItemIconPalette_DarkMemory}, + [ITEM_DRAGON_MEMORY] = {gItemIcon_DragonMemory, gItemIconPalette_DragonMemory}, + [ITEM_ELECTRIC_MEMORY] = {gItemIcon_ElectricMemory, gItemIconPalette_ElectricMemory}, + [ITEM_FAIRY_MEMORY] = {gItemIcon_FairyMemory, gItemIconPalette_FairyMemory}, + [ITEM_FIGHTING_MEMORY] = {gItemIcon_FightingMemory, gItemIconPalette_FightingMemory}, + [ITEM_FIRE_MEMORY] = {gItemIcon_FireMemory, gItemIconPalette_FireMemory}, + [ITEM_FLYING_MEMORY] = {gItemIcon_FlyingMemory, gItemIconPalette_FlyingMemory}, + [ITEM_GHOST_MEMORY] = {gItemIcon_GhostMemory, gItemIconPalette_GhostMemory}, + [ITEM_GRASS_MEMORY] = {gItemIcon_GrassMemory, gItemIconPalette_GrassMemory}, + [ITEM_GROUND_MEMORY] = {gItemIcon_GroundMemory, gItemIconPalette_GroundMemory}, + [ITEM_ICE_MEMORY] = {gItemIcon_IceMemory, gItemIconPalette_IceMemory}, + [ITEM_POISON_MEMORY] = {gItemIcon_PoisonMemory, gItemIconPalette_PoisonMemory}, + [ITEM_PSYCHIC_MEMORY] = {gItemIcon_PsychicMemory, gItemIconPalette_PsychicMemory}, + [ITEM_ROCK_MEMORY] = {gItemIcon_RockMemory, gItemIconPalette_RockMemory}, + [ITEM_STEEL_MEMORY] = {gItemIcon_SteelMemory, gItemIconPalette_SteelMemory}, + [ITEM_WATER_MEMORY] = {gItemIcon_WaterMemory, gItemIconPalette_WaterMemory}, + [ITEM_ARMOR_FOSSIL] = {gItemIcon_ArmorFossil, gItemIconPalette_ArmorFossil}, + [ITEM_SKULL_FOSSIL] = {gItemIcon_SkullFossil, gItemIconPalette_SkullFossil}, + [ITEM_COVER_FOSSIL] = {gItemIcon_CoverFossil, gItemIconPalette_CoverFossil}, + [ITEM_PLUME_FOSSIL] = {gItemIcon_PlumeFossil, gItemIconPalette_PlumeFossil}, + [ITEM_JAW_FOSSIL] = {gItemIcon_JawFossil, gItemIconPalette_JawFossil}, + [ITEM_SAIL_FOSSIL] = {gItemIcon_SailFossil, gItemIconPalette_SailFossil}, }; From 4e3516e2d801e0beeacf9dd3d558e9c9b135dc98 Mon Sep 17 00:00:00 2001 From: LOuroboros Date: Thu, 2 May 2019 15:12:00 -0300 Subject: [PATCH 15/18] Removed the copy of the Safety Goggle's sprite that I somehow left in by accident. --- graphics/items/icon_palettes/safety_goggles.png | Bin 386 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 graphics/items/icon_palettes/safety_goggles.png diff --git a/graphics/items/icon_palettes/safety_goggles.png b/graphics/items/icon_palettes/safety_goggles.png deleted file mode 100644 index 7a1efab67adffd72893d7ab8383ab500014ac898..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 386 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaN3?zjj6;1;w_7YEDSN6xu?EJb+&fI^cfkNUX zt`Q}{`DrEPiAAXl?mjL+V-(6#ixiCYObT0=j-CMiXDcR}&wQFMZL`gH zTyQQ}$I+*H{O!E5BC8#H8k}CONhoK1x%tPGW3T3J{^$L#-{D8nnfs1MvR?I_5NC3E zF1WV7boW!a(n;%bd_*EvuH)IFdD5~VH7j3X+3DDo@{XHKdS){z9j|#2CTx?}eemVh zNTt@-eb%j(iQ1L&6|pP{nnhV`|HC#5oxFHlL}%rl4Bq?fb!UYg?Ui`$+~0f> KKbLh*2~7ZYQHg>8 From 713e6606666e1eda78d1559cbd697272b36802d3 Mon Sep 17 00:00:00 2001 From: LOuroboros Date: Thu, 2 May 2019 15:19:30 -0300 Subject: [PATCH 16/18] Updated the price tags of the X Items to their USUM standard. --- src/data/items.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/data/items.h b/src/data/items.h index 6de0fc741..a6e502612 100644 --- a/src/data/items.h +++ b/src/data/items.h @@ -1072,7 +1072,7 @@ const struct Item gItems[] = { .name = _("X Attack"), .itemId = ITEM_X_ATTACK, - .price = 500, + .price = 1000, .description = sXAttackDesc, .pocket = POCKET_ITEMS, .type = 4, @@ -1086,7 +1086,7 @@ const struct Item gItems[] = { .name = _("X Defend"), .itemId = ITEM_X_DEFENSE, - .price = 550, + .price = 2000, .description = sXDefendDesc, .pocket = POCKET_ITEMS, .type = 4, @@ -1100,7 +1100,7 @@ const struct Item gItems[] = { .name = _("X Speed"), .itemId = ITEM_X_SPEED, - .price = 350, + .price = 1000, .description = sXSpeedDesc, .pocket = POCKET_ITEMS, .type = 4, @@ -1114,7 +1114,7 @@ const struct Item gItems[] = { .name = _("X Accuracy"), .itemId = ITEM_X_ACCURACY, - .price = 950, + .price = 1000, .description = sXAccuracyDesc, .pocket = POCKET_ITEMS, .type = 4, @@ -1128,7 +1128,7 @@ const struct Item gItems[] = { .name = _("X Sp. Atk."), .itemId = ITEM_X_SP_ATK, - .price = 350, + .price = 1000, .description = sXSpecialAttackDesc, .pocket = POCKET_ITEMS, .type = 4, From fbdcbfd33d786ec49949109cc0e8cfc40ccb4858 Mon Sep 17 00:00:00 2001 From: LOuroboros Date: Thu, 2 May 2019 15:39:47 -0300 Subject: [PATCH 17/18] Fixed Silvally's Memory items' hold effects. --- include/constants/hold_effects.h | 18 +-------- src/data/items.h | 68 ++++++++++++++++---------------- 2 files changed, 35 insertions(+), 51 deletions(-) diff --git a/include/constants/hold_effects.h b/include/constants/hold_effects.h index 759931cd1..f96e7df4d 100644 --- a/include/constants/hold_effects.h +++ b/include/constants/hold_effects.h @@ -137,23 +137,7 @@ #define HOLD_EFFECT_TERRAIN_EXTENDER 150 #define HOLD_EFFECT_SEEDS 151 #define HOLD_EFFECT_ADRENALINE_ORB 152 -#define HOLD_EFFECT_BUG_MEMORY 153 -#define HOLD_EFFECT_DARK_MEMORY 154 -#define HOLD_EFFECT_DRAGON_MEMORY 155 -#define HOLD_EFFECT_ELECTRIC_MEMORY 156 -#define HOLD_EFFECT_FAIRY_MEMORY 157 -#define HOLD_EFFECT_FIGHTING_MEMORY 158 -#define HOLD_EFFECT_FIRE_MEMORY 159 -#define HOLD_EFFECT_FLYING_MEMORY 160 -#define HOLD_EFFECT_GHOST_MEMORY 161 -#define HOLD_EFFECT_GRASS_MEMORY 162 -#define HOLD_EFFECT_GROUND_MEMORY 163 -#define HOLD_EFFECT_ICE_MEMORY 164 -#define HOLD_EFFECT_POISON_MEMORY 165 -#define HOLD_EFFECT_PSYCHIC_MEMORY 166 -#define HOLD_EFFECT_ROCK_MEMORY 167 -#define HOLD_EFFECT_STEEL_MEMORY 168 -#define HOLD_EFFECT_WATER_MEMORY 169 +#define HOLD_EFFECT_MEMORY 153 #define HOLD_EFFECT_CHOICE(holdEffect)((holdEffect == HOLD_EFFECT_CHOICE_BAND || holdEffect == HOLD_EFFECT_CHOICE_SCARF || holdEffect == HOLD_EFFECT_CHOICE_SPECS)) diff --git a/src/data/items.h b/src/data/items.h index a6e502612..1722b329f 100644 --- a/src/data/items.h +++ b/src/data/items.h @@ -5570,13 +5570,13 @@ const struct Item gItems[] = .name = _("Bug Memory"), .itemId = ITEM_BUG_MEMORY, .price = 1000, - .holdEffect = HOLD_EFFECT_BUG_MEMORY, + .holdEffect = HOLD_EFFECT_MEMORY, .holdEffectParam = 0, .description = sBugMemoryDesc, .pocket = POCKET_ITEMS, .type = 4, .fieldUseFunc = ItemUseOutOfBattle_CannotUse, - .secondaryId = 0, + .secondaryId = TYPE_BUG, }, [ITEM_DARK_MEMORY] = @@ -5584,13 +5584,13 @@ const struct Item gItems[] = .name = _("Dark Memory"), .itemId = ITEM_DARK_MEMORY, .price = 1000, - .holdEffect = HOLD_EFFECT_DARK_MEMORY, + .holdEffect = HOLD_EFFECT_MEMORY, .holdEffectParam = 0, .description = sDarkMemoryDesc, .pocket = POCKET_ITEMS, .type = 4, .fieldUseFunc = ItemUseOutOfBattle_CannotUse, - .secondaryId = 0, + .secondaryId = TYPE_DARK, }, [ITEM_DRAGON_MEMORY] = @@ -5598,13 +5598,13 @@ const struct Item gItems[] = .name = _("Dragon Memory"), .itemId = ITEM_DRAGON_MEMORY, .price = 1000, - .holdEffect = HOLD_EFFECT_DRAGON_MEMORY, + .holdEffect = HOLD_EFFECT_MEMORY, .holdEffectParam = 0, .description = sDragonMemoryDesc, .pocket = POCKET_ITEMS, .type = 4, .fieldUseFunc = ItemUseOutOfBattle_CannotUse, - .secondaryId = 0, + .secondaryId = TYPE_DRAGON, }, [ITEM_ELECTRIC_MEMORY] = @@ -5612,13 +5612,13 @@ const struct Item gItems[] = .name = _("Elec. Memory"), .itemId = ITEM_ELECTRIC_MEMORY, .price = 1000, - .holdEffect = HOLD_EFFECT_ELECTRIC_MEMORY, + .holdEffect = HOLD_EFFECT_MEMORY, .holdEffectParam = 0, .description = sElectricMemoryDesc, .pocket = POCKET_ITEMS, .type = 4, .fieldUseFunc = ItemUseOutOfBattle_CannotUse, - .secondaryId = 0, + .secondaryId = TYPE_ELECTRIC, }, [ITEM_FAIRY_MEMORY] = @@ -5626,13 +5626,13 @@ const struct Item gItems[] = .name = _("Fairy Memory"), .itemId = ITEM_FAIRY_MEMORY, .price = 1000, - .holdEffect = HOLD_EFFECT_FAIRY_MEMORY, + .holdEffect = HOLD_EFFECT_MEMORY, .holdEffectParam = 0, .description = sFairyMemoryDesc, .pocket = POCKET_ITEMS, .type = 4, .fieldUseFunc = ItemUseOutOfBattle_CannotUse, - .secondaryId = 0, + .secondaryId = TYPE_FAIRY, }, [ITEM_FIGHTING_MEMORY] = @@ -5640,13 +5640,13 @@ const struct Item gItems[] = .name = _("Fight Memory"), .itemId = ITEM_FIGHTING_MEMORY, .price = 1000, - .holdEffect = HOLD_EFFECT_FIGHTING_MEMORY, + .holdEffect = HOLD_EFFECT_MEMORY, .holdEffectParam = 0, .description = sFightingMemoryDesc, .pocket = POCKET_ITEMS, .type = 4, .fieldUseFunc = ItemUseOutOfBattle_CannotUse, - .secondaryId = 0, + .secondaryId = TYPE_FIGHTING, }, [ITEM_FIRE_MEMORY] = @@ -5654,13 +5654,13 @@ const struct Item gItems[] = .name = _("Fire Memory"), .itemId = ITEM_FIRE_MEMORY, .price = 1000, - .holdEffect = HOLD_EFFECT_FIRE_MEMORY, + .holdEffect = HOLD_EFFECT_MEMORY, .holdEffectParam = 0, .description = sFireMemoryDesc, .pocket = POCKET_ITEMS, .type = 4, .fieldUseFunc = ItemUseOutOfBattle_CannotUse, - .secondaryId = 0, + .secondaryId = TYPE_FIRE, }, [ITEM_FLYING_MEMORY] = @@ -5668,13 +5668,13 @@ const struct Item gItems[] = .name = _("Flying Memory"), .itemId = ITEM_FLYING_MEMORY, .price = 1000, - .holdEffect = HOLD_EFFECT_FLYING_MEMORY, + .holdEffect = HOLD_EFFECT_MEMORY, .holdEffectParam = 0, .description = sFlyingMemoryDesc, .pocket = POCKET_ITEMS, .type = 4, .fieldUseFunc = ItemUseOutOfBattle_CannotUse, - .secondaryId = 0, + .secondaryId = TYPE_FLYING, }, [ITEM_GHOST_MEMORY] = @@ -5682,13 +5682,13 @@ const struct Item gItems[] = .name = _("Ghost Memory"), .itemId = ITEM_GHOST_MEMORY, .price = 1000, - .holdEffect = HOLD_EFFECT_GHOST_MEMORY, + .holdEffect = HOLD_EFFECT_MEMORY, .holdEffectParam = 0, .description = sGhostMemoryDesc, .pocket = POCKET_ITEMS, .type = 4, .fieldUseFunc = ItemUseOutOfBattle_CannotUse, - .secondaryId = 0, + .secondaryId = TYPE_GHOST, }, [ITEM_GRASS_MEMORY] = @@ -5696,13 +5696,13 @@ const struct Item gItems[] = .name = _("Grass Memory"), .itemId = ITEM_GRASS_MEMORY, .price = 1000, - .holdEffect = HOLD_EFFECT_GRASS_MEMORY, + .holdEffect = HOLD_EFFECT_MEMORY, .holdEffectParam = 0, .description = sGrassMemoryDesc, .pocket = POCKET_ITEMS, .type = 4, .fieldUseFunc = ItemUseOutOfBattle_CannotUse, - .secondaryId = 0, + .secondaryId = TYPE_GRASS, }, [ITEM_GROUND_MEMORY] = @@ -5710,13 +5710,13 @@ const struct Item gItems[] = .name = _("Ground Memory"), .itemId = ITEM_GROUND_MEMORY, .price = 1000, - .holdEffect = HOLD_EFFECT_GROUND_MEMORY, + .holdEffect = HOLD_EFFECT_MEMORY, .holdEffectParam = 0, .description = sGroundMemoryDesc, .pocket = POCKET_ITEMS, .type = 4, .fieldUseFunc = ItemUseOutOfBattle_CannotUse, - .secondaryId = 0, + .secondaryId = TYPE_GROUND, }, [ITEM_ICE_MEMORY] = @@ -5724,13 +5724,13 @@ const struct Item gItems[] = .name = _("Ice Memory"), .itemId = ITEM_ICE_MEMORY, .price = 1000, - .holdEffect = HOLD_EFFECT_ICE_MEMORY, + .holdEffect = HOLD_EFFECT_MEMORY, .holdEffectParam = 0, .description = sIceMemoryDesc, .pocket = POCKET_ITEMS, .type = 4, .fieldUseFunc = ItemUseOutOfBattle_CannotUse, - .secondaryId = 0, + .secondaryId = TYPE_ICE, }, [ITEM_POISON_MEMORY] = @@ -5738,13 +5738,13 @@ const struct Item gItems[] = .name = _("Poison Memory"), .itemId = ITEM_POISON_MEMORY, .price = 1000, - .holdEffect = HOLD_EFFECT_POISON_MEMORY, + .holdEffect = HOLD_EFFECT_MEMORY, .holdEffectParam = 0, .description = sPoisonMemoryDesc, .pocket = POCKET_ITEMS, .type = 4, .fieldUseFunc = ItemUseOutOfBattle_CannotUse, - .secondaryId = 0, + .secondaryId = TYPE_POISON, }, [ITEM_PSYCHIC_MEMORY] = @@ -5752,13 +5752,13 @@ const struct Item gItems[] = .name = _("PsychicMemory"), .itemId = ITEM_PSYCHIC_MEMORY, .price = 1000, - .holdEffect = HOLD_EFFECT_PSYCHIC_MEMORY, + .holdEffect = HOLD_EFFECT_MEMORY, .holdEffectParam = 0, .description = sPsychicMemoryDesc, .pocket = POCKET_ITEMS, .type = 4, .fieldUseFunc = ItemUseOutOfBattle_CannotUse, - .secondaryId = 0, + .secondaryId = TYPE_PSYCHIC, }, [ITEM_ROCK_MEMORY] = @@ -5766,13 +5766,13 @@ const struct Item gItems[] = .name = _("Rock Memory"), .itemId = ITEM_ROCK_MEMORY, .price = 1000, - .holdEffect = HOLD_EFFECT_ROCK_MEMORY, + .holdEffect = HOLD_EFFECT_MEMORY, .holdEffectParam = 0, .description = sRockMemoryDesc, .pocket = POCKET_ITEMS, .type = 4, .fieldUseFunc = ItemUseOutOfBattle_CannotUse, - .secondaryId = 0, + .secondaryId = TYPE_ROCK, }, [ITEM_STEEL_MEMORY] = @@ -5780,13 +5780,13 @@ const struct Item gItems[] = .name = _("Steel Memory"), .itemId = ITEM_STEEL_MEMORY, .price = 1000, - .holdEffect = HOLD_EFFECT_STEEL_MEMORY, + .holdEffect = HOLD_EFFECT_MEMORY, .holdEffectParam = 0, .description = sSteelMemoryDesc, .pocket = POCKET_ITEMS, .type = 4, .fieldUseFunc = ItemUseOutOfBattle_CannotUse, - .secondaryId = 0, + .secondaryId = TYPE_STEEL, }, [ITEM_WATER_MEMORY] = @@ -5794,13 +5794,13 @@ const struct Item gItems[] = .name = _("Water Memory"), .itemId = ITEM_WATER_MEMORY, .price = 1000, - .holdEffect = HOLD_EFFECT_WATER_MEMORY, + .holdEffect = HOLD_EFFECT_MEMORY, .holdEffectParam = 0, .description = sWaterMemoryDesc, .pocket = POCKET_ITEMS, .type = 4, .fieldUseFunc = ItemUseOutOfBattle_CannotUse, - .secondaryId = 0, + .secondaryId = TYPE_WATER, }, [ITEM_FLAME_PLATE] = From eaafcd539d43b343ad8f58900c6cd25e7549e5e4 Mon Sep 17 00:00:00 2001 From: LOuroboros Date: Thu, 2 May 2019 15:47:43 -0300 Subject: [PATCH 18/18] Fixed the Power Items' hold effects. --- include/constants/hold_effects.h | 7 +------ src/data/items.h | 24 ++++++++++++------------ 2 files changed, 13 insertions(+), 18 deletions(-) diff --git a/include/constants/hold_effects.h b/include/constants/hold_effects.h index f96e7df4d..9d4089101 100644 --- a/include/constants/hold_effects.h +++ b/include/constants/hold_effects.h @@ -102,12 +102,7 @@ #define HOLD_EFFECT_GRISEOUS_ORB 96 #define HOLD_EFFECT_GRACIDEA 97 #define HOLD_EFFECT_RESIST_BERRY 98 -#define HOLD_EFFECT_POWER_BRACER 99 -#define HOLD_EFFECT_POWER_BELT 100 -#define HOLD_EFFECT_POWER_LENS 101 -#define HOLD_EFFECT_POWER_BAND 102 -#define HOLD_EFFECT_POWER_ANKLET 103 -#define HOLD_EFFECT_POWER_WEIGHT 104 +#define HOLD_EFFECT_EV_BOOST 99 // Gen5 hold effects #define HOLD_EFFECT_FLOAT_STONE 115 diff --git a/src/data/items.h b/src/data/items.h index 1722b329f..3bd128811 100644 --- a/src/data/items.h +++ b/src/data/items.h @@ -3288,12 +3288,12 @@ const struct Item gItems[] = .name = _("Power Bracer"), .itemId = ITEM_POWER_BRACER, .price = 3000, - .holdEffect = HOLD_EFFECT_POWER_BRACER, + .holdEffect = HOLD_EFFECT_EV_BOOST, .description = sPowerBracerDesc, .pocket = POCKET_ITEMS, .type = 4, .fieldUseFunc = ItemUseOutOfBattle_CannotUse, - .secondaryId = 0, + .secondaryId = STAT_ATK, }, [ITEM_POWER_BELT] = @@ -3301,12 +3301,12 @@ const struct Item gItems[] = .name = _("Power Belt"), .itemId = ITEM_POWER_BELT, .price = 3000, - .holdEffect = HOLD_EFFECT_POWER_BELT, + .holdEffect = HOLD_EFFECT_EV_BOOST, .description = sPowerBeltDesc, .pocket = POCKET_ITEMS, .type = 4, .fieldUseFunc = ItemUseOutOfBattle_CannotUse, - .secondaryId = 0, + .secondaryId = STAT_DEF, }, [ITEM_POWER_LENS] = @@ -3314,12 +3314,12 @@ const struct Item gItems[] = .name = _("Power Lens"), .itemId = ITEM_POWER_LENS, .price = 3000, - .holdEffect = HOLD_EFFECT_POWER_LENS, + .holdEffect = HOLD_EFFECT_EV_BOOST, .description = sPowerLensDesc, .pocket = POCKET_ITEMS, .type = 4, .fieldUseFunc = ItemUseOutOfBattle_CannotUse, - .secondaryId = 0, + .secondaryId = STAT_SPATK, }, [ITEM_POWER_BAND] = @@ -3327,12 +3327,12 @@ const struct Item gItems[] = .name = _("Power Band"), .itemId = ITEM_POWER_BAND, .price = 3000, - .holdEffect = HOLD_EFFECT_POWER_BAND, + .holdEffect = HOLD_EFFECT_EV_BOOST, .description = sPowerBandDesc, .pocket = POCKET_ITEMS, .type = 4, .fieldUseFunc = ItemUseOutOfBattle_CannotUse, - .secondaryId = 0, + .secondaryId = STAT_SPDEF, }, [ITEM_POWER_ANKLET] = @@ -3340,12 +3340,12 @@ const struct Item gItems[] = .name = _("Power Anklet"), .itemId = ITEM_POWER_ANKLET, .price = 3000, - .holdEffect = HOLD_EFFECT_POWER_ANKLET, + .holdEffect = HOLD_EFFECT_EV_BOOST, .description = sPowerAnkletDesc, .pocket = POCKET_ITEMS, .type = 4, .fieldUseFunc = ItemUseOutOfBattle_CannotUse, - .secondaryId = 0, + .secondaryId = STAT_SPEED, }, [ITEM_POWER_WEIGHT] = @@ -3353,12 +3353,12 @@ const struct Item gItems[] = .name = _("Power Weight"), .itemId = ITEM_POWER_WEIGHT, .price = 3000, - .holdEffect = HOLD_EFFECT_POWER_WEIGHT, + .holdEffect = HOLD_EFFECT_EV_BOOST, .description = sPowerWeightDesc, .pocket = POCKET_ITEMS, .type = 4, .fieldUseFunc = ItemUseOutOfBattle_CannotUse, - .secondaryId = 0, + .secondaryId = STAT_HP, }, [ITEM_SEA_INCENSE] =