aboutsummaryrefslogtreecommitdiff
path: root/map
diff options
context:
space:
mode:
authorAstatin <[email protected]>2025-05-07 17:01:22 +0200
committerAstatin <[email protected]>2025-05-07 17:01:22 +0200
commit4b02238d88af30c98b2f8d44e5200fb80b04bcad (patch)
treed69861ff5fe1ebed41f9697335948bde512f10f4 /map
parent7284cc51dedb4f77fe6c1fa1da735b52609b1d4d (diff)
I was adding the frog and then broke everything to fix the viewport thingy
Diffstat (limited to 'map')
-rw-r--r--map/dungeons.gbasm3
-rw-r--r--map/objects.gbasm4
2 files changed, 5 insertions, 2 deletions
diff --git a/map/dungeons.gbasm b/map/dungeons.gbasm
index 5d75952..930fede 100644
--- a/map/dungeons.gbasm
+++ b/map/dungeons.gbasm
@@ -88,6 +88,9 @@ Dungeon:
.name: .DB =Dungeon_Name_1_Txt
.max_floor: .DB 0x0a, inv(0x0a)
.spawning_patterns:
+ ; --DBG--
+ .DB $01, $01, $01, $01, 0b11111111
+ ; --DBG--
.DB $02, $02, $02, $05, 0b00000010
.DB $02, $02, $03, $05, 0b00100011
.DB $02, $02, $00, $05, 0b00100111
diff --git a/map/objects.gbasm b/map/objects.gbasm
index e3bd020..11eb7f9 100644
--- a/map/objects.gbasm
+++ b/map/objects.gbasm
@@ -224,7 +224,7 @@ Stairs_Action:
Heal_Action:
LD A, $mem_bunny_health
- ADD $05
+ ADD $03
DAA
CP $20
JR C, =.Set_health
@@ -350,7 +350,7 @@ Fimsh_Attack_Box_Action:
Restore_EP_Action:
LD A, $mem_bunny_mana
- ADD $15
+ ADD $05
DAA
JR NC, =.Set_mana
LD A, $99