shithub: pokered

ref: 42cfe3d36192aca4d0c4ca222be0088c03236e0d
dir: /engine/overworld/saffron_guards.asm/

View raw version
RemoveGuardDrink:
	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
	jpba RemoveItemByID

GuardDrinksList:
	db FRESH_WATER, SODA_POP, LEMONADE, $00