You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-12-11 05:02:16 -08:00
version-sensitive objects for egg moves and evos/attacks
this way main.o and wram.o are version-neutral
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
EggMovePointers: ; 0x23b11
|
||||
dw BulbasaurEggMoves
|
||||
dw NoEggMoves
|
||||
dw NoEggMoves
|
||||
|
||||
6
stats/egg_moves_crystal.asm
Normal file
6
stats/egg_moves_crystal.asm
Normal file
@@ -0,0 +1,6 @@
|
||||
INCLUDE "pokecrystal.asm"
|
||||
INCLUDE "includes.asm"
|
||||
|
||||
SECTION "eggmoves", ROMX, BANK[$8]
|
||||
INCLUDE "stats/egg_move_pointers.asm"
|
||||
INCLUDE "stats/egg_moves.asm"
|
||||
6
stats/evos_attacks_crystal.asm
Normal file
6
stats/evos_attacks_crystal.asm
Normal file
@@ -0,0 +1,6 @@
|
||||
INCLUDE "pokecrystal.asm"
|
||||
INCLUDE "includes.asm"
|
||||
|
||||
SECTION "evosattacks", ROMx, BANK[$10]
|
||||
INCLUDE "stats/evos_attacks_pointers.asm"
|
||||
INCLUDE "stats/evos_attacks.asm"
|
||||
@@ -2,6 +2,7 @@
|
||||
|
||||
; These are grouped together since they're both checked at level-up.
|
||||
|
||||
EvosAttacksPointers: ; 0x425b1
|
||||
dw BulbasaurEvosAttacks
|
||||
dw IvysaurEvosAttacks
|
||||
dw VenusaurEvosAttacks
|
||||
|
||||
Reference in New Issue
Block a user