Make goldstar do big damage instead of stun

This commit is contained in:
scawful
2024-05-17 22:50:50 -04:00
parent 1869ea99c3
commit da8e238a50

View File

@@ -1025,6 +1025,16 @@ MaybeUploadBirdGraphicsToOam:
JML $008B50 JML $008B50
} }
ApplyGoldstarDamageClass:
{
; If the goldstar is active swap in the damage class
LDA GoldstarOrHookshot : CMP #$02 : BNE .return
LDA #$03
.return
JSL $06ED25 ; .apply
RTL
}
pushpc pushpc
; ========================================================= ; =========================================================
@@ -1033,6 +1043,9 @@ pushpc
org $07AB25 org $07AB25
JSL CheckForSwitchToGoldstar JSL CheckForSwitchToGoldstar
org $06ECF2
JSL ApplyGoldstarDamageClass
org $07AB3A ;$07AB40 org $07AB3A ;$07AB40
JSL BeginGoldstarOrHookshot JSL BeginGoldstarOrHookshot
RTS RTS