7 Commits

Author SHA1 Message Date
scawful
d12e9ee5a6 Add todo for reusing xaserle reveal secrets effect using room tag 2024-04-11 18:28:44 -04:00
scawful
8f94711e9a Restore vanilla book of mudora behavior
Add todo for special object interaction
2024-04-11 18:28:20 -04:00
scawful
8639b8525b Remove LinkItem_PortalRod override from Book of Secrets 2024-04-11 18:26:48 -04:00
scawful
33cec3b1d2 Add SecretObject to object_handler
To be used with Book of Secrets to allow for special objects which react to the item
2024-03-30 23:14:19 -04:00
scawful
34334bc30c Prevent Link from taking spike floor damage while jumping 2024-03-30 16:47:46 -04:00
scawful
1cde67578a Rename NewBookCode to LinkItem_JumpFeather and format
Additionally, changes the jump state to use the ledge hop mode rather than the recoil animation
2024-03-30 16:47:18 -04:00
scawful
6480fdbb9e Reformat JumpFeather hook in LinkItem_BugCatchingNet 2024-03-30 16:46:30 -04:00
5 changed files with 297 additions and 196 deletions

View File

@@ -1,30 +1,52 @@
; =========================================================
; Dungeon Object Handler
org $018262 ;object id 0x31
dw ExpandedObject
org $018262
dw ExpandedObject ; Object ID 0x31
dw SecretObject ; Object ID 0x32
; #_018650: dw RoomDraw_WeirdUglyPot ID 230
org $018650
dw HeavyPot
; Item ID 22B
; Heavy Pot grahics
; Currently modified to look like normal pot
org $00A9AC
dw $0D28, $0D38, $4D28, $4D38
; org $01B306 ; RoomDraw_WeirdGloveRequiredPot
; LDA.w #$1010
; Bank01 Free Space
org $01B53C
ExpandedObject:
JSL NewObjectsCode
RTS
{
JSL NewObjectsCode
RTS
}
SecretObject:
{
JSL HandleSecretObjects
RTS
}
HeavyPot:
LDA.w #$1010
PHX : LDX.w $042C
LDA.w #$1111 : STA $0500, X
; Store this object's position in the object buffer to $0520, X
LDA $BA : STA $0520, X
; Store it's tilemap position.
TYA : STA $0540, X
JMP $B350
{
LDA.w #$1010
PHX : LDX.w $042C
LDA.w #$1111 : STA $0500, X
; Store object's position in the object buffer to $0520, X
LDA $BA : STA $0520, X
; Store tilemap position.
TYA : STA $0540, X
JMP $B350
}
warnpc $01B560
; =========================================================
org $2C8000
NewObjectsCode:
{
@@ -132,32 +154,34 @@ NewObjectsCode:
incbin Data/small_statue.bin
}
; May need to make this a table
; This modifies object 0xOE to use the spritesheets for the object
CustomDrawConfig:
{
PHA
LDA $03 : AND #$00FF : CMP.w #$000E : BEQ .custom_config
PHA
LDA $03 : AND #$00FF : CMP.w #$000E : BEQ .custom_config
TYA : LSR : AND #$00FF
CMP #$000E : BNE .no_spriteset
LDA #$000E : STA $03
.custom_config
PLA
ORA.w #$0300 : JMP .return
.no_spriteset
PLA
.return
RTS
}
TYA : LSR : AND #$00FF
; =========================================================
; Secret Object Handler
; Disappears if Link uses the Book of Secrets near them
CMP #$000E : BNE .no_spriteset
LDA #$000E : STA $03
.custom_config
PLA
ORA.w #$0300 : JMP .return
.no_spriteset
PLA
.return
RTS
HandleSecretObjects:
{
; TODO: Implement the Book of Secrets check
; TODO: Add object draw code
; TODO: Implement the object's disappearance
RTL
}
pushpc
; Item ID 22B
org $00A9AC
dw $0D28, $0D38, $4D28, $4D38
; org $01B306 ; RoomDraw_WeirdGloveRequiredPot
; LDA.w #$1010

View File

@@ -1,22 +1,62 @@
; =========================================================
; Book of Secrets (Reveal Secrets with Book of Mudora)
; Interacts with SpecialObject ID 0x32
; Makes objects disappear when using the book
org $07A45E
EXIT_07A45E:
org $07AA6C
Link_PerformDesertPrayer:
; Restored vanilla book of mudora code
; TODO: Update to work with special object
org $07A471
LinkItem_Book:
{
BIT.b $3A : BVS .exit
LDA.b $6C : BNE EXIT_07A45E
JSR Link_CheckNewY_ButtonPress : BCC .exit
LDA.b $3A : AND.b #$BF : STA.b $3A
LDA.w $02ED : BNE .do_prayer
LDA.b #$3C : JSR PlaySFX_Set2 ; SFX2.3C
BRA .exit
.do_prayer
BRL Link_PerformDesertPrayer
.exit
RTS
}
warnpc $07A494
; =========================================================
; Makes BG2 Disappear when holding L in a building
; Based on the Parallel Worlds feature
;
; Layer Flags: xxxsabcd (i count BG from 1 to 4 - MathOnNapkins RAM-Map counts from 0 to 3)
; Layer Flags: xxxsabcd
; (i count BG from 1 to 4
; - MathOnNapkins RAM-Map counts from 0 to 3)
; s - Sprite layer enabled
; a - BG4 enabled
; b - BG3 enabled
; c - BG2 enabled
; d - (BG1 disabled) --> only works properly if the room uses the feature "BG2 on Top"
; d - (BG1 disabled) --> only works properly if the room
; uses the feature "BG2 on Top"
;
; Originally by XaserLE, updated by scawful
; Note: No longer used as part of Book of Secrets globally
; Likely will be reused for specific events where we can
; ensure the BG2 will have something secret to show,
; rather than allowing the ability to be used anywhere.
; =========================================================
; long subroutine that is executed every frame
org $068365
JSL LinkItem_SecretsBook ; overwrite it (originally JSL $099F91)
JSL LinkItem_SecretsBook ; hook JSL $099F91
; =========================================================
@@ -28,8 +68,7 @@ LinkItem_SecretsBook:
LDA $1B : AND #$01 : BEQ .end
; ----------
; Check if we have the book of secrets
LDA $7EF34D : CMP #$01 : BNE $0F ; if not, go to enable BG2
; TODO: Add a new condition, such as a RoomTag check
; load unfiltered joypad 1 register (AXLR|????)
; delete all bits except those for L
@@ -46,7 +85,7 @@ LinkItem_SecretsBook:
; ----------
.end
JSL $099F91 ; at least execute original code
JSL $099F91 ; restore original code
RTL
}

View File

@@ -1,66 +1,95 @@
; =============================================================================
; =========================================================
; Zarby Feather
org $07AFF8 ; LinkItem_BugCatchingNet
{
BIT $3A : BVS .return ;if Y or B are already pressed
LDA $6C : BNE .return ; if we are standing in a dooray or not
; Link_CheckNewY_ButtonPress
JSR $B073 : BCC .return ; Check if we just pressed Y Button
JSL NewBookCode
.return
RTS
BIT $3A : BVS .return ;if Y or B are already pressed
LDA $6C : BNE .return ; if we are standing in a dooray or not
; Link_CheckNewY_ButtonPress
JSR $B073 : BCC .return ; Check if we just pressed Y Button
JSL LinkItem_JumpFeather
.return
RTS
}
; =============================================================================
; =========================================================
; Prevent Link from taking damage while jumping spikes
; The game originally differentiates between your armor
; for the damage take, however the table has all the same
; values, so it's effectively useless.
; TileDetect_MainHandler_no_moon_pearl
; org $07D23D
org $07D242
JSL CheckIfJumpingForSpikeDamage
NOP #2
warnpc $07D248
; =========================================================
org $2B8000
NewBookCode:
LinkItem_JumpFeather:
{
JSL $07983A ; Reset swim state
LDA $46 : BNE .cantuseit
LDA #$02 : STA $5D ; state recoil
LDA #$01 : STA $4D ; state recoil 2
LDA #$02 : STA $5D ; set link state recoil
LDA #$02 : STA $4D ; set jumping state (ledge hop)
; Length of the jump
LDA #$20
; Length of the jump
LDA #$20 : STA $46
STA $46
; Height of the jump
LDA #$24
; Height of the jump
LDA #$24
; Set vertical resistance
STA $29
STA $02C7
; Set vertical resistance
STA $29
STA $02C7
; Set Links direction to right(?)
LDA #$08 : STA $0340 : STA $67
; Set Links direction to right(?)
LDA #$08 : STA $0340 : STA $67
; Reset Link movement offsets
STZ $31
STZ $30
; Reset Link movement offsets
STZ $31 : STZ $30
LDA $F4 : AND #$08 : BEQ .noUp
LDA #-8 ; Change that -8 if you want higher speed moving up
STA $27 ; Vertical recoil
.noUp
LDA $F4 : AND #$04 : BEQ .noDown
LDA #8 ; Change that -8 if you want higher speed moving down
STA $27
.noDown
LDA $F4 : AND #$02 : BEQ .noLeft
LDA #-8 ; Change that -8 if you want higher speed moving left
STA $28 ; Horizontal recoil
.noLeft
LDA $F4 : AND #$01 : BEQ .noRight
LDA #8 ; Change that 8 if you want higher speed moving right
STA $28
.noRight
LDA $F4 : AND #$08 : BEQ .noUp
LDA #-8 ; Change that -8 if you want higher speed moving up
STA $27 ; Vertical recoil
.noUp
LDA $F4 : AND #$04 : BEQ .noDown
LDA #8 ; Change that -8 if you want higher speed moving down
STA $27
.noDown
LDA $F4 : AND #$02 : BEQ .noLeft
LDA #-8 ; Change that -8 if you want higher speed moving left
STA $28 ; Horizontal recoil
.noLeft
LDA $F4 : AND #$01 : BEQ .noRight
LDA #8 ; Change that 8 if you want higher speed moving right
STA $28
.noRight
.cantuseit
RTL
RTL
}
; =========================================================
; Y contains our armor value
; Currently requires a very close jump and will still
; damage the player midair if you jump from too far away.
CheckIfJumpingForSpikeDamage:
{
PHB : PHK : PLB
LDA $29 : BNE .airborne
LDA.w .spike_floor_damage, Y : STA.w $0373
.airborne
PLB
RTL
.spike_floor_damage
db $08 ; green
db $08 ; blue
db $04 ; red
}
print "End of Items/jump_feather.asm ", pc

View File

@@ -1,11 +1,7 @@
org $07A471 ; Mudora
JSR LinkItem_PortalRod
RTS
; portal_rod.asm by scawful
; TODO: Make the item an alternative to the FishingRod
warnpc $07A493
; *$3A50F-$3A568
; Replace LinkState_UsingEther
org $07A50F
RodAnimationTimer:
db $03, $03, $05
@@ -109,6 +105,7 @@ LinkItem_FirePortal:
STZ $0D60, X
STZ $0D70, X
LDA #$09 : STA $0DD0, X
PLX
@@ -126,6 +123,8 @@ LinkItem_FirePortal:
}
; =========================================================
pushpc
org $02FF6E

View File

@@ -4,6 +4,7 @@
; Overrides Blind and the Blind Maiden to create a new
; boss sequence.
;
;
; =========================================================
!SPRID = $CE ; The sprite ID you are overwriting (HEX)
@@ -58,17 +59,21 @@ Sprite_Twinrova_Long:
Sprite_Twinrova_CheckIfDead:
{
LDA SprAction, X : CMP.b #$0A : BEQ .not_dead
; If health is negative, set back to zero
LDA SprHealth, X : CMP.b #$44 : BCC .health_not_negative
LDA.b #$00 : STA SprHealth, X
LDA $0D80, X : CMP.b #$0A : BEQ .not_dead
.health_not_negative
LDA SprHealth, X : BNE .not_dead
PHX
LDA.b #$04 : STA $0DD0, X ; Kill sprite boss style
LDA.b #$0A : STA SprAction, X ; Go to Twinrova_Dead stage
PLX
; If health is negative, set back to zero
LDA $0E50, X : CMP.b #$44 : BCC .health_not_negative
LDA.b #$00 : STA $0E50, X
.health_not_negative
LDA $0E50, X : BNE .not_dead
PHX
LDA.b #$04 : STA $0DD0, X ; Kill sprite boss style
LDA.b #$0A : STA $0D80, X ; Go to Twinrova_Dead stage
PLX
.not_dead
RTS
}
@@ -79,8 +84,9 @@ Sprite_Twinrova_Prep:
{
PHB : PHK : PLB
; PrepareBattle
LDA.l $7EF3CC : CMP.b #$06 : BEQ .despawn
LDA.b #$40 : STA SprHealth, X ; Health
LDA.b #$40 : STA $0E50, X ; Health
LDA.b #$04 : STA $0CD2, X ; Bump damage type (4 hearts, green tunic)
%SetSpriteSpeedX(15)
@@ -168,62 +174,59 @@ Sprite_Twinrova_Main:
dw Twinrova_KotakeMode ; 0x09
dw Twinrova_Dead ; 0x0A
; -------------------------------------------------------
; 0x00
; TODO: Separate MoveState phases into action 0 and 1
; 0x00
Twinrova_Init:
{
%GotoAction(01)
RTS
}
; -------------------------------------------------------
; 0x01
Twinrova_MoveState:
{
LDA SprHealth, X : CMP.b #$20 : BCS .phase_1
; -------------------------------------------
; Phase 2
LDA SprTimerE, X : BNE .kotake
LDA #$70 : STA SprTimerD, X
%GotoAction(8) ; Koume Mode
RTS
.kotake
LDA #$70 : STA SprTimerD, X
%GotoAction(9) ; Kotake Mode
RTS
LDA $0E50, X : CMP.b #$20 : BCS .phase_1
; -------------------------------------------
; Phase 2
LDA SprTimerE, X : BNE .kotake
LDA #$70 : STA SprTimerD, X
%GotoAction(8) ; Koume Mode
RTS
.kotake
LDA #$70 : STA SprTimerD, X
%GotoAction(9) ; Kotake Mode
RTS
; ---------------------------------------------
.phase_1
LDA $0DA0 : BEQ .not_flashing
LDA.b #$20 : STA.w SprTimerD, X
%GotoAction(7) ; Goto Twinrova_Hurt
RTS
RTS
.not_flashing
JSL GetRandomInt : AND.b #$3F : BNE +
LDA.b #$20 : STA.w SprTimerD, X
STZ $AC ; Set the fire attack
STZ $AC
%GotoAction(4) ; Prepare Attack
RTS
+
JSL GetRandomInt : AND.b #$3F : BNE ++
LDA.b #$20 : STA.w SprTimerD, X
LDA #$01 : STA $AC ; Set the ice attack
LDA #$01 : STA $AC
%GotoAction(4) ; Prepare Attack
RTS
++
JSL Sprite_IsBelowPlayer : TYA : BNE .MoveBackwards ; If 1,
%GotoAction(2) ; MoveForwards
JSL Sprite_IsBelowPlayer ; Check if sprite is below player
TYA : BNE .MoveBackwards ; If 1,
%GotoAction(2)
RTS
.MoveBackwards
%GotoAction(3) ; MoveBackwards
%GotoAction(3)
RTS
}
; -------------------------------------------------------
; 0x02 - TODO: Implement Twinrova_MoveForwards
Twinrova_MoveForwards:
{
@@ -241,7 +244,6 @@ Sprite_Twinrova_Main:
RTS
}
; -------------------------------------------------------
; 0x03 - TODO: Implement Twinrova_MoveBackwards
Twinrova_MoveBackwards:
{
@@ -259,7 +261,6 @@ Sprite_Twinrova_Main:
RTS
}
; -------------------------------------------------------
; 0x04
Twinrova_PrepareAttack:
{
@@ -284,7 +285,6 @@ Sprite_Twinrova_Main:
RTS
}
; -------------------------------------------------------
; 0x05
Twinrova_FireAttack:
{
@@ -299,7 +299,6 @@ Sprite_Twinrova_Main:
RTS
}
; -------------------------------------------------------
; 0x06
Twinrova_IceAttack:
{
@@ -314,7 +313,6 @@ Sprite_Twinrova_Main:
RTS
}
; -------------------------------------------------------
; 0x07
Twinrova_Hurt:
{
@@ -334,7 +332,6 @@ Sprite_Twinrova_Main:
RTS
}
; -------------------------------------------------------
; 0x08
Twinrova_KoumeMode:
{
@@ -355,7 +352,6 @@ Sprite_Twinrova_Main:
RTS
}
; -------------------------------------------------------
; 0x09
Twinrova_KotakeMode:
{
@@ -376,7 +372,6 @@ Sprite_Twinrova_Main:
RTS
}
; -------------------------------------------------------
; 0x0A
Twinrova_Dead:
{
@@ -387,9 +382,6 @@ Sprite_Twinrova_Main:
}
; =========================================================
; TODO: Create a new parent sprite for the Twinrova attacks
; so that the velocity and movement aren't applied to the
; parent sprite itself.
; Reused function from TrinexxBreath.
TrinexxBreath_AltEntry:
@@ -401,7 +393,7 @@ TrinexxBreath_AltEntry:
.no_shake
JSL Sprite_CheckTileCollision : BEQ .exit
JSL Sprite_BounceTowardPlayer
JSL Sprite_BounceTowardPlayer
.exit
RTS
@@ -413,7 +405,7 @@ TrinexxBreath_AltEntry:
Sprite_Twinrova_FireAttack:
{
JSL Sprite_CheckTileCollision : BNE .no_collision
JSL Sprite_Move
JSL Sprite_Move
.no_collision
JSR AddFireGarnish
JMP TrinexxBreath_AltEntry
@@ -422,32 +414,68 @@ Sprite_Twinrova_FireAttack:
; $1DBDD6 - TrinexxFire_AddFireGarnish
AddFireGarnish:
{
INC.w SprDelay, X : LDA SprDelay, X : AND.b #$07 : BNE .return
INC $0E80, X : LDA $0E80, X : AND.b #$07 : BNE .return
LDA.b #$2A : JSL Sound_SetSfx2PanLong
LDA.b #$1D : PHX : TXY : TAX : STA $00
.next_slot
LDA $7FF800, X : BEQ .free_slot ; Search for free Garnish slot
LDA $7FF800, X : BEQ .free_slot
DEX : BPL .next_slot
DEC $0FF8 : BPL .use_search_index
LDA $00 : STA $0FF8
.use_search_index
LDX $0FF8
.use_search_index
LDX $0FF8
.free_slot
; Set garnish ID, set garnish handled flag, set garnish parent sprite
LDA.b #$10 : STA $7FF800, X : STA $0FB4 : TYA : STA $7FF92C, X
LDA.w SprX, Y : STA $7FF83C, X ; Garnish XL
LDA.w SprXH, Y : STA $7FF878, X ; Garnish XH
LDA.w SprY, Y : CLC : ADC.b #$10 : STA $7FF81E, X ; Garnish YL
LDA.w SprYH, Y : ADC.b #$00 : STA $7FF85A, X ; Garnish YH
LDA.b #$7F : STA $7FF90E, X : STX $00 ; Set garnish timer
LDA.b #$10 : STA $7FF800, X : STA $0FB4
TYA : STA $7FF92C, X
LDA.w SprX, Y : STA $7FF83C, X
LDA.w SprXH, Y : STA $7FF878, X
LDA.w SprY, Y : CLC : ADC.b #$10 : STA $7FF81E, X
LDA.w SprYH, Y : ADC.b #$00 : STA $7FF85A, X
LDA.b #$7F : STA $7FF90E, X
STX $00
PLX
.return
RTS
}
; =========================================================
; $1DBD65 - TrinexxBreath_ice_add_ice_garnish
AddIceGarnishV2:
{
INC $0E80, X : LDA $0E80, X : AND.b #$07 : BNE .return
LDA.b #$14 : JSL Sound_SetSfx3PanLong
LDA.b #$1D : PHX : TXY : TAX : STA $00
.next_slot
LDA $7FF800, X : BEQ .free_slot
DEX : BPL .next_slot
DEC $0FF8 : BPL .use_search_index
LDA.b #$00 : STA $0FF8
.use_search_index
LDX $0FF8
.free_slot
LDA.b #$0C : STA $7FF800, X : STA $0FB4
TYA : STA $7FF92C, X
LDA.w SprX, Y : STA $7FF83C, X
LDA.w SprXH, Y : STA $7FF878, X
LDA.w SprY, Y : CLC : ADC.b #$10 : STA $7FF81E, X
LDA.w SprYH, Y : ADC.b #$00 : STA $7FF85A, X
LDA.b #$7F : STA $7FF90E, X : STX $00
PLX
.return
RTS
}
Sprite_Twinrova_IceAttack:
{
@@ -458,35 +486,8 @@ Sprite_Twinrova_IceAttack:
JMP TrinexxBreath_AltEntry
}
; $1DBD65 - TrinexxBreath_ice_add_ice_garnish
AddIceGarnishV2:
{
INC.w SprDelay, X : LDA SprDelay, X : AND.b #$07 : BNE .return
LDA.b #$14 : JSL Sound_SetSfx3PanLong
LDA.b #$1D : PHX : TXY : TAX : STA $00
.next_slot
LDA $7FF800, X : BEQ .free_slot ; Search for free Garnish slot
DEX : BPL .next_slot
DEC $0FF8 : BPL .use_search_index
LDA.b #$00 : STA $0FF8
.use_search_index
LDX $0FF8
.free_slot
; Set garnish ID, set garnish handled flag, set garnish parent sprite
LDA.b #$0C : STA $7FF800, X : STA $0FB4 : TYA : STA $7FF92C, X
LDA.w SprX, Y : STA $7FF83C, X ; Garnish XL
LDA.w SprXH, Y : STA $7FF878, X ; Garnish XH
LDA.w SprY, Y : CLC : ADC.b #$10 : STA $7FF81E, X ; Garnish YL
LDA.w SprYH, Y : ADC.b #$00 : STA $7FF85A, X ; Garnish YH
LDA.b #$7F : STA $7FF90E, X : STX $00 ; Set garnish timer
PLX
.return
RTS
}
; =========================================================
; Overwrite vanilla Trinexx ice garnish
; Plays like a simple ice cloud animation now.
@@ -504,17 +505,19 @@ org $09B459
org $09B5D6
Garnish_SetOamPropsAndSmallSize:
; SpriteData_Bump - Ice Garnish
org $0DB266+$CD
db $04
org $09B33F
TrinexxIce_Pool:
{
.chr
db $2E, $2E, $2C, $2C
db $2E
db $2E
db $2C
db $2C
.properties
db $35, $35, $35, $35
db $35
db $35
db $35
db $35
}
org $09B34F
@@ -536,6 +539,10 @@ Garnish_TrinexxIce:
}
warnpc $09B3B8
; Ice Garnish
org $0DB266+$CD
db $04
pullpc
; =========================================================
@@ -603,6 +610,8 @@ Sprite_Twinrova_Draw:
RTS
; =========================================================
.start_index
db $00, $04, $08, $0C, $10, $14, $18, $1C, $22, $26, $2A, $2E
.nbr_of_tiles
@@ -679,19 +688,25 @@ Sprite_Twinrova_Draw:
ApplyTwinrovaGraphics:
{
PHX
REP #$20 ; A = 16, XY = 8
LDX #$80 : STX $2100 ; turn the screen off (required)
REP #$20 ; A = 16, XY = 8
LDX #$80 : STX $2100 ; turn the screen off (required)
LDX #$80 : STX $2115 ; Set the video port register every time we write it increase by 1
LDA #$5000 : STA $2116 ; Destination of the DMA $5800 in vram <- this need to be divided by 2
LDA #$1801 : STA $4300 ; DMA Transfer Mode and destination register
; "001 => 2 registers write once (2 bytes: p, p+1)"
LDA.w #TwinrovaGraphics : STA $4302 ; Source address where you want gfx from ROM
LDX.b #TwinrovaGraphics>>16 : STX $4304
LDA #$2000 : STA $4305 ; Size of the transfer 4 sheets of $800 each
LDA #$2000 : STA $4305 ; size of the transfer 4 sheets of $800 each
LDX #$01 : STX $420B ; Do the DMA
LDX #$0F : STX $2100 ; Turn the screen back on
LDX #$0F : STX $2100 ;turn the screen back on
SEP #$30
PLX
RTL
TwinrovaGraphics:
@@ -796,16 +811,13 @@ Follower_CheckBlindTrigger:
}
; =========================================================
; Called during Blind Maiden section of Follower_BasicMover
; to spawn Twinrova from the Blind Maiden.
; Called during the BlindMaiden section of Follower_BasicMover
; to spawn Twinrova in the room.
; TODO: Figure out why the sprite disappears after graphics
; are transferred in. It seems to be unrelated to the
; graphics code, but rather related to the BlindMaiden
; spawn code.
org $1DA03C
Blind_SpawnFromMaiden:
{
; Load the Twinrova graphics
JSL ApplyTwinrovaGraphics
LDX.b #$00 ; Load the boss into sprite index 0
@@ -885,13 +897,11 @@ SpritePrep_Blind_PrepareBattle:
warnpc $1DA0B1
; =========================================================
; TODO: Decide if we want to use this garnish in the fight.
; Currently unused.
org $1DA0B1
BlindLaser_SpawnTrailGarnish:
{
#_1DA0B1: LDA.w SprDelay,X
#_1DA0B1: LDA.w $0E80,X
#_1DA0B4: AND.b #$00
#_1DA0B6: BNE .exit