pokered/engine/overworld/saffron_guards.asm

17 lines
237 B
NASM
Raw Normal View History

2016-06-12 00:24:04 +00:00
RemoveGuardDrink:
2014-05-22 22:13:20 +00:00
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
2016-06-12 00:24:04 +00:00
GuardDrinksList:
2014-05-22 22:13:20 +00:00
db FRESH_WATER, SODA_POP, LEMONADE, $00