aboutsummaryrefslogtreecommitdiffstats
path: root/constants/type_constants.asm
diff options
context:
space:
mode:
authorvulcandth <vulcandth@gmail.com>2022-06-06 16:25:31 -0500
committerGitHub <noreply@github.com>2022-06-06 17:25:31 -0400
commit6b5be9129cabe72b9f775b02db1bf7e7169153da (patch)
treed92012450c70f90bf8086bed32ec3dc87b68b332 /constants/type_constants.asm
parentImproved Virtual Console patch identifiers (#357) (diff)
downloadpokeyellow-6b5be9129cabe72b9f775b02db1bf7e7169153da.tar.gz
pokeyellow-6b5be9129cabe72b9f775b02db1bf7e7169153da.tar.xz
pokeyellow-6b5be9129cabe72b9f775b02db1bf7e7169153da.zip
RGBDS syntax updates (#358)
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