├── .gitignore ├── audio └── FlatOutLies.mod ├── celeste.code-workspace ├── celeste.pxprj ├── dialogue ├── prologue_text.txt ├── prologue_text_st.txt ├── text_ch1.txt ├── text_ch2end.txt ├── text_ch2st1.txt └── text_ch2st2.txt ├── gb music ├── dream.ftm ├── forsaken.txt └── strawb_jingle.ftm ├── levels ├── _packs │ ├── dream.txt │ ├── dreamB.txt │ ├── forsaken.txt │ ├── forsakenB.txt │ └── prologue.txt ├── dream │ ├── final.txt │ ├── lvl1.txt │ ├── lvl10.txt │ ├── lvl11.txt │ ├── lvl11_berry.txt │ ├── lvl12.txt │ ├── lvl13.txt │ ├── lvl14.txt │ ├── lvl14h.txt │ ├── lvl15.txt │ ├── lvl16.txt │ ├── lvl17.txt │ ├── lvl18.txt │ ├── lvl2.txt │ ├── lvl3.txt │ ├── lvl4.txt │ ├── lvl4_winged.txt │ ├── lvl4c.txt │ ├── lvl5.txt │ ├── lvl6.txt │ ├── lvl6s.txt │ ├── lvl6t.txt │ ├── lvl7.txt │ ├── lvl7s.txt │ ├── lvl8.txt │ └── lvl9.txt ├── dreamB │ ├── final.txt │ ├── lvl1.txt │ ├── lvl10.txt │ ├── lvl11.txt │ ├── lvl12.txt │ ├── lvl13.txt │ ├── lvl14.txt │ ├── lvl15.txt │ ├── lvl16.txt │ ├── lvl17.txt │ ├── lvl2.txt │ ├── lvl3.txt │ ├── lvl4.txt │ ├── lvl5.txt │ ├── lvl6.txt │ ├── lvl7.txt │ ├── lvl8.txt │ └── lvl9.txt ├── forsaken │ ├── final.txt │ ├── lvl_a1.txt │ ├── lvl_a1_s.txt │ ├── lvl_a2.txt │ ├── lvl_a2s.txt │ ├── lvl_a3.txt │ ├── lvl_a4.txt │ ├── lvl_a4s.txt │ ├── lvl_a4s2.txt │ ├── lvl_a5.txt │ ├── lvl_a6.txt │ ├── lvl_a6s.txt │ ├── lvl_a7.txt │ ├── lvl_a8.txt │ ├── lvl_a9.txt │ ├── lvl_a9s.txt │ ├── lvl_b1.txt │ ├── lvl_b2.txt │ ├── lvl_b3.txt │ ├── lvl_b4.txt │ ├── lvl_b5.txt │ ├── lvl_b6.txt │ ├── lvl_b6c.txt │ ├── lvl_b7.txt │ └── lvl_b8.txt ├── forsakenB │ ├── lvl_a1.txt │ ├── lvl_a10.txt │ ├── lvl_a11.txt │ ├── lvl_a1_s.txt │ ├── lvl_a2.txt │ ├── lvl_a3.txt │ ├── lvl_a4.txt │ ├── lvl_a5.txt │ ├── lvl_a6.txt │ ├── lvl_a7.txt │ ├── lvl_a8.txt │ └── lvl_a9.txt ├── meta_level.json └── prologue │ ├── final.txt │ ├── lvl1 - backup.txt │ ├── lvl1.txt │ ├── lvl1s.txt │ ├── lvl2.txt │ ├── lvl3.txt │ ├── lvl4.txt │ ├── lvl5.txt │ ├── lvl6.txt │ ├── lvl7.txt │ └── lvl8.txt ├── old versions ├── Celeste Demo.gba ├── Climbing.gba ├── DreamDash.gba ├── celeste but bumpier.gba ├── even_better.gba ├── feeling real.gba ├── firsthomebrew.gba └── practice.gba └── source ├── char.c ├── char.h ├── engine.c ├── engine.h ├── entity_func.h ├── game_data.c ├── game_data.h ├── global_vars.c ├── global_vars.h ├── level_handler.c ├── level_handler.h ├── mesh_render.arm.c ├── mesh_render.h ├── mesh_render.s ├── save_handler.c ├── save_handler.h └── strawb.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/.gitignore -------------------------------------------------------------------------------- /audio/FlatOutLies.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/audio/FlatOutLies.mod -------------------------------------------------------------------------------- /celeste.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/celeste.code-workspace -------------------------------------------------------------------------------- /celeste.pxprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/celeste.pxprj -------------------------------------------------------------------------------- /dialogue/prologue_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/dialogue/prologue_text.txt -------------------------------------------------------------------------------- /dialogue/prologue_text_st.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/dialogue/prologue_text_st.txt -------------------------------------------------------------------------------- /dialogue/text_ch1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/dialogue/text_ch1.txt -------------------------------------------------------------------------------- /dialogue/text_ch2end.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/dialogue/text_ch2end.txt -------------------------------------------------------------------------------- /dialogue/text_ch2st1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/dialogue/text_ch2st1.txt -------------------------------------------------------------------------------- /dialogue/text_ch2st2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/dialogue/text_ch2st2.txt -------------------------------------------------------------------------------- /gb music/dream.ftm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/gb music/dream.ftm -------------------------------------------------------------------------------- /gb music/forsaken.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/gb music/forsaken.txt -------------------------------------------------------------------------------- /gb music/strawb_jingle.ftm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/gb music/strawb_jingle.ftm -------------------------------------------------------------------------------- /levels/_packs/dream.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/_packs/dream.txt -------------------------------------------------------------------------------- /levels/_packs/dreamB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/_packs/dreamB.txt -------------------------------------------------------------------------------- /levels/_packs/forsaken.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/_packs/forsaken.txt -------------------------------------------------------------------------------- /levels/_packs/forsakenB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/_packs/forsakenB.txt -------------------------------------------------------------------------------- /levels/_packs/prologue.txt: -------------------------------------------------------------------------------- 1 | prologue/lvl1 2 | -------------------------------------------------------------------------------- /levels/dream/final.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dream/final.txt -------------------------------------------------------------------------------- /levels/dream/lvl1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dream/lvl1.txt -------------------------------------------------------------------------------- /levels/dream/lvl10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dream/lvl10.txt -------------------------------------------------------------------------------- /levels/dream/lvl11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dream/lvl11.txt -------------------------------------------------------------------------------- /levels/dream/lvl11_berry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dream/lvl11_berry.txt -------------------------------------------------------------------------------- /levels/dream/lvl12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dream/lvl12.txt -------------------------------------------------------------------------------- /levels/dream/lvl13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dream/lvl13.txt -------------------------------------------------------------------------------- /levels/dream/lvl14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dream/lvl14.txt -------------------------------------------------------------------------------- /levels/dream/lvl14h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dream/lvl14h.txt -------------------------------------------------------------------------------- /levels/dream/lvl15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dream/lvl15.txt -------------------------------------------------------------------------------- /levels/dream/lvl16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dream/lvl16.txt -------------------------------------------------------------------------------- /levels/dream/lvl17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dream/lvl17.txt -------------------------------------------------------------------------------- /levels/dream/lvl18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dream/lvl18.txt -------------------------------------------------------------------------------- /levels/dream/lvl2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dream/lvl2.txt -------------------------------------------------------------------------------- /levels/dream/lvl3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dream/lvl3.txt -------------------------------------------------------------------------------- /levels/dream/lvl4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dream/lvl4.txt -------------------------------------------------------------------------------- /levels/dream/lvl4_winged.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dream/lvl4_winged.txt -------------------------------------------------------------------------------- /levels/dream/lvl4c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dream/lvl4c.txt -------------------------------------------------------------------------------- /levels/dream/lvl5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dream/lvl5.txt -------------------------------------------------------------------------------- /levels/dream/lvl6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dream/lvl6.txt -------------------------------------------------------------------------------- /levels/dream/lvl6s.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dream/lvl6s.txt -------------------------------------------------------------------------------- /levels/dream/lvl6t.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dream/lvl6t.txt -------------------------------------------------------------------------------- /levels/dream/lvl7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dream/lvl7.txt -------------------------------------------------------------------------------- /levels/dream/lvl7s.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dream/lvl7s.txt -------------------------------------------------------------------------------- /levels/dream/lvl8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dream/lvl8.txt -------------------------------------------------------------------------------- /levels/dream/lvl9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dream/lvl9.txt -------------------------------------------------------------------------------- /levels/dreamB/final.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dreamB/final.txt -------------------------------------------------------------------------------- /levels/dreamB/lvl1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dreamB/lvl1.txt -------------------------------------------------------------------------------- /levels/dreamB/lvl10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dreamB/lvl10.txt -------------------------------------------------------------------------------- /levels/dreamB/lvl11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dreamB/lvl11.txt -------------------------------------------------------------------------------- /levels/dreamB/lvl12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dreamB/lvl12.txt -------------------------------------------------------------------------------- /levels/dreamB/lvl13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dreamB/lvl13.txt -------------------------------------------------------------------------------- /levels/dreamB/lvl14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dreamB/lvl14.txt -------------------------------------------------------------------------------- /levels/dreamB/lvl15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dreamB/lvl15.txt -------------------------------------------------------------------------------- /levels/dreamB/lvl16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dreamB/lvl16.txt -------------------------------------------------------------------------------- /levels/dreamB/lvl17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dreamB/lvl17.txt -------------------------------------------------------------------------------- /levels/dreamB/lvl2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dreamB/lvl2.txt -------------------------------------------------------------------------------- /levels/dreamB/lvl3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dreamB/lvl3.txt -------------------------------------------------------------------------------- /levels/dreamB/lvl4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dreamB/lvl4.txt -------------------------------------------------------------------------------- /levels/dreamB/lvl5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dreamB/lvl5.txt -------------------------------------------------------------------------------- /levels/dreamB/lvl6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dreamB/lvl6.txt -------------------------------------------------------------------------------- /levels/dreamB/lvl7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dreamB/lvl7.txt -------------------------------------------------------------------------------- /levels/dreamB/lvl8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dreamB/lvl8.txt -------------------------------------------------------------------------------- /levels/dreamB/lvl9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/dreamB/lvl9.txt -------------------------------------------------------------------------------- /levels/forsaken/final.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/forsaken/final.txt -------------------------------------------------------------------------------- /levels/forsaken/lvl_a1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/forsaken/lvl_a1.txt -------------------------------------------------------------------------------- /levels/forsaken/lvl_a1_s.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/forsaken/lvl_a1_s.txt -------------------------------------------------------------------------------- /levels/forsaken/lvl_a2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/forsaken/lvl_a2.txt -------------------------------------------------------------------------------- /levels/forsaken/lvl_a2s.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/forsaken/lvl_a2s.txt -------------------------------------------------------------------------------- /levels/forsaken/lvl_a3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/forsaken/lvl_a3.txt -------------------------------------------------------------------------------- /levels/forsaken/lvl_a4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/forsaken/lvl_a4.txt -------------------------------------------------------------------------------- /levels/forsaken/lvl_a4s.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/forsaken/lvl_a4s.txt -------------------------------------------------------------------------------- /levels/forsaken/lvl_a4s2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/forsaken/lvl_a4s2.txt -------------------------------------------------------------------------------- /levels/forsaken/lvl_a5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/forsaken/lvl_a5.txt -------------------------------------------------------------------------------- /levels/forsaken/lvl_a6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/forsaken/lvl_a6.txt -------------------------------------------------------------------------------- /levels/forsaken/lvl_a6s.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/forsaken/lvl_a6s.txt -------------------------------------------------------------------------------- /levels/forsaken/lvl_a7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/forsaken/lvl_a7.txt -------------------------------------------------------------------------------- /levels/forsaken/lvl_a8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/forsaken/lvl_a8.txt -------------------------------------------------------------------------------- /levels/forsaken/lvl_a9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/forsaken/lvl_a9.txt -------------------------------------------------------------------------------- /levels/forsaken/lvl_a9s.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/forsaken/lvl_a9s.txt -------------------------------------------------------------------------------- /levels/forsaken/lvl_b1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/forsaken/lvl_b1.txt -------------------------------------------------------------------------------- /levels/forsaken/lvl_b2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/forsaken/lvl_b2.txt -------------------------------------------------------------------------------- /levels/forsaken/lvl_b3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/forsaken/lvl_b3.txt -------------------------------------------------------------------------------- /levels/forsaken/lvl_b4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/forsaken/lvl_b4.txt -------------------------------------------------------------------------------- /levels/forsaken/lvl_b5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/forsaken/lvl_b5.txt -------------------------------------------------------------------------------- /levels/forsaken/lvl_b6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/forsaken/lvl_b6.txt -------------------------------------------------------------------------------- /levels/forsaken/lvl_b6c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/forsaken/lvl_b6c.txt -------------------------------------------------------------------------------- /levels/forsaken/lvl_b7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/forsaken/lvl_b7.txt -------------------------------------------------------------------------------- /levels/forsaken/lvl_b8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/forsaken/lvl_b8.txt -------------------------------------------------------------------------------- /levels/forsakenB/lvl_a1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/forsakenB/lvl_a1.txt -------------------------------------------------------------------------------- /levels/forsakenB/lvl_a10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/forsakenB/lvl_a10.txt -------------------------------------------------------------------------------- /levels/forsakenB/lvl_a11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/forsakenB/lvl_a11.txt -------------------------------------------------------------------------------- /levels/forsakenB/lvl_a1_s.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/forsakenB/lvl_a1_s.txt -------------------------------------------------------------------------------- /levels/forsakenB/lvl_a2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/forsakenB/lvl_a2.txt -------------------------------------------------------------------------------- /levels/forsakenB/lvl_a3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/forsakenB/lvl_a3.txt -------------------------------------------------------------------------------- /levels/forsakenB/lvl_a4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/forsakenB/lvl_a4.txt -------------------------------------------------------------------------------- /levels/forsakenB/lvl_a5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/forsakenB/lvl_a5.txt -------------------------------------------------------------------------------- /levels/forsakenB/lvl_a6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/forsakenB/lvl_a6.txt -------------------------------------------------------------------------------- /levels/forsakenB/lvl_a7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/forsakenB/lvl_a7.txt -------------------------------------------------------------------------------- /levels/forsakenB/lvl_a8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/forsakenB/lvl_a8.txt -------------------------------------------------------------------------------- /levels/forsakenB/lvl_a9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/forsakenB/lvl_a9.txt -------------------------------------------------------------------------------- /levels/meta_level.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/meta_level.json -------------------------------------------------------------------------------- /levels/prologue/final.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/prologue/final.txt -------------------------------------------------------------------------------- /levels/prologue/lvl1 - backup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/prologue/lvl1 - backup.txt -------------------------------------------------------------------------------- /levels/prologue/lvl1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/prologue/lvl1.txt -------------------------------------------------------------------------------- /levels/prologue/lvl1s.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/prologue/lvl1s.txt -------------------------------------------------------------------------------- /levels/prologue/lvl2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/prologue/lvl2.txt -------------------------------------------------------------------------------- /levels/prologue/lvl3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/prologue/lvl3.txt -------------------------------------------------------------------------------- /levels/prologue/lvl4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/prologue/lvl4.txt -------------------------------------------------------------------------------- /levels/prologue/lvl5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/prologue/lvl5.txt -------------------------------------------------------------------------------- /levels/prologue/lvl6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/prologue/lvl6.txt -------------------------------------------------------------------------------- /levels/prologue/lvl7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/prologue/lvl7.txt -------------------------------------------------------------------------------- /levels/prologue/lvl8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/levels/prologue/lvl8.txt -------------------------------------------------------------------------------- /old versions/Celeste Demo.gba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/old versions/Celeste Demo.gba -------------------------------------------------------------------------------- /old versions/Climbing.gba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/old versions/Climbing.gba -------------------------------------------------------------------------------- /old versions/DreamDash.gba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/old versions/DreamDash.gba -------------------------------------------------------------------------------- /old versions/celeste but bumpier.gba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/old versions/celeste but bumpier.gba -------------------------------------------------------------------------------- /old versions/even_better.gba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/old versions/even_better.gba -------------------------------------------------------------------------------- /old versions/feeling real.gba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/old versions/feeling real.gba -------------------------------------------------------------------------------- /old versions/firsthomebrew.gba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/old versions/firsthomebrew.gba -------------------------------------------------------------------------------- /old versions/practice.gba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/old versions/practice.gba -------------------------------------------------------------------------------- /source/char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/source/char.c -------------------------------------------------------------------------------- /source/char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/source/char.h -------------------------------------------------------------------------------- /source/engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/source/engine.c -------------------------------------------------------------------------------- /source/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/source/engine.h -------------------------------------------------------------------------------- /source/entity_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/source/entity_func.h -------------------------------------------------------------------------------- /source/game_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/source/game_data.c -------------------------------------------------------------------------------- /source/game_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/source/game_data.h -------------------------------------------------------------------------------- /source/global_vars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/source/global_vars.c -------------------------------------------------------------------------------- /source/global_vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/source/global_vars.h -------------------------------------------------------------------------------- /source/level_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/source/level_handler.c -------------------------------------------------------------------------------- /source/level_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/source/level_handler.h -------------------------------------------------------------------------------- /source/mesh_render.arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/source/mesh_render.arm.c -------------------------------------------------------------------------------- /source/mesh_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/source/mesh_render.h -------------------------------------------------------------------------------- /source/mesh_render.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/source/mesh_render.s -------------------------------------------------------------------------------- /source/save_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/source/save_handler.c -------------------------------------------------------------------------------- /source/save_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/source/save_handler.h -------------------------------------------------------------------------------- /source/strawb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaGoodFriend/Celeste-For-GBA/HEAD/source/strawb.c --------------------------------------------------------------------------------