pokered/engine/overworld/saffron_guards.asm

17 lines
273 B
NASM
Raw Normal View History

2014-05-22 22:13:20 +00:00
RemoveGuardDrink: ; 5a59f (16:659f)
ld hl, GuardDrinksList
.drinkLoop
ld a, [hli]
ld [$ffdb], a
and a
ret z
push hl
ld b, a
call IsItemInBag
pop hl
jr z, .drinkLoop
2015-07-19 18:56:13 +00:00
jpba RemoveItemByID
2014-05-22 22:13:20 +00:00
GuardDrinksList: ; 5a5b7 (16:65b7)
db FRESH_WATER, SODA_POP, LEMONADE, $00