You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-04-09 05:44:44 -07:00
wUnlockedUnowns engine flag constants
Use local labels for "End"ings
This commit is contained in:
20
data/wild/unlocked_unowns.asm
Normal file
20
data/wild/unlocked_unowns.asm
Normal file
@@ -0,0 +1,20 @@
|
||||
UnlockedUnownLetterSets:
|
||||
; entries correspond to wUnlockedUnowns bits
|
||||
dw .Set1 ; ENGINE_UNLOCKED_UNOWNS_A_TO_K
|
||||
dw .Set2 ; ENGINE_UNLOCKED_UNOWNS_L_TO_R
|
||||
dw .Set3 ; ENGINE_UNLOCKED_UNOWNS_S_TO_W
|
||||
dw .Set4 ; ENGINE_UNLOCKED_UNOWNS_X_TO_Z
|
||||
.End
|
||||
|
||||
.Set1:
|
||||
; A B C D E F G H I J K
|
||||
db 01, 02, 03, 04, 05, 06, 07, 08, 09, 10, 11, -1
|
||||
.Set2:
|
||||
; L M N O P Q R
|
||||
db 12, 13, 14, 15, 16, 17, 18, -1
|
||||
.Set3:
|
||||
; S T U V W
|
||||
db 19, 20, 21, 22, 23, -1
|
||||
.Set4:
|
||||
; X Y Z
|
||||
db 24, 25, 26, -1
|
Reference in New Issue
Block a user