aboutsummaryrefslogtreecommitdiffstats
path: root/constants/type_constants.asm
diff options
context:
space:
mode:
authorvulcandth <vulcandth@gmail.com>2022-06-06 16:25:34 -0500
committerGitHub <noreply@github.com>2022-06-06 17:25:34 -0400
commitc1ef7b75972fa4fbdf125bc85cc1a66f358151cd (patch)
treebcf71939ec5573ed5001c4a4b4342d26e5d8f9b1 /constants/type_constants.asm
parentImproved Virtual Console patch identifiers (#85) (diff)
downloadpokeyellow-c1ef7b75972fa4fbdf125bc85cc1a66f358151cd.tar.gz
pokeyellow-c1ef7b75972fa4fbdf125bc85cc1a66f358151cd.tar.xz
pokeyellow-c1ef7b75972fa4fbdf125bc85cc1a66f358151cd.zip
RGBDS syntax updates (#86)
New MACRO and DEF syntax
Diffstat (limited to 'constants/type_constants.asm')
-rw-r--r--constants/type_constants.asm6
1 files changed, 3 insertions, 3 deletions
diff --git a/constants/type_constants.asm b/constants/type_constants.asm
index 24817c20..e9df7faf 100644
--- a/constants/type_constants.asm
+++ b/constants/type_constants.asm
@@ -1,7 +1,7 @@
; TypeNames indexes (see data/types/names.asm)
const_def
-PHYSICAL EQU const_value
+DEF PHYSICAL EQU const_value
const NORMAL ; $00
const FIGHTING ; $01
const FLYING ; $02
@@ -14,7 +14,7 @@ PHYSICAL EQU const_value
const_next 20
-SPECIAL EQU const_value
+DEF SPECIAL EQU const_value
const FIRE ; $14
const WATER ; $15
const GRASS ; $16
@@ -23,4 +23,4 @@ SPECIAL EQU const_value
const ICE ; $19
const DRAGON ; $1A
-NUM_TYPES EQU const_value
+DEF NUM_TYPES EQU const_value