ref: c85587d973df6565f2863493acb9f9af88518662
dir: /event/squirtbottle.asm/
_Squirtbottle: ; 50730 ld hl, .SquirtbottleScript call QueueScript ld a, $1 ld [wItemEffectSucceeded], a ret .SquirtbottleScript: reloadmappart special UpdateTimePals callasm .CheckCanUseSquirtbottle iffalse .NothingHappenedScript farjump WateredWeirdTreeScript .NothingHappenedScript: jumptext .NothingHappenedText .NothingHappenedText: ; sprinkled water. But nothing happened… text_jump UnknownText_0x1c0b3b db "@" .CheckCanUseSquirtbottle: ld a, [MapGroup] cp GROUP_ROUTE_36 jr nz, .nope ld a, [MapNumber] cp MAP_ROUTE_36 jr nz, .nope callba GetFacingObject jr c, .nope ld a, d cp SPRITEMOVEDATA_SUDOWOODO jr nz, .nope ld a, 1 ld [ScriptVar], a ret .nope xor a ld [ScriptVar], a ret ; 50779