mirror of
https://github.com/lesserkuma/pokecrystal-news-en.git
synced 2026-03-21 17:34:32 -05:00
57 lines
2.6 KiB
NASM
57 lines
2.6 KiB
NASM
IF DEF(_NEWS_EN)
|
|
INCLUDE "pokecrystal/charmap_en.asm"
|
|
ELIF DEF(_NEWS_DE)
|
|
INCLUDE "pokecrystal/charmap_de.asm"
|
|
ELSE
|
|
INCLUDE "pokecrystal/charmap.asm"
|
|
ENDC
|
|
INCLUDE "pokecrystal/macros.asm"
|
|
|
|
INCLUDE "pokecrystal/constants/hardware_constants.asm"
|
|
INCLUDE "pokecrystal/constants/deco_constants.asm"
|
|
INCLUDE "pokecrystal/constants/wram_constants.asm"
|
|
INCLUDE "pokecrystal/constants/misc_constants.asm"
|
|
INCLUDE "pokecrystal/constants/input_constants.asm"
|
|
INCLUDE "pokecrystal/constants/gfx_constants.asm"
|
|
INCLUDE "pokecrystal/constants/text_constants.asm"
|
|
INCLUDE "pokecrystal/constants/audio_constants.asm"
|
|
INCLUDE "pokecrystal/constants/battle_anim_constants.asm"
|
|
INCLUDE "pokecrystal/constants/battle_constants.asm"
|
|
INCLUDE "pokecrystal/constants/collision_constants.asm"
|
|
INCLUDE "pokecrystal/constants/credits_constants.asm"
|
|
INCLUDE "pokecrystal/constants/cry_constants.asm"
|
|
INCLUDE "pokecrystal/constants/engine_flags.asm"
|
|
INCLUDE "pokecrystal/constants/event_flags.asm"
|
|
INCLUDE "pokecrystal/constants/icon_constants.asm"
|
|
INCLUDE "pokecrystal/constants/landmark_constants.asm"
|
|
INCLUDE "pokecrystal/constants/map_constants.asm"
|
|
INCLUDE "pokecrystal/constants/map_data_constants.asm"
|
|
INCLUDE "pokecrystal/constants/map_object_constants.asm"
|
|
INCLUDE "pokecrystal/constants/map_setup_constants.asm"
|
|
INCLUDE "pokecrystal/constants/mart_constants.asm"
|
|
INCLUDE "pokecrystal/constants/menu_constants.asm"
|
|
INCLUDE "pokecrystal/constants/move_constants.asm"
|
|
INCLUDE "pokecrystal/constants/move_effect_constants.asm"
|
|
INCLUDE "pokecrystal/constants/item_constants.asm"
|
|
INCLUDE "pokecrystal/constants/item_data_constants.asm"
|
|
INCLUDE "pokecrystal/constants/music_constants.asm"
|
|
INCLUDE "pokecrystal/constants/npc_trade_constants.asm"
|
|
INCLUDE "pokecrystal/constants/phone_constants.asm"
|
|
INCLUDE "pokecrystal/constants/pokemon_constants.asm"
|
|
INCLUDE "pokecrystal/constants/pokemon_data_constants.asm"
|
|
INCLUDE "pokecrystal/constants/mobile_constants.asm"
|
|
INCLUDE "pokecrystal/constants/printer_constants.asm"
|
|
INCLUDE "pokecrystal/constants/radio_constants.asm"
|
|
INCLUDE "pokecrystal/constants/scgb_constants.asm"
|
|
INCLUDE "pokecrystal/constants/script_constants.asm"
|
|
INCLUDE "pokecrystal/constants/serial_constants.asm"
|
|
INCLUDE "pokecrystal/constants/sfx_constants.asm"
|
|
INCLUDE "pokecrystal/constants/sprite_anim_constants.asm"
|
|
INCLUDE "pokecrystal/constants/sprite_constants.asm"
|
|
INCLUDE "pokecrystal/constants/sprite_data_constants.asm"
|
|
INCLUDE "pokecrystal/constants/tileset_constants.asm"
|
|
INCLUDE "pokecrystal/constants/trainer_constants.asm"
|
|
INCLUDE "pokecrystal/constants/trainer_data_constants.asm"
|
|
INCLUDE "pokecrystal/constants/type_constants.asm"
|
|
INCLUDE "pokecrystal/constants/battle_tower_constants.asm"
|