ItemDex/RB:091: Difference between revisions

From Glitch City Wiki
Jump to navigation Jump to search
Content added Content deleted
m (Update info)
(Claify item effect)
 
Line 13: Line 13:
[[File:6F glitch item name.png|link=]] (hex:5B) is a [[glitch item]] in {{RB}}. Its name is taken from lists of lift destinations.
[[File:6F glitch item name.png|link=]] (hex:5B) is a [[glitch item]] in {{RB}}. Its name is taken from lists of lift destinations.


Using [[File:6F glitch item name.png|link=]] causes nothing to happen both from within battle and outside of battle. However, using it will cause a turn to pass in battle. This item begins executing code just before the return command of the ReverseNybble subroutine, meaning it does absolutely nothing.
Using [[File:6F glitch item name.png|link=]] causes nothing to happen outside of battle, and using it in battle will only cause a turn to pass.
This is because the effect pointer points to the end of the ReverseNybble function, where it runs the following code that essentially does nothing:

283D 01 14 1A: ld bc, $1A14
2840 C9 : ret


{{clr}}
{{clr}}

Latest revision as of 17:10, 25 December 2022

(↑ Back to the ItemDex index.)

Name (transcribed): 6F

Identifier (HEX): 5B
Identifier (DEC): 091
Effect pointer: 00:283d (ROM 0)
Unterminated name glitch item?: No
Tossable/Sellable?: Yes
Buy Price: 0
Sell Price: 0
Name bytes: $fc, $85, $50

(hex:5B) is a glitch item in Pokémon Red and Blue. Its name is taken from lists of lift destinations.

Using causes nothing to happen outside of battle, and using it in battle will only cause a turn to pass. This is because the effect pointer points to the end of the ReverseNybble function, where it runs the following code that essentially does nothing:

283D 01 14 1A: ld bc, $1A14
2840 C9      : ret