mirror of
https://github.com/thornAvery/jep-hack.git
synced 2026-02-08 00:55:28 +13:00
First Commit
Upload literally everything from the pokecrystal16 expand-move-ID branch
This commit is contained in:
commit
2f8a41f833
4618 changed files with 480386 additions and 0 deletions
25
data/wild/unlocked_unowns.asm
Normal file
25
data/wild/unlocked_unowns.asm
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
MACRO unown_set
|
||||
rept _NARG
|
||||
db UNOWN_\1
|
||||
shift
|
||||
endr
|
||||
db -1
|
||||
ENDM
|
||||
|
||||
UnlockedUnownLetterSets:
|
||||
; entries correspond to UNLOCKED_UNOWNS_* constants
|
||||
table_width 2, UnlockedUnownLetterSets
|
||||
dw .Set_A_K ; UNLOCKED_UNOWNS_A_TO_K_F
|
||||
dw .Set_L_R ; UNLOCKED_UNOWNS_L_TO_R_F
|
||||
dw .Set_S_W ; UNLOCKED_UNOWNS_S_TO_W_F
|
||||
dw .Set_X_Z ; UNLOCKED_UNOWNS_X_TO_Z_F
|
||||
assert_table_length NUM_UNLOCKED_UNOWN_SETS
|
||||
|
||||
.Set_A_K:
|
||||
unown_set A, B, C, D, E, F, G, H, I, J, K
|
||||
.Set_L_R:
|
||||
unown_set L, M, N, O, P, Q, R
|
||||
.Set_S_W:
|
||||
unown_set S, T, U, V, W
|
||||
.Set_X_Z:
|
||||
unown_set X, Y, Z
|
||||
Loading…
Add table
Add a link
Reference in a new issue