summaryrefslogtreecommitdiff
path: root/data/wild/unlocked_unowns.asm
diff options
context:
space:
mode:
Diffstat (limited to 'data/wild/unlocked_unowns.asm')
-rw-r--r--data/wild/unlocked_unowns.asm36
1 files changed, 20 insertions, 16 deletions
diff --git a/data/wild/unlocked_unowns.asm b/data/wild/unlocked_unowns.asm
index 71b639036..d09064c4b 100644
--- a/data/wild/unlocked_unowns.asm
+++ b/data/wild/unlocked_unowns.asm
@@ -1,20 +1,24 @@
+unown_set: MACRO
+rept _NARG
+ db UNOWN_\1
+ shift
+endr
+ db -1
+ENDM
+
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
+ dw .Set_A_K ; ENGINE_UNLOCKED_UNOWNS_A_TO_K
+ dw .Set_L_R ; ENGINE_UNLOCKED_UNOWNS_L_TO_R
+ dw .Set_S_W ; ENGINE_UNLOCKED_UNOWNS_S_TO_W
+ dw .Set_X_Z ; 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
+.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