Lower puffstool enemy health

This commit is contained in:
scawful
2024-11-21 14:51:14 -05:00
parent db8e9dc774
commit 48b7228ff2

View File

@@ -56,7 +56,7 @@ Sprite_Puffstool_Prep:
RTL RTL
.health .health
db $08, $0A, $1A, $20 db $04, $08, $1A, $20
} }
; ========================================================= ; =========================================================
@@ -154,25 +154,13 @@ Puffstool_SpawnSpores:
LDX.b $0D LDX.b $0D
LDA.w .speed_x,X LDA.w .speed_x, X : STA.w SprXSpeed, Y
STA.w SprXSpeed,Y LDA.w .speed_y, X : STA.w SprYSpeed, Y
LDA.b #$20 : STA.w $0F80, Y
LDA.w .speed_y,X LDA.b #$FF : STA.w $0E80, Y
STA.w SprYSpeed, Y
LDA.b #$20
STA.w $0F80, Y
LDA.b #$FF
STA.w $0E80, Y
LDA.b #$40 : STA.w SprTimerC, Y LDA.b #$40 : STA.w SprTimerC, Y
LDA.b #$01 : STA.w SprSubtype, Y
LDA.b #$01 LDA.b #$02 : STA.w SprAction, Y
STA.w SprSubtype, Y
LDA.b #$02
STA.w SprAction, Y
PLX PLX
@@ -181,10 +169,10 @@ Puffstool_SpawnSpores:
BPL .nth_child BPL .nth_child
RTS RTS
.speed_x .speed_x
db 11, -11, -11, 11 db 11, -11, -11, 11
.speed_y .speed_y
db 0, 11, 0, -11 db 0, 11, 0, -11
} }