diff options
| author | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-01-22 13:00:35 -0500 |
|---|---|---|
| committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-01-22 13:00:35 -0500 |
| commit | 7cef012335f0bb335833a3ea36fd02dfa31cfbea (patch) | |
| tree | 700e7161b90e2ca3c32598585b76828c1ad160db /data/wild | |
| parent | 6ecf18aa52b79131fbf0cce85c41d3cae617100a (diff) | |
wUnlockedUnowns engine flag constants
Use local labels for "End"ings
Diffstat (limited to 'data/wild')
| -rw-r--r-- | data/wild/unlocked_unowns.asm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/data/wild/unlocked_unowns.asm b/data/wild/unlocked_unowns.asm new file mode 100644 index 000000000..71b639036 --- /dev/null +++ b/data/wild/unlocked_unowns.asm @@ -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 |
