Skip to content

Commit

Permalink
quick fix
Browse files Browse the repository at this point in the history
fixed leftover stuff from development.
more info in the changelog.md
  • Loading branch information
wrulfy committed Mar 22, 2023
1 parent 9b86685 commit d9943f8
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 12 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ gfx/sprites.o \
gfx/tilesets.o

carminered_obj := $(rom_obj:.o=_red.o)
#pokeblue_obj := $(rom_obj:.o=_blue.o)
#pokeblue_debug_obj := $(rom_obj:.o=_blue_debug.o)

### Build tools
Expand Down
3 changes: 3 additions & 0 deletions TODO.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Make the whole documentation for the actual full release

fix the "end" character of the naming screen


Check https://www.youtube.com/watch?v=mHkyO5T5wZU 0:52 because I should try to move that to the other side now that the map has changed 💀


Expand Down
10 changes: 10 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
v0.9.1 Quickfix

Fixed kakuna knowing tackle instead of poison sting
Rebalanced viridian forest encounters to have more worm and less cocoon
Increased spawn rates of the water grass and fire mon avaiable on the early routes to 15%
Fixed abra not knowing just teleport at lv1
Fialogue fixes
______________________

v0.9.0 Initial (pre)Release
2 changes: 1 addition & 1 deletion data/pokemon/base_stats/abra.asm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
INCBIN "gfx/pokemon/front/abra.pic", 0, 1 ; sprite dimensions
dw AbraPicFront, AbraPicBack

db DIZZY_PUNCH, NO_MOVE, NO_MOVE, NO_MOVE ; level 1 learnset
db TELEPORT, NO_MOVE, NO_MOVE, NO_MOVE ; level 1 learnset
db GROWTH_STARTER ; growth rate

; tm/hm learnset
Expand Down
2 changes: 1 addition & 1 deletion data/pokemon/base_stats/kakuna.asm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
INCBIN "gfx/pokemon/front/kakuna.pic", 0, 1 ; sprite dimensions
dw KakunaPicFront, KakunaPicBack

db DEFENSE_CURL, TACKLE, STRING_SHOT, HARDEN ; level 1 learnset
db DEFENSE_CURL, POISON_STING, STRING_SHOT, HARDEN ; level 1 learnset
db GROWTH_FAST ; growth rate

; tm/hm learnset
Expand Down
6 changes: 3 additions & 3 deletions data/wild/maps/Route2.asm
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ Route2WildMons:
db 3, PIDGEY
db 3, RATTATA
db 4, PIDGEY
db 4, RATTATA
db 4, POLIWAG
db 2, CATERPIE
db 2, WEEDLE
db 5, RATTATA
db 3, POLIWAG
db 4, POLIWAG
db 4, RATTATA
db 5, POLIWAG
db 6, POLIWAG
end_grass_wildmons

def_water_wildmons 0 ; encounter rate
Expand Down
4 changes: 2 additions & 2 deletions data/wild/maps/Route22.asm
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ Route22WildMons:
db 3, MANKEY
db 4, SPEAROW
db 4, RATTATA
db 5, SPEAROW
db 5, MANKEY
db 3, VULPIX
db 5, MANKEY
db 5, SPEAROW
db 4, VULPIX
db 5, VULPIX
end_grass_wildmons
Expand Down
8 changes: 4 additions & 4 deletions data/wild/maps/ViridianForest.asm
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ ViridianForestWildMons:
def_grass_wildmons 8 ; encounter rate
db 4, CATERPIE
db 4, WEEDLE
db 5, KAKUNA
db 5, METAPOD
db 6, METAPOD
db 5, ODDISH
db 4, VENONAT
db 6, METAPOD
db 6, KAKUNA
db 4, VENONAT
db 5, CATERPIE
db 5, WEEDLE
db 3, PIKACHU
db 5, PIKACHU
end_grass_wildmons
Expand Down
2 changes: 1 addition & 1 deletion text/Route2.asm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ _Route2EndBattleText1::
_Route2AfterBattleText1::
text "I just started my"
line "own adventure"
cont "yesterday"
cont "yesterday."

para "#MON are"
line "fantastic!"
Expand Down

0 comments on commit d9943f8

Please sign in to comment.