You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-09-08 08:13:02 -07:00
Uppercase MACRO and EQU(S) according to the style guide
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
momitem: macro
|
||||
momitem: MACRO
|
||||
; money to trigger, cost, kind, item
|
||||
dt \1
|
||||
dt \2
|
||||
|
@@ -1,4 +1,4 @@
|
||||
sprite_movement_data: macro
|
||||
sprite_movement_data: MACRO
|
||||
db \1, \2, \3, \4, \5
|
||||
dn \6, 0
|
||||
endm
|
||||
|
@@ -1,4 +1,4 @@
|
||||
prob: macro
|
||||
prob: MACRO
|
||||
prob_total = prob_total + (\1)
|
||||
dw prob_total * $ffff / 100
|
||||
endm
|
||||
|
@@ -6,7 +6,7 @@
|
||||
const PAL_TOWNMAP_POI ; 4
|
||||
const PAL_TOWNMAP_POI_MTN ; 5
|
||||
|
||||
townmappals: macro
|
||||
townmappals: MACRO
|
||||
rept _NARG / 2
|
||||
dn PAL_TOWNMAP_\2, PAL_TOWNMAP_\1
|
||||
shift
|
||||
|
@@ -1,4 +1,4 @@
|
||||
phone: macro
|
||||
phone: MACRO
|
||||
; trainer class, trainer id, map, ?, script 1, ?, script 2
|
||||
db \1, \2
|
||||
map \3
|
||||
|
@@ -1,4 +1,4 @@
|
||||
specialcall: macro
|
||||
specialcall: MACRO
|
||||
; condition, contact, script
|
||||
dw \1
|
||||
db \2
|
||||
|
@@ -1,4 +1,4 @@
|
||||
unownword: macro
|
||||
unownword: MACRO
|
||||
x = 1
|
||||
rept STRLEN(\1)
|
||||
db STRSUB(\1, x, 1) - $40
|
||||
|
@@ -1,7 +1,7 @@
|
||||
; Maps that roaming monsters can be on, and possible maps they can jump to.
|
||||
; Notably missing are Route 40 and Route 41, which are water routes.
|
||||
|
||||
roam_map: macro
|
||||
roam_map: MACRO
|
||||
; map, # of other maps, other maps
|
||||
map \1
|
||||
db \2
|
||||
|
@@ -1,4 +1,4 @@
|
||||
treemon_map: macro
|
||||
treemon_map: MACRO
|
||||
map \1
|
||||
db \2 ; treemon set
|
||||
endm
|
||||
|
Reference in New Issue
Block a user