Files
alttpr-baserom/halfmagicbat.asm
2020-06-08 09:19:18 -07:00

17 lines
606 B
NASM

;================================================================================
; Randomize Half Magic Bat
;--------------------------------------------------------------------------------
GetMagicBatItem:
JSL.l ItemSet_MagicBat
%GetPossiblyEncryptedItem(MagicBatItem, SpriteItemValues)
CMP.b #$FF : BEQ .normalLogic
TAY
PHA : LDA MagicBatItem_Player : STA !MULTIWORLD_ITEM_PLAYER_ID : PLA
STZ $02E9 ; 0 = Receiving item from an NPC or message
JSL.l Link_ReceiveItem
RTL
.normalLogic
LDA HalfMagic
STA $7EF37B
RTL
;--------------------------------------------------------------------------------