├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── Makefile ├── README.md ├── TODO ├── asm ├── arm.s ├── code-banim.s ├── code-sio.s ├── code.s ├── code_8073548.s ├── code_linker_stubs.s ├── crt0.s ├── gbasyscall.s └── include │ └── macro.inc ├── asmdiff.sh ├── bindiff.sh ├── data ├── arena_jids.h ├── chapterevents │ └── unk_0866AAF8.h ├── chapters │ ├── chapter1 │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── chapter10_a │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── chapter10_b │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── chapter11_a │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── chapter11_b │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── chapter12 │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── chapter12x │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── chapter13 │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── chapter14 │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── chapter14x │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── chapter15 │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── chapter16 │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── chapter16x │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── chapter17_i │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── chapter17_s │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── chapter18_i │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── chapter18_s │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── chapter19_i │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── chapter19_s │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── chapter2 │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── chapter20_i │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── chapter20_s │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── chapter20x_i │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── chapter20x_s │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── chapter21 │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── chapter21x │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── chapter22 │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── chapter23 │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── chapter24 │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── chapter3 │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── chapter4 │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── chapter5 │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── chapter6 │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── chapter7 │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── chapter8 │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── chapter8x │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── chapter9 │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── final │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── trial_a │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── trial_b │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── trial_c │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── trial_d │ │ ├── eventinfo.h │ │ └── eventscript.h │ ├── trial_e │ │ ├── eventinfo.h │ │ └── eventscript.h │ └── tutorial │ │ ├── eventinfo.h │ │ └── eventscript.h ├── chaptershops.h ├── chapterunits_data.h ├── data-banim.s ├── data-code-banim.s ├── data-code-mu.s ├── data-code-sio.s ├── data-game-info.s ├── data.s ├── data_66618C.s ├── data_67619C.s ├── data_67829C.s ├── data_dbgfont.s ├── data_mapchangeinfo.s ├── data_textglyphs.s ├── gamedata │ ├── iinfo.h │ ├── jinfo.h │ ├── pinfo.h │ └── terrain_info.h ├── helpboxinfo_data.h ├── rodata.s ├── rodata_1004A4.s ├── rodata_105DD0.s ├── rodata_10F744.s ├── rodata_279E60.s ├── rodata_307544.s ├── rodata_3198C0.s ├── rodata_327254.s ├── rodata_3273E4.s ├── rodata_3278AC.s ├── rodata_icon.s ├── rodata_lib.s ├── rodata_msg.s ├── rodata_trig.s ├── systemlabels_data.h ├── text │ └── color-lut.h └── tileset │ └── anims.h ├── docs ├── DECOMPILING-NOTES.md ├── GLOSSARY.md └── NONMATCHING.md ├── fe6.lds ├── fe6.sha1 ├── include ├── action.h ├── ai.h ├── ai_battle.h ├── ai_data.h ├── ai_decide.h ├── ai_order.h ├── ai_perform.h ├── ai_phase.h ├── ai_script.h ├── ai_unk.h ├── ai_utility.h ├── arena.h ├── armfunc.h ├── asm_gbaio.inc ├── asm_m4a.inc ├── asm_macros.inc ├── attributes.h ├── banim.h ├── banim_ekrbattle.h ├── banim_ekrdragon.h ├── banim_sprite.h ├── battle.h ├── battlepreview.h ├── bm.h ├── bmfx.h ├── bmio.h ├── chapter.h ├── chapterevents.h ├── chapterinfo.h ├── chapterunits.h ├── constants │ ├── banim_pal.h │ ├── chapters.h │ ├── faces.h │ ├── flags.h │ ├── icons.h │ ├── iids.h │ ├── jids.h │ ├── msg.h │ ├── pids.h │ ├── songs.h │ ├── terrains.h │ ├── unitsprites.h │ ├── videoalloc_banim.h │ ├── videoalloc_global.h │ └── videoalloc_wm.h ├── debugmenu.h ├── debugtext.h ├── event.h ├── eventfunctions.h ├── eventinfo.h ├── eventscript.h ├── face.h ├── faction.h ├── gamecontroller.h ├── gamedata.h ├── gba │ ├── defines.h │ ├── gba.h │ └── macro.h ├── gbaio.h ├── gbasram.h ├── gbasvc.h ├── gold.h ├── hardware.h ├── helpbox.h ├── icon.h ├── irq.h ├── item.h ├── itemaction.h ├── itemuse.h ├── m4a.h ├── manim.h ├── map.h ├── mapmenu.h ├── mapselect.h ├── mapui.h ├── mapwork.h ├── masseffect.h ├── menu.h ├── menuinfo.h ├── minimap.h ├── move.h ├── movepath.h ├── msg.h ├── mu.h ├── oam.h ├── playerphase.h ├── prelude.h ├── prepphase.h ├── proc.h ├── random.h ├── save.h ├── save_core.h ├── save_game.h ├── save_multiarena.h ├── save_stats.h ├── save_xmap.h ├── savelayout.h ├── savemenu.h ├── sioerror.h ├── sound.h ├── sprite.h ├── spriteanim.h ├── statscreen.h ├── statusscreen.h ├── subtitlehelp.h ├── supply.h ├── support.h ├── systemlabels.h ├── talk.h ├── targetlist.h ├── text.h ├── trademenu.h ├── trap.h ├── types.h ├── ui.h ├── unit.h ├── unitlistscreen.h ├── unitpanel.h ├── unitrearrange.h ├── unitsprite.h ├── unknown_funcs.h ├── unknown_objects.h ├── unknown_types.h └── util.h ├── src ├── action.c ├── ai_080326C4.c ├── ai_battle.c ├── ai_data.c ├── ai_decide.c ├── ai_order.c ├── ai_perform.c ├── ai_phase.c ├── ai_script.c ├── ai_utility.c ├── arena.c ├── armfunc.s ├── banim_ekrbattle.c ├── banim_ekrlvupfan.c ├── banim_sprite.c ├── battle.c ├── battlepreview.c ├── bm.c ├── bmfx.c ├── bmio.c ├── chapter.c ├── chapterevents.c ├── chapterinfo.c ├── chapterunits.c ├── code_0802B814.c ├── code_sio.c ├── debugmenu.c ├── debugtext.c ├── event.c ├── eventfunctions.c ├── eventinfo.c ├── face.c ├── faction.c ├── gamecontroller.c ├── gamedata.c ├── gbasram.c ├── gold.c ├── hardware.c ├── helpbox.c ├── helpbox_2.c ├── icon.c ├── irq.c ├── item.c ├── itemaction.c ├── itemuse.c ├── m4a.c ├── m4a_1.s ├── main.c ├── manim.c ├── map.c ├── mapmenu.c ├── mapselect.c ├── mapui.c ├── mapwork.c ├── masseffect.c ├── menu.c ├── menuinfo.c ├── minimap.c ├── move.c ├── movepath.c ├── msg.c ├── mu.c ├── oam.c ├── playerphase.c ├── prepmenu.c ├── prepphase.c ├── proc.c ├── ramfunc.c ├── random.c ├── save_core.c ├── save_game.c ├── save_multiarena.c ├── save_stats.c ├── save_xmap.c ├── savemenu.c ├── savemenu_2.c ├── sioerror.c ├── sound.c ├── sprite.c ├── spriteanim.c ├── statscreen.c ├── statusscreen.c ├── subtitlehelp.c ├── supply.c ├── support.c ├── talk.c ├── targetlist.c ├── text.c ├── trademenu.c ├── trap.c ├── ui.c ├── unit.c ├── unitlistscreen.c ├── unitpanel.c ├── unitrearrange.c ├── unitsprite.c └── util.c └── tools ├── install_agbcc.sh ├── scripts ├── asm2casm.py ├── calcrom.pl ├── datasplit.py ├── decompress.py ├── dump-ai-attack-config.py ├── dump-ai-escape-points.py ├── dump-ai-script.py ├── dump-int-array.py ├── dump-mapselects.py ├── dump-menu-items.py ├── dump-menus.py ├── dump-pointers.py ├── dump-proc.py ├── dump-sprite-array.py ├── dump-system-labels.py ├── dump_all_chapter_event_info.sh ├── dump_chapter_event_info.py ├── dump_events.py ├── dump_helpinfo.py ├── dump_iinfo.py ├── dump_jinfo.py ├── dump_move_tables.py ├── dump_one_sprite.py ├── dump_pinfo.py ├── dump_shops.py ├── dump_unitlistpagefield.py ├── extract-bgs.py ├── extract-ts-anims.py ├── fe6db.py ├── find-pointers.py ├── findiwrams.py ├── fix-file-encoding.py ├── msgs!.py ├── rename.sh ├── sjb-decode.py ├── sjb-print.py ├── sjb-tab-dump.py ├── sjb_tab_dump_inl.py ├── symbols.py ├── to-tm-offset.py └── unit_dump.py └── stats ├── calcstats.py ├── calcstats.sh └── upload_stats.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/TODO -------------------------------------------------------------------------------- /asm/arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/asm/arm.s -------------------------------------------------------------------------------- /asm/code-banim.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/asm/code-banim.s -------------------------------------------------------------------------------- /asm/code-sio.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/asm/code-sio.s -------------------------------------------------------------------------------- /asm/code.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/asm/code.s -------------------------------------------------------------------------------- /asm/code_8073548.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/asm/code_8073548.s -------------------------------------------------------------------------------- /asm/code_linker_stubs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/asm/code_linker_stubs.s -------------------------------------------------------------------------------- /asm/crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/asm/crt0.s -------------------------------------------------------------------------------- /asm/gbasyscall.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/asm/gbasyscall.s -------------------------------------------------------------------------------- /asm/include/macro.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/asm/include/macro.inc -------------------------------------------------------------------------------- /asmdiff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/asmdiff.sh -------------------------------------------------------------------------------- /bindiff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/bindiff.sh -------------------------------------------------------------------------------- /data/arena_jids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/arena_jids.h -------------------------------------------------------------------------------- /data/chapterevents/unk_0866AAF8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapterevents/unk_0866AAF8.h -------------------------------------------------------------------------------- /data/chapters/chapter1/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter1/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/chapter1/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter1/eventscript.h -------------------------------------------------------------------------------- /data/chapters/chapter10_a/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter10_a/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/chapter10_a/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter10_a/eventscript.h -------------------------------------------------------------------------------- /data/chapters/chapter10_b/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter10_b/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/chapter10_b/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter10_b/eventscript.h -------------------------------------------------------------------------------- /data/chapters/chapter11_a/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter11_a/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/chapter11_a/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter11_a/eventscript.h -------------------------------------------------------------------------------- /data/chapters/chapter11_b/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter11_b/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/chapter11_b/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter11_b/eventscript.h -------------------------------------------------------------------------------- /data/chapters/chapter12/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter12/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/chapter12/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter12/eventscript.h -------------------------------------------------------------------------------- /data/chapters/chapter12x/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter12x/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/chapter12x/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter12x/eventscript.h -------------------------------------------------------------------------------- /data/chapters/chapter13/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter13/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/chapter13/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter13/eventscript.h -------------------------------------------------------------------------------- /data/chapters/chapter14/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter14/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/chapter14/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter14/eventscript.h -------------------------------------------------------------------------------- /data/chapters/chapter14x/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter14x/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/chapter14x/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter14x/eventscript.h -------------------------------------------------------------------------------- /data/chapters/chapter15/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter15/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/chapter15/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter15/eventscript.h -------------------------------------------------------------------------------- /data/chapters/chapter16/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter16/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/chapter16/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter16/eventscript.h -------------------------------------------------------------------------------- /data/chapters/chapter16x/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter16x/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/chapter16x/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter16x/eventscript.h -------------------------------------------------------------------------------- /data/chapters/chapter17_i/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter17_i/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/chapter17_i/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter17_i/eventscript.h -------------------------------------------------------------------------------- /data/chapters/chapter17_s/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter17_s/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/chapter17_s/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter17_s/eventscript.h -------------------------------------------------------------------------------- /data/chapters/chapter18_i/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter18_i/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/chapter18_i/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter18_i/eventscript.h -------------------------------------------------------------------------------- /data/chapters/chapter18_s/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter18_s/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/chapter18_s/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter18_s/eventscript.h -------------------------------------------------------------------------------- /data/chapters/chapter19_i/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter19_i/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/chapter19_i/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter19_i/eventscript.h -------------------------------------------------------------------------------- /data/chapters/chapter19_s/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter19_s/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/chapter19_s/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter19_s/eventscript.h -------------------------------------------------------------------------------- /data/chapters/chapter2/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter2/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/chapter2/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter2/eventscript.h -------------------------------------------------------------------------------- /data/chapters/chapter20_i/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter20_i/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/chapter20_i/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter20_i/eventscript.h -------------------------------------------------------------------------------- /data/chapters/chapter20_s/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter20_s/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/chapter20_s/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter20_s/eventscript.h -------------------------------------------------------------------------------- /data/chapters/chapter20x_i/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter20x_i/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/chapter20x_i/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter20x_i/eventscript.h -------------------------------------------------------------------------------- /data/chapters/chapter20x_s/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter20x_s/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/chapter20x_s/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter20x_s/eventscript.h -------------------------------------------------------------------------------- /data/chapters/chapter21/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter21/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/chapter21/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter21/eventscript.h -------------------------------------------------------------------------------- /data/chapters/chapter21x/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter21x/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/chapter21x/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter21x/eventscript.h -------------------------------------------------------------------------------- /data/chapters/chapter22/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter22/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/chapter22/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter22/eventscript.h -------------------------------------------------------------------------------- /data/chapters/chapter23/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter23/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/chapter23/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter23/eventscript.h -------------------------------------------------------------------------------- /data/chapters/chapter24/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter24/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/chapter24/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter24/eventscript.h -------------------------------------------------------------------------------- /data/chapters/chapter3/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter3/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/chapter3/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter3/eventscript.h -------------------------------------------------------------------------------- /data/chapters/chapter4/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter4/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/chapter4/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter4/eventscript.h -------------------------------------------------------------------------------- /data/chapters/chapter5/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter5/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/chapter5/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter5/eventscript.h -------------------------------------------------------------------------------- /data/chapters/chapter6/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter6/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/chapter6/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter6/eventscript.h -------------------------------------------------------------------------------- /data/chapters/chapter7/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter7/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/chapter7/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter7/eventscript.h -------------------------------------------------------------------------------- /data/chapters/chapter8/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter8/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/chapter8/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter8/eventscript.h -------------------------------------------------------------------------------- /data/chapters/chapter8x/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter8x/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/chapter8x/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter8x/eventscript.h -------------------------------------------------------------------------------- /data/chapters/chapter9/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter9/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/chapter9/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/chapter9/eventscript.h -------------------------------------------------------------------------------- /data/chapters/final/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/final/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/final/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/final/eventscript.h -------------------------------------------------------------------------------- /data/chapters/trial_a/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/trial_a/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/trial_a/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/trial_a/eventscript.h -------------------------------------------------------------------------------- /data/chapters/trial_b/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/trial_b/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/trial_b/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/trial_b/eventscript.h -------------------------------------------------------------------------------- /data/chapters/trial_c/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/trial_c/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/trial_c/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/trial_c/eventscript.h -------------------------------------------------------------------------------- /data/chapters/trial_d/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/trial_d/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/trial_d/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/trial_d/eventscript.h -------------------------------------------------------------------------------- /data/chapters/trial_e/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/trial_e/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/trial_e/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/trial_e/eventscript.h -------------------------------------------------------------------------------- /data/chapters/tutorial/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/tutorial/eventinfo.h -------------------------------------------------------------------------------- /data/chapters/tutorial/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapters/tutorial/eventscript.h -------------------------------------------------------------------------------- /data/chaptershops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chaptershops.h -------------------------------------------------------------------------------- /data/chapterunits_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/chapterunits_data.h -------------------------------------------------------------------------------- /data/data-banim.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/data-banim.s -------------------------------------------------------------------------------- /data/data-code-banim.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/data-code-banim.s -------------------------------------------------------------------------------- /data/data-code-mu.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/data-code-mu.s -------------------------------------------------------------------------------- /data/data-code-sio.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/data-code-sio.s -------------------------------------------------------------------------------- /data/data-game-info.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/data-game-info.s -------------------------------------------------------------------------------- /data/data.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/data.s -------------------------------------------------------------------------------- /data/data_66618C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/data_66618C.s -------------------------------------------------------------------------------- /data/data_67619C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/data_67619C.s -------------------------------------------------------------------------------- /data/data_67829C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/data_67829C.s -------------------------------------------------------------------------------- /data/data_dbgfont.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/data_dbgfont.s -------------------------------------------------------------------------------- /data/data_mapchangeinfo.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/data_mapchangeinfo.s -------------------------------------------------------------------------------- /data/data_textglyphs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/data_textglyphs.s -------------------------------------------------------------------------------- /data/gamedata/iinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/gamedata/iinfo.h -------------------------------------------------------------------------------- /data/gamedata/jinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/gamedata/jinfo.h -------------------------------------------------------------------------------- /data/gamedata/pinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/gamedata/pinfo.h -------------------------------------------------------------------------------- /data/gamedata/terrain_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/gamedata/terrain_info.h -------------------------------------------------------------------------------- /data/helpboxinfo_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/helpboxinfo_data.h -------------------------------------------------------------------------------- /data/rodata.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/rodata.s -------------------------------------------------------------------------------- /data/rodata_1004A4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/rodata_1004A4.s -------------------------------------------------------------------------------- /data/rodata_105DD0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/rodata_105DD0.s -------------------------------------------------------------------------------- /data/rodata_10F744.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/rodata_10F744.s -------------------------------------------------------------------------------- /data/rodata_279E60.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/rodata_279E60.s -------------------------------------------------------------------------------- /data/rodata_307544.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/rodata_307544.s -------------------------------------------------------------------------------- /data/rodata_3198C0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/rodata_3198C0.s -------------------------------------------------------------------------------- /data/rodata_327254.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/rodata_327254.s -------------------------------------------------------------------------------- /data/rodata_3273E4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/rodata_3273E4.s -------------------------------------------------------------------------------- /data/rodata_3278AC.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/rodata_3278AC.s -------------------------------------------------------------------------------- /data/rodata_icon.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/rodata_icon.s -------------------------------------------------------------------------------- /data/rodata_lib.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/rodata_lib.s -------------------------------------------------------------------------------- /data/rodata_msg.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/rodata_msg.s -------------------------------------------------------------------------------- /data/rodata_trig.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/rodata_trig.s -------------------------------------------------------------------------------- /data/systemlabels_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/systemlabels_data.h -------------------------------------------------------------------------------- /data/text/color-lut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/text/color-lut.h -------------------------------------------------------------------------------- /data/tileset/anims.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/data/tileset/anims.h -------------------------------------------------------------------------------- /docs/DECOMPILING-NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/docs/DECOMPILING-NOTES.md -------------------------------------------------------------------------------- /docs/GLOSSARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/docs/GLOSSARY.md -------------------------------------------------------------------------------- /docs/NONMATCHING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/docs/NONMATCHING.md -------------------------------------------------------------------------------- /fe6.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/fe6.lds -------------------------------------------------------------------------------- /fe6.sha1: -------------------------------------------------------------------------------- 1 | a57095da867de4d585c33d4394712986245fe6ca fe6.gba 2 | -------------------------------------------------------------------------------- /include/action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/action.h -------------------------------------------------------------------------------- /include/ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/ai.h -------------------------------------------------------------------------------- /include/ai_battle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/ai_battle.h -------------------------------------------------------------------------------- /include/ai_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/ai_data.h -------------------------------------------------------------------------------- /include/ai_decide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/ai_decide.h -------------------------------------------------------------------------------- /include/ai_order.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/ai_order.h -------------------------------------------------------------------------------- /include/ai_perform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/ai_perform.h -------------------------------------------------------------------------------- /include/ai_phase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/ai_phase.h -------------------------------------------------------------------------------- /include/ai_script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/ai_script.h -------------------------------------------------------------------------------- /include/ai_unk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/ai_unk.h -------------------------------------------------------------------------------- /include/ai_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/ai_utility.h -------------------------------------------------------------------------------- /include/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/arena.h -------------------------------------------------------------------------------- /include/armfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/armfunc.h -------------------------------------------------------------------------------- /include/asm_gbaio.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/asm_gbaio.inc -------------------------------------------------------------------------------- /include/asm_m4a.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/asm_m4a.inc -------------------------------------------------------------------------------- /include/asm_macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/asm_macros.inc -------------------------------------------------------------------------------- /include/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/attributes.h -------------------------------------------------------------------------------- /include/banim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/banim.h -------------------------------------------------------------------------------- /include/banim_ekrbattle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/banim_ekrbattle.h -------------------------------------------------------------------------------- /include/banim_ekrdragon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/banim_ekrdragon.h -------------------------------------------------------------------------------- /include/banim_sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/banim_sprite.h -------------------------------------------------------------------------------- /include/battle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/battle.h -------------------------------------------------------------------------------- /include/battlepreview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/battlepreview.h -------------------------------------------------------------------------------- /include/bm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/bm.h -------------------------------------------------------------------------------- /include/bmfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/bmfx.h -------------------------------------------------------------------------------- /include/bmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/bmio.h -------------------------------------------------------------------------------- /include/chapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/chapter.h -------------------------------------------------------------------------------- /include/chapterevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/chapterevents.h -------------------------------------------------------------------------------- /include/chapterinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/chapterinfo.h -------------------------------------------------------------------------------- /include/chapterunits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/chapterunits.h -------------------------------------------------------------------------------- /include/constants/banim_pal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/constants/banim_pal.h -------------------------------------------------------------------------------- /include/constants/chapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/constants/chapters.h -------------------------------------------------------------------------------- /include/constants/faces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/constants/faces.h -------------------------------------------------------------------------------- /include/constants/flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/constants/flags.h -------------------------------------------------------------------------------- /include/constants/icons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/constants/icons.h -------------------------------------------------------------------------------- /include/constants/iids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/constants/iids.h -------------------------------------------------------------------------------- /include/constants/jids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/constants/jids.h -------------------------------------------------------------------------------- /include/constants/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/constants/msg.h -------------------------------------------------------------------------------- /include/constants/pids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/constants/pids.h -------------------------------------------------------------------------------- /include/constants/songs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/constants/songs.h -------------------------------------------------------------------------------- /include/constants/terrains.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/constants/terrains.h -------------------------------------------------------------------------------- /include/constants/unitsprites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/constants/unitsprites.h -------------------------------------------------------------------------------- /include/constants/videoalloc_banim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/constants/videoalloc_banim.h -------------------------------------------------------------------------------- /include/constants/videoalloc_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/constants/videoalloc_global.h -------------------------------------------------------------------------------- /include/constants/videoalloc_wm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/constants/videoalloc_wm.h -------------------------------------------------------------------------------- /include/debugmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/debugmenu.h -------------------------------------------------------------------------------- /include/debugtext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/debugtext.h -------------------------------------------------------------------------------- /include/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/event.h -------------------------------------------------------------------------------- /include/eventfunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/eventfunctions.h -------------------------------------------------------------------------------- /include/eventinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/eventinfo.h -------------------------------------------------------------------------------- /include/eventscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/eventscript.h -------------------------------------------------------------------------------- /include/face.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/face.h -------------------------------------------------------------------------------- /include/faction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/faction.h -------------------------------------------------------------------------------- /include/gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/gamecontroller.h -------------------------------------------------------------------------------- /include/gamedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/gamedata.h -------------------------------------------------------------------------------- /include/gba/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/gba/defines.h -------------------------------------------------------------------------------- /include/gba/gba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/gba/gba.h -------------------------------------------------------------------------------- /include/gba/macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/gba/macro.h -------------------------------------------------------------------------------- /include/gbaio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/gbaio.h -------------------------------------------------------------------------------- /include/gbasram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/gbasram.h -------------------------------------------------------------------------------- /include/gbasvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/gbasvc.h -------------------------------------------------------------------------------- /include/gold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/gold.h -------------------------------------------------------------------------------- /include/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/hardware.h -------------------------------------------------------------------------------- /include/helpbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/helpbox.h -------------------------------------------------------------------------------- /include/icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/icon.h -------------------------------------------------------------------------------- /include/irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/irq.h -------------------------------------------------------------------------------- /include/item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/item.h -------------------------------------------------------------------------------- /include/itemaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/itemaction.h -------------------------------------------------------------------------------- /include/itemuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/itemuse.h -------------------------------------------------------------------------------- /include/m4a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/m4a.h -------------------------------------------------------------------------------- /include/manim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/manim.h -------------------------------------------------------------------------------- /include/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/map.h -------------------------------------------------------------------------------- /include/mapmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/mapmenu.h -------------------------------------------------------------------------------- /include/mapselect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/mapselect.h -------------------------------------------------------------------------------- /include/mapui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/mapui.h -------------------------------------------------------------------------------- /include/mapwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/mapwork.h -------------------------------------------------------------------------------- /include/masseffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/masseffect.h -------------------------------------------------------------------------------- /include/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/menu.h -------------------------------------------------------------------------------- /include/menuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/menuinfo.h -------------------------------------------------------------------------------- /include/minimap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/minimap.h -------------------------------------------------------------------------------- /include/move.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/move.h -------------------------------------------------------------------------------- /include/movepath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/movepath.h -------------------------------------------------------------------------------- /include/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/msg.h -------------------------------------------------------------------------------- /include/mu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/mu.h -------------------------------------------------------------------------------- /include/oam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/oam.h -------------------------------------------------------------------------------- /include/playerphase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/playerphase.h -------------------------------------------------------------------------------- /include/prelude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/prelude.h -------------------------------------------------------------------------------- /include/prepphase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/prepphase.h -------------------------------------------------------------------------------- /include/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/proc.h -------------------------------------------------------------------------------- /include/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/random.h -------------------------------------------------------------------------------- /include/save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/save.h -------------------------------------------------------------------------------- /include/save_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/save_core.h -------------------------------------------------------------------------------- /include/save_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/save_game.h -------------------------------------------------------------------------------- /include/save_multiarena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/save_multiarena.h -------------------------------------------------------------------------------- /include/save_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/save_stats.h -------------------------------------------------------------------------------- /include/save_xmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/save_xmap.h -------------------------------------------------------------------------------- /include/savelayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/savelayout.h -------------------------------------------------------------------------------- /include/savemenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/savemenu.h -------------------------------------------------------------------------------- /include/sioerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/sioerror.h -------------------------------------------------------------------------------- /include/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/sound.h -------------------------------------------------------------------------------- /include/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/sprite.h -------------------------------------------------------------------------------- /include/spriteanim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/spriteanim.h -------------------------------------------------------------------------------- /include/statscreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/statscreen.h -------------------------------------------------------------------------------- /include/statusscreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/statusscreen.h -------------------------------------------------------------------------------- /include/subtitlehelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/subtitlehelp.h -------------------------------------------------------------------------------- /include/supply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/supply.h -------------------------------------------------------------------------------- /include/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/support.h -------------------------------------------------------------------------------- /include/systemlabels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/systemlabels.h -------------------------------------------------------------------------------- /include/talk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/talk.h -------------------------------------------------------------------------------- /include/targetlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/targetlist.h -------------------------------------------------------------------------------- /include/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/text.h -------------------------------------------------------------------------------- /include/trademenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/trademenu.h -------------------------------------------------------------------------------- /include/trap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/trap.h -------------------------------------------------------------------------------- /include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/types.h -------------------------------------------------------------------------------- /include/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/ui.h -------------------------------------------------------------------------------- /include/unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/unit.h -------------------------------------------------------------------------------- /include/unitlistscreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/unitlistscreen.h -------------------------------------------------------------------------------- /include/unitpanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/unitpanel.h -------------------------------------------------------------------------------- /include/unitrearrange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/unitrearrange.h -------------------------------------------------------------------------------- /include/unitsprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/unitsprite.h -------------------------------------------------------------------------------- /include/unknown_funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/unknown_funcs.h -------------------------------------------------------------------------------- /include/unknown_objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/unknown_objects.h -------------------------------------------------------------------------------- /include/unknown_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/unknown_types.h -------------------------------------------------------------------------------- /include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/include/util.h -------------------------------------------------------------------------------- /src/action.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/action.c -------------------------------------------------------------------------------- /src/ai_080326C4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/ai_080326C4.c -------------------------------------------------------------------------------- /src/ai_battle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/ai_battle.c -------------------------------------------------------------------------------- /src/ai_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/ai_data.c -------------------------------------------------------------------------------- /src/ai_decide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/ai_decide.c -------------------------------------------------------------------------------- /src/ai_order.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/ai_order.c -------------------------------------------------------------------------------- /src/ai_perform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/ai_perform.c -------------------------------------------------------------------------------- /src/ai_phase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/ai_phase.c -------------------------------------------------------------------------------- /src/ai_script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/ai_script.c -------------------------------------------------------------------------------- /src/ai_utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/ai_utility.c -------------------------------------------------------------------------------- /src/arena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/arena.c -------------------------------------------------------------------------------- /src/armfunc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/armfunc.s -------------------------------------------------------------------------------- /src/banim_ekrbattle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/banim_ekrbattle.c -------------------------------------------------------------------------------- /src/banim_ekrlvupfan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/banim_ekrlvupfan.c -------------------------------------------------------------------------------- /src/banim_sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/banim_sprite.c -------------------------------------------------------------------------------- /src/battle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/battle.c -------------------------------------------------------------------------------- /src/battlepreview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/battlepreview.c -------------------------------------------------------------------------------- /src/bm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/bm.c -------------------------------------------------------------------------------- /src/bmfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/bmfx.c -------------------------------------------------------------------------------- /src/bmio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/bmio.c -------------------------------------------------------------------------------- /src/chapter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/chapter.c -------------------------------------------------------------------------------- /src/chapterevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/chapterevents.c -------------------------------------------------------------------------------- /src/chapterinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/chapterinfo.c -------------------------------------------------------------------------------- /src/chapterunits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/chapterunits.c -------------------------------------------------------------------------------- /src/code_0802B814.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/code_0802B814.c -------------------------------------------------------------------------------- /src/code_sio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/code_sio.c -------------------------------------------------------------------------------- /src/debugmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/debugmenu.c -------------------------------------------------------------------------------- /src/debugtext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/debugtext.c -------------------------------------------------------------------------------- /src/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/event.c -------------------------------------------------------------------------------- /src/eventfunctions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/eventfunctions.c -------------------------------------------------------------------------------- /src/eventinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/eventinfo.c -------------------------------------------------------------------------------- /src/face.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/face.c -------------------------------------------------------------------------------- /src/faction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/faction.c -------------------------------------------------------------------------------- /src/gamecontroller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/gamecontroller.c -------------------------------------------------------------------------------- /src/gamedata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/gamedata.c -------------------------------------------------------------------------------- /src/gbasram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/gbasram.c -------------------------------------------------------------------------------- /src/gold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/gold.c -------------------------------------------------------------------------------- /src/hardware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/hardware.c -------------------------------------------------------------------------------- /src/helpbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/helpbox.c -------------------------------------------------------------------------------- /src/helpbox_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/helpbox_2.c -------------------------------------------------------------------------------- /src/icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/icon.c -------------------------------------------------------------------------------- /src/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/irq.c -------------------------------------------------------------------------------- /src/item.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/item.c -------------------------------------------------------------------------------- /src/itemaction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/itemaction.c -------------------------------------------------------------------------------- /src/itemuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/itemuse.c -------------------------------------------------------------------------------- /src/m4a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/m4a.c -------------------------------------------------------------------------------- /src/m4a_1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/m4a_1.s -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/main.c -------------------------------------------------------------------------------- /src/manim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/manim.c -------------------------------------------------------------------------------- /src/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/map.c -------------------------------------------------------------------------------- /src/mapmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/mapmenu.c -------------------------------------------------------------------------------- /src/mapselect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/mapselect.c -------------------------------------------------------------------------------- /src/mapui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/mapui.c -------------------------------------------------------------------------------- /src/mapwork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/mapwork.c -------------------------------------------------------------------------------- /src/masseffect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/masseffect.c -------------------------------------------------------------------------------- /src/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/menu.c -------------------------------------------------------------------------------- /src/menuinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/menuinfo.c -------------------------------------------------------------------------------- /src/minimap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/minimap.c -------------------------------------------------------------------------------- /src/move.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/move.c -------------------------------------------------------------------------------- /src/movepath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/movepath.c -------------------------------------------------------------------------------- /src/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/msg.c -------------------------------------------------------------------------------- /src/mu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/mu.c -------------------------------------------------------------------------------- /src/oam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/oam.c -------------------------------------------------------------------------------- /src/playerphase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/playerphase.c -------------------------------------------------------------------------------- /src/prepmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/prepmenu.c -------------------------------------------------------------------------------- /src/prepphase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/prepphase.c -------------------------------------------------------------------------------- /src/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/proc.c -------------------------------------------------------------------------------- /src/ramfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/ramfunc.c -------------------------------------------------------------------------------- /src/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/random.c -------------------------------------------------------------------------------- /src/save_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/save_core.c -------------------------------------------------------------------------------- /src/save_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/save_game.c -------------------------------------------------------------------------------- /src/save_multiarena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/save_multiarena.c -------------------------------------------------------------------------------- /src/save_stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/save_stats.c -------------------------------------------------------------------------------- /src/save_xmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/save_xmap.c -------------------------------------------------------------------------------- /src/savemenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/savemenu.c -------------------------------------------------------------------------------- /src/savemenu_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/savemenu_2.c -------------------------------------------------------------------------------- /src/sioerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/sioerror.c -------------------------------------------------------------------------------- /src/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/sound.c -------------------------------------------------------------------------------- /src/sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/sprite.c -------------------------------------------------------------------------------- /src/spriteanim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/spriteanim.c -------------------------------------------------------------------------------- /src/statscreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/statscreen.c -------------------------------------------------------------------------------- /src/statusscreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/statusscreen.c -------------------------------------------------------------------------------- /src/subtitlehelp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/subtitlehelp.c -------------------------------------------------------------------------------- /src/supply.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/supply.c -------------------------------------------------------------------------------- /src/support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/support.c -------------------------------------------------------------------------------- /src/talk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/talk.c -------------------------------------------------------------------------------- /src/targetlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/targetlist.c -------------------------------------------------------------------------------- /src/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/text.c -------------------------------------------------------------------------------- /src/trademenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/trademenu.c -------------------------------------------------------------------------------- /src/trap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/trap.c -------------------------------------------------------------------------------- /src/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/ui.c -------------------------------------------------------------------------------- /src/unit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/unit.c -------------------------------------------------------------------------------- /src/unitlistscreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/unitlistscreen.c -------------------------------------------------------------------------------- /src/unitpanel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/unitpanel.c -------------------------------------------------------------------------------- /src/unitrearrange.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/unitrearrange.c -------------------------------------------------------------------------------- /src/unitsprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/unitsprite.c -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/src/util.c -------------------------------------------------------------------------------- /tools/install_agbcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/install_agbcc.sh -------------------------------------------------------------------------------- /tools/scripts/asm2casm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/asm2casm.py -------------------------------------------------------------------------------- /tools/scripts/calcrom.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/calcrom.pl -------------------------------------------------------------------------------- /tools/scripts/datasplit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/datasplit.py -------------------------------------------------------------------------------- /tools/scripts/decompress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/decompress.py -------------------------------------------------------------------------------- /tools/scripts/dump-ai-attack-config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/dump-ai-attack-config.py -------------------------------------------------------------------------------- /tools/scripts/dump-ai-escape-points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/dump-ai-escape-points.py -------------------------------------------------------------------------------- /tools/scripts/dump-ai-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/dump-ai-script.py -------------------------------------------------------------------------------- /tools/scripts/dump-int-array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/dump-int-array.py -------------------------------------------------------------------------------- /tools/scripts/dump-mapselects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/dump-mapselects.py -------------------------------------------------------------------------------- /tools/scripts/dump-menu-items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/dump-menu-items.py -------------------------------------------------------------------------------- /tools/scripts/dump-menus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/dump-menus.py -------------------------------------------------------------------------------- /tools/scripts/dump-pointers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/dump-pointers.py -------------------------------------------------------------------------------- /tools/scripts/dump-proc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/dump-proc.py -------------------------------------------------------------------------------- /tools/scripts/dump-sprite-array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/dump-sprite-array.py -------------------------------------------------------------------------------- /tools/scripts/dump-system-labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/dump-system-labels.py -------------------------------------------------------------------------------- /tools/scripts/dump_all_chapter_event_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/dump_all_chapter_event_info.sh -------------------------------------------------------------------------------- /tools/scripts/dump_chapter_event_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/dump_chapter_event_info.py -------------------------------------------------------------------------------- /tools/scripts/dump_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/dump_events.py -------------------------------------------------------------------------------- /tools/scripts/dump_helpinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/dump_helpinfo.py -------------------------------------------------------------------------------- /tools/scripts/dump_iinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/dump_iinfo.py -------------------------------------------------------------------------------- /tools/scripts/dump_jinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/dump_jinfo.py -------------------------------------------------------------------------------- /tools/scripts/dump_move_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/dump_move_tables.py -------------------------------------------------------------------------------- /tools/scripts/dump_one_sprite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/dump_one_sprite.py -------------------------------------------------------------------------------- /tools/scripts/dump_pinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/dump_pinfo.py -------------------------------------------------------------------------------- /tools/scripts/dump_shops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/dump_shops.py -------------------------------------------------------------------------------- /tools/scripts/dump_unitlistpagefield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/dump_unitlistpagefield.py -------------------------------------------------------------------------------- /tools/scripts/extract-bgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/extract-bgs.py -------------------------------------------------------------------------------- /tools/scripts/extract-ts-anims.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/extract-ts-anims.py -------------------------------------------------------------------------------- /tools/scripts/fe6db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/fe6db.py -------------------------------------------------------------------------------- /tools/scripts/find-pointers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/find-pointers.py -------------------------------------------------------------------------------- /tools/scripts/findiwrams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/findiwrams.py -------------------------------------------------------------------------------- /tools/scripts/fix-file-encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/fix-file-encoding.py -------------------------------------------------------------------------------- /tools/scripts/msgs!.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/msgs!.py -------------------------------------------------------------------------------- /tools/scripts/rename.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/rename.sh -------------------------------------------------------------------------------- /tools/scripts/sjb-decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/sjb-decode.py -------------------------------------------------------------------------------- /tools/scripts/sjb-print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/sjb-print.py -------------------------------------------------------------------------------- /tools/scripts/sjb-tab-dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/sjb-tab-dump.py -------------------------------------------------------------------------------- /tools/scripts/sjb_tab_dump_inl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/sjb_tab_dump_inl.py -------------------------------------------------------------------------------- /tools/scripts/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/symbols.py -------------------------------------------------------------------------------- /tools/scripts/to-tm-offset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/to-tm-offset.py -------------------------------------------------------------------------------- /tools/scripts/unit_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/scripts/unit_dump.py -------------------------------------------------------------------------------- /tools/stats/calcstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/stats/calcstats.py -------------------------------------------------------------------------------- /tools/stats/calcstats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/stats/calcstats.sh -------------------------------------------------------------------------------- /tools/stats/upload_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe6/HEAD/tools/stats/upload_stats.py --------------------------------------------------------------------------------