Remove Honey functionality
This commit is contained in:
parent
7bc3cdf527
commit
e8dd8f93d1
4 changed files with 1 additions and 12 deletions
|
@ -3628,7 +3628,6 @@ AI_HPAware_DiscouragedEffectsWhenTargetLowHP: @ 82DE2B1
|
|||
.byte EFFECT_LIGHT_SCREEN
|
||||
.byte EFFECT_OHKO
|
||||
.byte EFFECT_SUPER_FANG
|
||||
.byte EFFECT_SUPER_FANG //Why is this here twice?
|
||||
.byte EFFECT_MIST
|
||||
.byte EFFECT_FOCUS_ENERGY
|
||||
.byte EFFECT_CONFUSE
|
||||
|
|
|
@ -51,6 +51,5 @@ void ItemUseInBattle_EnigmaBerry(u8);
|
|||
void ItemUseOutOfBattle_CannotUse(u8);
|
||||
u8 CheckIfItemIsTMHMOrEvolutionStone(u16 itemId);
|
||||
void sub_80FDD10(u8);
|
||||
void ItemUseOutOfBattle_Honey(u8);
|
||||
|
||||
#endif // GUARD_ITEM_USE_H
|
||||
|
|
|
@ -9148,7 +9148,7 @@ const struct Item gItems[] =
|
|||
.unk19 = 0,
|
||||
.pocket = POCKET_ITEMS,
|
||||
.type = 4,
|
||||
.fieldUseFunc = ItemUseOutOfBattle_Honey,
|
||||
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
|
||||
.battleUsage = 0,
|
||||
.battleUseFunc = NULL,
|
||||
.secondaryId = 0,
|
||||
|
|
|
@ -1120,12 +1120,3 @@ void ItemUseOutOfBattle_CannotUse(u8 taskId)
|
|||
DisplayDadsAdviceCannotUseItemMessage(taskId, gTasks[taskId].data[3]);
|
||||
}
|
||||
|
||||
void ItemUseOutOfBattle_Honey(u8 taskId)
|
||||
{
|
||||
//As a placeholder, just acts like White Flute
|
||||
FlagSet(FLAG_SYS_ENC_UP_ITEM);
|
||||
FlagClear(FLAG_SYS_ENC_DOWN_ITEM);
|
||||
StringExpandPlaceholders(gStringVar4, gText_UsedVar2WildLured);
|
||||
gTasks[taskId].data[8] = 0;
|
||||
gTasks[taskId].func = sub_80FE1D0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue