Rename: emote_headers, sprite_headers, cry_headers, gfx_headers, tileset_headers

This commit is contained in:
Remy Oukaour
2017-12-26 12:50:32 -05:00
parent b5a8e3b3b3
commit 24f0e7d045
32 changed files with 524 additions and 527 deletions

View File

@@ -775,7 +775,7 @@ const_value SET 1
const ANIM_MON_EGG1
const ANIM_MON_EGG2
; AnimObjGFX indexes (see battle/objects/gfx_headers.asm)
; AnimObjGFX indexes (see battle/objects/object_gfx.asm)
const_value SET 1
const ANIM_GFX_HIT
const ANIM_GFX_CUT

View File

@@ -32,14 +32,14 @@ NUM_LEVEL_STATS EQU const_value
; move struct members (see battle/moves/moves.asm)
const_def
const MOVE_ANIM
const MOVE_EFFECT
const MOVE_POWER
const MOVE_TYPE
const MOVE_ACC
const MOVE_PP
const MOVE_CHANCE
const MOVE_LENGTH
const MOVE_ANIM ; 0
const MOVE_EFFECT ; 1
const MOVE_POWER ; 2
const MOVE_TYPE ; 3
const MOVE_ACC ; 4
const MOVE_PP ; 5
const MOVE_CHANCE ; 6
MOVE_LENGTH EQU const_value
; stat constants
; indexes for:

View File

@@ -3,7 +3,7 @@ MAP_N_A EQU -1
GROUP_NONE EQU 0
MAP_NONE EQU 0
; map header fields (see maps/map_headers.asm)
; map header struct members (see maps/map_headers.asm)
const_def
const MAPHEADER_MAPHEADER2_BANK ; 0
const MAPHEADER_TILESET ; 1
@@ -200,7 +200,7 @@ NUM_SPAWNS EQU const_value
const OBJECTTYPE_6
; EmotesPointers indexes (see engine/overworld.asm)
; Emotes indexes (see data/emotes.asm)
const_def
const EMOTE_SHOCK ; 0
const EMOTE_QUESTION ; 1

View File

@@ -41,7 +41,7 @@ const_value SET 1
const map_save_screen ; 0c
const map_buffer_screen ; 0d
const map_load_graphics ; 0e
const map_load_tileset_header ; 0f
const map_load_tileset ; 0f
const map_time_of_day ; 10
const map_palettes ; 11
const map_wildmons ; 12

View File

@@ -1,6 +1,6 @@
; pokemon ids
; indexes for:
; - CryHeaders (see data/pokemon/cry_headers.asm)
; - PokemonCries (see data/pokemon/cries.asm)
; - BaseData (see data/pokemon/base_stats.asm)
; - EggMovePointers (see data/pokemon/egg_move_pointers.asm)
; - EvosAttacksPointers (see data/pokemon/evos_attacks_pointers.asm)

View File

@@ -1,5 +1,5 @@
; sprite ids
; SpriteHeaders indexes (see gfx/sprite_headers.asm)
; OverworldSprites indexes (see gfx/sprite_data.asm)
const_def
const SPRITE_NONE ; 00
const SPRITE_CHRIS ; 01

View File

@@ -1,12 +1,12 @@
; sprite_header struct members (see gfx/sprite_headers.asm)
; overworld_sprite struct members (see gfx/sprite_data.asm)
const_def
const SPRITEHEADER_ADDR_LO ; 0
const SPRITEHEADER_ADDR_HI ; 1
const SPRITEHEADER_SIZE ; 2
const SPRITEHEADER_BANK ; 3
const SPRITEHEADER_TYPE ; 4
const SPRITEHEADER_PALETTE ; 5
NUM_SPRITEHEADER_FIELDS EQU const_value
const SPRITEDATA_ADDR ; 0
const SPRITEDATA_ADDR_HI ; 1
const SPRITEDATA_SIZE ; 2
const SPRITEDATA_BANK ; 3
const SPRITEDATA_TYPE ; 4
const SPRITEDATA_PALETTE ; 5
NUM_SPRITEDATA_FIELDS EQU const_value
; sprite types
const_value SET 1

View File

@@ -1,4 +1,4 @@
; Tilesets indexes (see tilesets/tileset_headers.asm)
; Tilesets indexes (see tilesets/tilesets.asm)
const_value SET 1
const TILESET_JOHTO_1 ; 01
const TILESET_JOHTO_2 ; 02

View File

@@ -678,7 +678,7 @@ KRIS EQU __enum__
NUM_TRAINER_CLASSES EQU __enum__
; TrainerClassAttributes fields (see data/trainers/trainer_attributes.asm)
; TrainerClassAttributes struct members (see data/trainers/trainer_attributes.asm)
const_def
const TRNATTR_ITEM1 ; 0
const TRNATTR_ITEM2 ; 1