shithub: pokered

ref: f4cc5663b2e3e044a8c961d32e0622df331d87bc
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