Overworld pit damage, Lv2 sword from chest

This commit is contained in:
scawful
2023-08-14 09:07:39 -04:00
parent 41b2b52750
commit 9b1c868374
3 changed files with 28 additions and 1 deletions

View File

@@ -215,7 +215,16 @@ namespace Oracle
print ""
; ---------------------------------------------------------
; Overworld
incsrc "Overworld/pit_damage.asm"
print "End of Overworld/pit_damage.asm ", pc
incsrc "Dungeons/master_sword.asm"
print "End of master_sword.asm ", pc
; ---------------------------------------------------------
; Custom Menu and HUD
@@ -230,7 +239,7 @@ namespace Oracle
; ---------------------------------------------------------
incsrc "Util/all_items.asm"
; incsrc "Util/all_items.asm"
print "End of Util/all_items.asm ", pc
; Overworld area which has holes that hurt

View File

@@ -0,0 +1,15 @@
; TODO: Make the pedestal sword the lv4 sword
; Change the dialogue for the sword pull
; =========================================================
; Get Lv2 Sword from chest
; =========================================================
; At 04/87CA, change D0 into 80
org $0987CA
db $80
; Disable wind blowing sfx:
; At 04/45D4, change 09 into 00
org $08C5D4
db $00

3
Overworld/pit_damage.asm Normal file
View File

@@ -0,0 +1,3 @@
; Pit hole leads to Houlihan room only in area 05
org $0794D9
LDA $8A : CMP #$05 : BEQ $0794E4