From d410da3bac676f20f444cfdc88596b04e73cbe10 Mon Sep 17 00:00:00 2001 From: professorleondias <57677889+professorleondias@users.noreply.github.com> Date: Wed, 10 Jun 2020 18:40:39 -0400 Subject: [PATCH] Update pokedex.h --- include/pokedex.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/include/pokedex.h b/include/pokedex.h index f8b2165..56c9079 100644 --- a/include/pokedex.h +++ b/include/pokedex.h @@ -1003,9 +1003,11 @@ enum #define NATIONAL_DEX_KUBFU 892 #define NATIONAL_DEX_URSHIFU 893 #define NATIONAL_DEX_CALYREX 894 +#define NATIONAL_DEX_REGIELEKI 895 +#define NATIONAL_DEX_REGIDRAGO 896 -#define FINAL_DEX_ENTRY NATIONAL_DEX_CALYREX //Not +1 b/c used like this for some asm -#define NATIONAL_DEX_COUNT NATIONAL_DEX_CALYREX + 1 +#define FINAL_DEX_ENTRY NATIONAL_DEX_REGIDRAGO //Not +1 b/c used like this for some asm +#define NATIONAL_DEX_COUNT NATIONAL_DEX_REGIDRAGO + 1 extern const u8 DEX_ENTRY_TURTWIG[]; extern const u8 DEX_ENTRY_GROTLE[]; @@ -1515,6 +1517,8 @@ extern const u8 DEX_ENTRY_ZARUDE[]; extern const u8 DEX_ENTRY_KUBFU[]; extern const u8 DEX_ENTRY_URSHIFU_SINGLE[]; extern const u8 DEX_ENTRY_CALYREX[]; +extern const u8 DEX_ENTRY_REGIELEKI[]; +extern const u8 DEX_ENTRY_REGIDRAGO[]; extern const u8 DEX_ENTRY_RATTATA_A[]; extern const u8 DEX_ENTRY_RATICATE_A[];