You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-09-08 08:13:02 -07:00
Split items/ and trainers/ into their data/ and engine/ components
Move some data into a pokemon/ subdirectory
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
; item ids
|
||||
; indexes for:
|
||||
; - ItemAttributes (see items/item_attributes.asm)
|
||||
; - ItemDescriptions (see items/item_descriptions.asm)
|
||||
; - ItemEffects (see items/item_effects.asm)
|
||||
; - ItemNames (see items/item_names.asm)
|
||||
; - ItemAttributes (see data/items/item_attributes.asm)
|
||||
; - ItemDescriptions (see data/items/item_descriptions.asm)
|
||||
; - ItemEffects (see engine/item_effects.asm)
|
||||
; - ItemNames (see data/items/item_names.asm)
|
||||
const_def
|
||||
const NO_ITEM ; $00
|
||||
const MASTER_BALL ; $01
|
||||
@@ -372,7 +372,7 @@ const_value SET 70
|
||||
const HELD_78
|
||||
const HELD_FOCUS_BAND
|
||||
|
||||
; item_attribute struct members (see items/item_attributes.asm)
|
||||
; item_attribute struct members (see data/items/item_attributes.asm)
|
||||
const_def
|
||||
const ITEMATTR_PRICE
|
||||
const ITEMATTR_PRICE_HI
|
||||
@@ -397,7 +397,7 @@ ITEMMENU_CLOSE EQU 6
|
||||
const MARTTYPE_PHARMACY
|
||||
const MARTTYPE_ROOFTOP
|
||||
|
||||
; Marts indexes (see items/marts.asm)
|
||||
; Marts indexes (see data/items/marts.asm)
|
||||
const_def
|
||||
const MART_CHERRYGROVE
|
||||
const MART_CHERRYGROVE_DEX
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
; Landmarks indexes (see data/landmarks.asm)
|
||||
; Landmarks indexes (see data/maps/landmarks.asm)
|
||||
const_def
|
||||
|
||||
; Johto landmarks
|
||||
|
||||
@@ -127,7 +127,7 @@ SLIDING EQU 3
|
||||
EMOTE_OBJECT EQU 7
|
||||
|
||||
|
||||
; SpawnPoints indexes (see data/spawn_points.asm)
|
||||
; SpawnPoints indexes (see data/maps/spawn_points.asm)
|
||||
const_value = -1
|
||||
const SPAWN_N_A
|
||||
const SPAWN_HOME
|
||||
|
||||
@@ -16,8 +16,8 @@ endm
|
||||
; map group ids
|
||||
; `newgroup` indexes are for:
|
||||
; - MapGroupPointers (see maps/map_headers.asm)
|
||||
; - OutdoorSprites (see data/outdoor_sprites.asm)
|
||||
; - MapGroupRoofs (see data/mapgroup_roofs.asm)
|
||||
; - OutdoorSprites (see data/maps/outdoor_sprites.asm)
|
||||
; - MapGroupRoofs (see data/maps/mapgroup_roofs.asm)
|
||||
; `mapgroup` indexes are for the sub-tables of MapGroupPointers (see maps/map_headers.asm)
|
||||
const_def
|
||||
|
||||
|
||||
@@ -1,21 +1,21 @@
|
||||
; pokemon ids
|
||||
; indexes for:
|
||||
; - CryHeaders (see audio/cry_headers.asm)
|
||||
; - BaseData (see data/base_stats.asm)
|
||||
; - EggMovePointers (see data/egg_move_pointers.asm)
|
||||
; - EvosAttacksPointers (see data/evos_attacks_pointers.asm)
|
||||
; - PokemonNames (see data/pokemon_names.asm)
|
||||
; - PokedexDataPointerTable (see data/pokedex/entry_pointers.asm)
|
||||
; - CryHeaders (see data/pokemon/cry_headers.asm)
|
||||
; - BaseData (see data/pokemon/base_stats.asm)
|
||||
; - EggMovePointers (see data/pokemon/egg_move_pointers.asm)
|
||||
; - EvosAttacksPointers (see data/pokemon/evos_attacks_pointers.asm)
|
||||
; - PokemonNames (see data/pokemon/pokemon_names.asm)
|
||||
; - PokedexDataPointerTable (see data/pokemon/dex_entry_pointers.asm)
|
||||
; - AnimationPointers (see gfx/pics/anim_pointers.asm)
|
||||
; - BitmasksPointers (see gfx/pics/bitmask_pointers.asm)
|
||||
; - AnimationExtraPointers (see gfx/pics/extra_pointers.asm)
|
||||
; - FramesPointers (see gfx/pics/frame_pointers.asm)
|
||||
; - PokemonPalettes (see gfx/pics/palette_pointers.asm)
|
||||
; - PicPointers (see gfx/pics/pic_pointers.asm)
|
||||
; - AlphabeticalPokedexOrder (see data/pokedex/order_alpha.asm)
|
||||
; - NewPokedexOrder (see data/pokedex/order_new.asm)
|
||||
; - MonMenuIcons (see data/mon_menu_icons.asm)
|
||||
; - Pokered_MonIndices (see engine/time_capsule/conversion.asm)
|
||||
; - AlphabeticalPokedexOrder (see data/pokemon/dex_order_alpha.asm)
|
||||
; - NewPokedexOrder (see data/pokemon/dex_order_new.asm)
|
||||
; - MonMenuIcons (see data/pokemon/menu_icons.asm)
|
||||
; - Pokered_MonIndices (see data/time_capsule/mon_order.asm)
|
||||
; - SortedPokemon (see misc/fixed_words.asm)
|
||||
const_value set 1
|
||||
const BULBASAUR ; 01
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
; base data struct members (see data/base_stats/*.asm)
|
||||
; base data struct members (see data/pokemon/base_stats/*.asm)
|
||||
BASE_DEX_NO EQUS "(BaseDexNo - CurBaseData)"
|
||||
BASE_STATS EQUS "(BaseStats - CurBaseData)"
|
||||
BASE_HP EQUS "(BaseHP - CurBaseData)"
|
||||
@@ -145,7 +145,7 @@ PARTY_LENGTH EQU 6
|
||||
const ICON_BIGMON
|
||||
|
||||
|
||||
; evolution types (used in data/evos_attacks.asm)
|
||||
; evolution types (used in data/pokemon/evos_attacks.asm)
|
||||
const_value SET 1
|
||||
const EVOLVE_LEVEL
|
||||
const EVOLVE_ITEM
|
||||
|
||||
@@ -5,12 +5,12 @@ ENDM
|
||||
|
||||
; trainer class ids
|
||||
; `trainerclass` indexes are for:
|
||||
; - TrainerClassAttributes (see trainers/attributes.asm)
|
||||
; - TrainerClassDVs (see trainers/dvs.asm)
|
||||
; - TrainerEncounterMusic (see trainers/encounter_music.asm)
|
||||
; - TrainerGroups (see trainers/trainer_pointers.asm)
|
||||
; - BTTrainerClassGenders (see misc/battle_tower_47.asm)
|
||||
; trainer constants are Trainers indexes, for the sub-tables of TrainerGroups (see trainers/trainers.asm)
|
||||
; - TrainerClassAttributes (see data/trainers/trainer_attributes.asm)
|
||||
; - TrainerClassDVs (see data/trainers/trainer_dvs.asm)
|
||||
; - TrainerEncounterMusic (see data/trainers/encounter_music.asm)
|
||||
; - TrainerGroups (see data/trainers/party_pointers.asm)
|
||||
; - BTTrainerClassGenders (see data/trainers/gendered_trainers.asm)
|
||||
; trainer constants are Trainers indexes, for the sub-tables of TrainerGroups (see data/trainers/parties.asm)
|
||||
enum_start
|
||||
CHRIS EQU __enum__
|
||||
trainerclass TRAINER_NONE ; 0
|
||||
@@ -677,7 +677,7 @@ KRIS EQU __enum__
|
||||
|
||||
NUM_TRAINER_CLASSES EQU __enum__
|
||||
|
||||
; TrainerClassAttributes fields (see trainers/attributes.asm)
|
||||
; TrainerClassAttributes fields (see data/trainers/trainer_attributes.asm)
|
||||
const_def
|
||||
const TRNATTR_ITEM1
|
||||
const TRNATTR_ITEM2
|
||||
|
||||
Reference in New Issue
Block a user