├── README.md ├── docs ├── assets │ ├── audio │ │ ├── ambient │ │ │ └── forest-birds.mp3 │ │ ├── effects │ │ │ ├── block.mp3 │ │ │ ├── blop-attack.mp3 │ │ │ ├── blop-coward-hit-1.mp3 │ │ │ ├── blop-coward-hit-2.mp3 │ │ │ ├── blop-death.mp3 │ │ │ ├── blop-hit-1.mp3 │ │ │ ├── blop-hit-2.mp3 │ │ │ ├── blop-walk-1.mp3 │ │ │ ├── blop-walk-2.mp3 │ │ │ ├── body-damaged.mp3 │ │ │ ├── bow-hit.mp3 │ │ │ ├── bow-shoot.mp3 │ │ │ ├── bushbell-attack.mp3 │ │ │ ├── bushbell-death.mp3 │ │ │ ├── bushbell-hit-1.mp3 │ │ │ ├── bushbell-hit-2.mp3 │ │ │ ├── bushbell-walk-1.mp3 │ │ │ ├── bushbell-walk-2.mp3 │ │ │ ├── checkpoint-voice.mp3 │ │ │ ├── checkpoint.mp3 │ │ │ ├── click.mp3 │ │ │ ├── crate-break.mp3 │ │ │ ├── crate-hit.mp3 │ │ │ ├── doughnut.mp3 │ │ │ ├── end-sound.mp3 │ │ │ ├── exit-ready.mp3 │ │ │ ├── footstep-grass-1.mp3 │ │ │ ├── footstep-grass-2.mp3 │ │ │ ├── footstep-grass-3.mp3 │ │ │ ├── gate-open.mp3 │ │ │ ├── gossamer-attack-1.mp3 │ │ │ ├── gossamer-attack-2.mp3 │ │ │ ├── gossamer-death.mp3 │ │ │ ├── health-jingle-1.mp3 │ │ │ ├── health.mp3 │ │ │ ├── heartbeat.mp3 │ │ │ ├── human-death-1.mp3 │ │ │ ├── human-death-2.mp3 │ │ │ ├── human-hit-1.mp3 │ │ │ ├── human-hit-2.mp3 │ │ │ ├── human-hit-3.mp3 │ │ │ ├── mimic-burst.mp3 │ │ │ ├── pop-1.mp3 │ │ │ ├── pop-2.mp3 │ │ │ ├── pop-3.mp3 │ │ │ ├── sawtooth-attack.mp3 │ │ │ ├── sawtooth-beep.mp3 │ │ │ ├── sawtooth-dead.mp3 │ │ │ ├── sawtooth-explode.mp3 │ │ │ ├── sawtooth-hit-1.mp3 │ │ │ ├── sawtooth-hit-2.mp3 │ │ │ ├── sen-attack.mp3 │ │ │ ├── sen-damaged-1.mp3 │ │ │ ├── sen-damaged-2.mp3 │ │ │ ├── sen-dying.mp3 │ │ │ ├── sen-hit.mp3 │ │ │ ├── sen-step-1.mp3 │ │ │ ├── sen-step-2.mp3 │ │ │ ├── slow-swing.mp3 │ │ │ ├── snake-attack.mp3 │ │ │ ├── snake-damaged.mp3 │ │ │ ├── snake-death.mp3 │ │ │ ├── snake-move-1.mp3 │ │ │ ├── snake-move-2.mp3 │ │ │ ├── spear-stab.mp3 │ │ │ ├── spider-attack.mp3 │ │ │ ├── spider-damaged.mp3 │ │ │ ├── spider-dead.mp3 │ │ │ ├── spider-walk-1.mp3 │ │ │ ├── spider-walk-2.mp3 │ │ │ ├── stagger.mp3 │ │ │ ├── switch-to-bow.mp3 │ │ │ ├── switch-to-sword.mp3 │ │ │ ├── sword-combo-swing.mp3 │ │ │ ├── sword-flesh.mp3 │ │ │ ├── sword-quick-hit.mp3 │ │ │ ├── sword-quick-swing.mp3 │ │ │ ├── title-sheen.mp3 │ │ │ ├── title-slam.mp3 │ │ │ ├── to-blop.mp3 │ │ │ ├── to-human.mp3 │ │ │ ├── vanquished.mp3 │ │ │ ├── whoosh-double.mp3 │ │ │ ├── whoosh-high.mp3 │ │ │ └── whoosh-low.mp3 │ │ └── music │ │ │ ├── autumn.mp3 │ │ │ ├── boss.mp3 │ │ │ ├── castle.mp3 │ │ │ ├── summer.mp3 │ │ │ ├── town.mp3 │ │ │ ├── victory.mp3 │ │ │ └── winter.mp3 │ ├── data │ │ ├── attributes.json │ │ ├── config.json │ │ ├── controls.json │ │ ├── credits.json │ │ ├── factory.json │ │ ├── fx.json │ │ ├── game-settings.json │ │ ├── gui.json │ │ ├── instructions.json │ │ ├── particles.json │ │ ├── particles │ │ │ ├── cloudShadow.json │ │ │ ├── confetti.json │ │ │ ├── glowDust.json │ │ │ ├── leaves.json │ │ │ ├── rain.json │ │ │ ├── smoke.json │ │ │ └── snowFlake.json │ │ ├── scenes.json │ │ ├── scenes.old.json │ │ ├── seasons.json │ │ ├── shields.json │ │ ├── sounds.json │ │ └── weapons.json │ ├── fonts │ │ ├── cinzel.css │ │ ├── cinzel │ │ │ ├── cinzel-v7-latin_latin-ext-700.woff │ │ │ ├── cinzel-v7-latin_latin-ext-700.woff2 │ │ │ ├── cinzel-v7-latin_latin-ext-900.woff │ │ │ ├── cinzel-v7-latin_latin-ext-900.woff2 │ │ │ ├── cinzel-v7-latin_latin-ext-regular.woff │ │ │ └── cinzel-v7-latin_latin-ext-regular.woff2 │ │ ├── josefin-sans.css │ │ └── josefin-sans │ │ │ ├── josefin-sans-v12-latin_latin-ext-600italic.woff │ │ │ ├── josefin-sans-v12-latin_latin-ext-600italic.woff2 │ │ │ ├── josefin-sans-v12-latin_latin-ext-700.woff │ │ │ ├── josefin-sans-v12-latin_latin-ext-700.woff2 │ │ │ ├── josefin-sans-v12-latin_latin-ext-regular.woff │ │ │ └── josefin-sans-v12-latin_latin-ext-regular.woff2 │ ├── img │ │ ├── max-and-cooper.jpg │ │ ├── screen-1.png │ │ ├── screen-2.png │ │ ├── screen-3.png │ │ └── screen-4.png │ ├── maps │ │ ├── phase01 │ │ │ ├── 001-top.png │ │ │ ├── 001.json │ │ │ ├── 001.png │ │ │ ├── 001.tmx │ │ │ ├── 002-top.png │ │ │ ├── 002.json │ │ │ ├── 002.png │ │ │ ├── 002.tmx │ │ │ ├── 003-top.png │ │ │ ├── 003.json │ │ │ ├── 003.png │ │ │ ├── 003.tmx │ │ │ ├── 004-top.png │ │ │ ├── 004.json │ │ │ ├── 004.png │ │ │ ├── 004.tmx │ │ │ ├── 006-top.png │ │ │ ├── 006.json │ │ │ ├── 006.png │ │ │ ├── 006.tmx │ │ │ ├── _max_template.tmx │ │ │ ├── title.json │ │ │ ├── title.png │ │ │ └── title.tmx │ │ ├── phase02 │ │ │ ├── 007.json │ │ │ ├── 007.tmx │ │ │ ├── 007bot.png │ │ │ ├── 007top.png │ │ │ ├── 008-top.png │ │ │ ├── 008.json │ │ │ ├── 008.png │ │ │ ├── 008.tmx │ │ │ ├── 009-top.png │ │ │ ├── 009.json │ │ │ ├── 009.png │ │ │ ├── 009.tmx │ │ │ ├── 010.json │ │ │ ├── 010.tmx │ │ │ ├── 010bot.png │ │ │ ├── 010bot_tile_00.png │ │ │ ├── 010bot_tile_01.png │ │ │ ├── 010bot_tile_02.png │ │ │ ├── 010bot_tile_03.png │ │ │ ├── 010top.png │ │ │ ├── 010top_tile_00.png │ │ │ ├── 010top_tile_01.png │ │ │ ├── 010top_tile_02.png │ │ │ ├── 010top_tile_03.png │ │ │ ├── 011-top.png │ │ │ ├── 011.json │ │ │ ├── 011.png │ │ │ ├── 011.tmx │ │ │ ├── 012.json │ │ │ ├── 012.tmx │ │ │ ├── 012bot.png │ │ │ ├── 012top.png │ │ │ ├── 013-top.png │ │ │ ├── 013.json │ │ │ ├── 013.png │ │ │ ├── 013.tmx │ │ │ ├── 019-top.png │ │ │ ├── 019.json │ │ │ ├── 019.png │ │ │ ├── 019.tmx │ │ │ ├── 019bot_tile_00.png │ │ │ ├── 019bot_tile_01.png │ │ │ ├── 019bot_tile_02.png │ │ │ ├── 019bot_tile_03.png │ │ │ ├── 019top_tile_00.png │ │ │ ├── 019top_tile_01.png │ │ │ ├── 019top_tile_02.png │ │ │ └── 019top_tile_03.png │ │ ├── phase03 │ │ │ ├── 014.json │ │ │ ├── 014.png │ │ │ ├── 014.tmx │ │ │ ├── 014top.png │ │ │ ├── 015-top.png │ │ │ ├── 015.json │ │ │ ├── 015.png │ │ │ ├── 015.tmx │ │ │ ├── 016.json │ │ │ ├── 016.png │ │ │ ├── 016.tmx │ │ │ └── 016top.png │ │ ├── phase04 │ │ │ ├── 017-top.png │ │ │ ├── 017.json │ │ │ ├── 017.png │ │ │ ├── 017.tmx │ │ │ ├── 017bot_tile_00.png │ │ │ ├── 017bot_tile_01.png │ │ │ ├── 017bot_tile_02.png │ │ │ ├── 017top_tile_00.png │ │ │ ├── 017top_tile_01.png │ │ │ ├── 017top_tile_02.png │ │ │ ├── 018.json │ │ │ ├── 018.png │ │ │ ├── 018.tmx │ │ │ └── 018top.png │ │ ├── phase05 │ │ │ ├── 020.json │ │ │ ├── 020.png │ │ │ ├── 020.tmx │ │ │ ├── 020top.png │ │ │ ├── 021-top.png │ │ │ ├── 021.json │ │ │ ├── 021.png │ │ │ ├── 021.tmx │ │ │ ├── 022.json │ │ │ ├── 022.png │ │ │ ├── 022.tmx │ │ │ ├── 022bot_tile_00.png │ │ │ ├── 022bot_tile_01.png │ │ │ ├── 022bot_tile_02.png │ │ │ ├── 022bot_tile_03.png │ │ │ ├── 022top.png │ │ │ ├── 022top_tile_00.png │ │ │ ├── 022top_tile_01.png │ │ │ ├── 022top_tile_02.png │ │ │ ├── 022top_tile_03.png │ │ │ ├── 023-top.png │ │ │ ├── 023.json │ │ │ ├── 023.png │ │ │ └── 023.tmx │ │ ├── phase06 │ │ │ ├── 024.json │ │ │ ├── 024.png │ │ │ ├── 024.tmx │ │ │ ├── 024top.png │ │ │ ├── 025-top.png │ │ │ ├── 025.json │ │ │ ├── 025.png │ │ │ ├── 025.tmx │ │ │ ├── 025bot_tile_00.png │ │ │ ├── 025bot_tile_01.png │ │ │ ├── 025bot_tile_02.png │ │ │ ├── 025bot_tile_03.png │ │ │ ├── 025bot_tile_04.png │ │ │ ├── 025bot_tile_05.png │ │ │ ├── 025bot_tile_06.png │ │ │ ├── 025bot_tile_07.png │ │ │ ├── 025top_tile_00.png │ │ │ ├── 025top_tile_01.png │ │ │ ├── 025top_tile_02.png │ │ │ ├── 025top_tile_03.png │ │ │ ├── 025top_tile_04.png │ │ │ ├── 025top_tile_05.png │ │ │ ├── 025top_tile_06.png │ │ │ ├── 025top_tile_07.png │ │ │ ├── 026.json │ │ │ ├── 026.png │ │ │ ├── 026.tmx │ │ │ └── 026top.png │ │ ├── phase07 │ │ │ ├── 027-top.png │ │ │ ├── 027.json │ │ │ ├── 027.png │ │ │ ├── 027.tmx │ │ │ ├── 027bot_tile_00.png │ │ │ ├── 027bot_tile_01.png │ │ │ ├── 027bot_tile_02.png │ │ │ ├── 027bot_tile_03.png │ │ │ ├── 027top_tile_00.png │ │ │ ├── 027top_tile_01.png │ │ │ ├── 027top_tile_02.png │ │ │ ├── 027top_tile_03.png │ │ │ ├── 028.json │ │ │ ├── 028.png │ │ │ ├── 028.tmx │ │ │ ├── 028bot_tile_00.png │ │ │ ├── 028bot_tile_01.png │ │ │ ├── 028bot_tile_02.png │ │ │ ├── 028bot_tile_03.png │ │ │ ├── 028top.png │ │ │ ├── 028top_tile_00.png │ │ │ ├── 028top_tile_01.png │ │ │ ├── 028top_tile_02.png │ │ │ ├── 028top_tile_03.png │ │ │ ├── 029-top.png │ │ │ ├── 029.json │ │ │ ├── 029.png │ │ │ ├── 029.tmx │ │ │ ├── 029bot_tile_00.png │ │ │ ├── 029bot_tile_01.png │ │ │ ├── 029bot_tile_02.png │ │ │ ├── 029bot_tile_03.png │ │ │ ├── 029top_tile_00.png │ │ │ ├── 029top_tile_01.png │ │ │ ├── 029top_tile_02.png │ │ │ ├── 029top_tile_03.png │ │ │ ├── 030.json │ │ │ ├── 030.png │ │ │ ├── 030.tmx │ │ │ └── 030top.png │ │ ├── phase08 │ │ │ ├── 031-top.png │ │ │ ├── 031.json │ │ │ ├── 031.png │ │ │ ├── 031.tmx │ │ │ ├── 031bot_tile_00.png │ │ │ ├── 031bot_tile_01.png │ │ │ ├── 031bot_tile_02.png │ │ │ ├── 031bot_tile_03.png │ │ │ ├── 031bot_tile_04.png │ │ │ ├── 031bot_tile_05.png │ │ │ ├── 031top_tile_00.png │ │ │ ├── 031top_tile_01.png │ │ │ ├── 031top_tile_02.png │ │ │ ├── 031top_tile_03.png │ │ │ ├── 031top_tile_04.png │ │ │ ├── 031top_tile_05.png │ │ │ ├── 032.json │ │ │ ├── 032.png │ │ │ ├── 032.tmx │ │ │ ├── 032top.png │ │ │ ├── 033-top.png │ │ │ ├── 033.json │ │ │ ├── 033.png │ │ │ ├── 033.tmx │ │ │ ├── 033bot_tile_00.png │ │ │ ├── 033bot_tile_01.png │ │ │ ├── 033bot_tile_02.png │ │ │ ├── 033bot_tile_03.png │ │ │ ├── 033top_tile_00.png │ │ │ ├── 033top_tile_01.png │ │ │ ├── 033top_tile_02.png │ │ │ ├── 033top_tile_03.png │ │ │ ├── 034.json │ │ │ ├── 034.png │ │ │ ├── 034.tmx │ │ │ ├── 034bot_tile_00.png │ │ │ ├── 034bot_tile_01.png │ │ │ ├── 034bot_tile_02.png │ │ │ ├── 034bot_tile_03.png │ │ │ ├── 034top.png │ │ │ ├── 034top_tile_00.png │ │ │ ├── 034top_tile_01.png │ │ │ ├── 034top_tile_02.png │ │ │ ├── 034top_tile_03.png │ │ │ ├── 035-top.png │ │ │ ├── 035.json │ │ │ ├── 035.png │ │ │ ├── 035.tmx │ │ │ ├── 035bot_tile_00.png │ │ │ ├── 035bot_tile_01.png │ │ │ ├── 035bot_tile_02.png │ │ │ ├── 035bot_tile_03.png │ │ │ ├── 035bot_tile_04.png │ │ │ ├── 035bot_tile_05.png │ │ │ ├── 035bot_tile_06.png │ │ │ ├── 035bot_tile_07.png │ │ │ ├── 035top_tile_00.png │ │ │ ├── 035top_tile_01.png │ │ │ ├── 035top_tile_02.png │ │ │ ├── 035top_tile_03.png │ │ │ ├── 035top_tile_04.png │ │ │ ├── 035top_tile_05.png │ │ │ ├── 035top_tile_06.png │ │ │ └── 035top_tile_07.png │ │ └── phase09 │ │ │ ├── castleBlop001.json │ │ │ ├── castleBlop001.png │ │ │ ├── castleBlop001.tmx │ │ │ ├── castleBlop001top.png │ │ │ ├── castleBlop002.json │ │ │ ├── castleBlop002.png │ │ │ ├── castleBlop002.tmx │ │ │ ├── castleBlop002bot_tile_00.png │ │ │ ├── castleBlop002bot_tile_01.png │ │ │ ├── castleBlop002bot_tile_02.png │ │ │ ├── castleBlop002bot_tile_03.png │ │ │ ├── castleBlop002bot_tile_04.png │ │ │ ├── castleBlop002bot_tile_05.png │ │ │ ├── castleBlop002top.png │ │ │ ├── castleBlop002top_tile_00.png │ │ │ ├── castleBlop002top_tile_01.png │ │ │ ├── castleBlop002top_tile_02.png │ │ │ ├── castleBlop002top_tile_03.png │ │ │ ├── castleBlop002top_tile_04.png │ │ │ ├── castleBlop002top_tile_05.png │ │ │ ├── castleFinale001.json │ │ │ ├── castleFinale001.png │ │ │ ├── castleFinale001.tmx │ │ │ ├── castleFinale001top.png │ │ │ ├── castleHUB001.json │ │ │ ├── castleHUB001.png │ │ │ ├── castleHUB001.tmx │ │ │ ├── castleHUB001bot_tile_00.png │ │ │ ├── castleHUB001bot_tile_01.png │ │ │ ├── castleHUB001bot_tile_02.png │ │ │ ├── castleHUB001top.png │ │ │ ├── castleHUB001top_tile_00.png │ │ │ ├── castleHUB001top_tile_01.png │ │ │ ├── castleHUB001top_tile_02.png │ │ │ ├── castleHUB002.json │ │ │ ├── castleHUB002.tmx │ │ │ ├── castleHUB003.json │ │ │ ├── castleHUB003.tmx │ │ │ ├── castleSpider001.json │ │ │ ├── castleSpider001.png │ │ │ ├── castleSpider001.tmx │ │ │ ├── castleSpider001top.png │ │ │ ├── castleSpider002.json │ │ │ ├── castleSpider002.png │ │ │ ├── castleSpider002.tmx │ │ │ ├── castleSpider002bot_tile_00.png │ │ │ ├── castleSpider002bot_tile_01.png │ │ │ ├── castleSpider002bot_tile_02.png │ │ │ ├── castleSpider002bot_tile_03.png │ │ │ ├── castleSpider002top.png │ │ │ ├── castleSpider002top_tile_00.png │ │ │ ├── castleSpider002top_tile_01.png │ │ │ ├── castleSpider002top_tile_02.png │ │ │ ├── castleSpider002top_tile_03.png │ │ │ ├── castleSpider003.json │ │ │ ├── castleSpider003.png │ │ │ ├── castleSpider003.tmx │ │ │ ├── castleSpider003top.png │ │ │ ├── castleX001.json │ │ │ ├── castleX001.png │ │ │ ├── castleX001.tmx │ │ │ ├── castleX001top.png │ │ │ ├── castleX002.json │ │ │ ├── castleX002.png │ │ │ ├── castleX002.tmx │ │ │ ├── castleX002bot_tile_00.png │ │ │ ├── castleX002bot_tile_01.png │ │ │ ├── castleX002bot_tile_02.png │ │ │ ├── castleX002bot_tile_03.png │ │ │ ├── castleX002top.png │ │ │ ├── castleX002top_tile_00.png │ │ │ ├── castleX002top_tile_01.png │ │ │ ├── castleX002top_tile_02.png │ │ │ ├── castleX002top_tile_03.png │ │ │ ├── castleX003.json │ │ │ ├── castleX003.png │ │ │ ├── castleX003.tmx │ │ │ └── castleX003top.png │ └── new-sheets │ │ ├── 24f3599dc8359a09794c05cc99fb19110b88709e.png │ │ ├── 37e11e4d7a257ab4e659bb8e6c42524aba3e1010.png │ │ ├── 3825db6e19847f93eef23211bac72bf180db3635.png │ │ ├── 6ab9739fe7df6d40607e1708611564ac903fa2b5.png │ │ ├── 755660cfd04db71fb0d0ef00fbdcd3c3031684d0.png │ │ ├── 93b6f4ad7f22f0e0eda0a90708a2af9b378fb425.png │ │ ├── e15a4b884f679bba874b8cbeac04cc3db3d934a8.png │ │ ├── f216822e8ae698912e20576984e186c1687ec6f7.png │ │ └── main_en_full.json ├── build │ └── game.js ├── favicon.ico ├── index.html └── lib │ ├── howler.js │ ├── howler.min.js │ ├── pixi-layers.js │ ├── pixi-packer-parser.js │ ├── pixi-particles.js │ ├── pixi-particles.min.js │ ├── pixi.js │ ├── pixi.min.js │ └── stats.min.js └── src ├── component ├── active-attack.ts ├── activity.ts ├── ai.ts ├── animatable.ts ├── animation-tickable.ts ├── armed.ts ├── attack.ts ├── attributes.ts ├── audible.ts ├── bleeding.ts ├── block.ts ├── blocked.ts ├── body.ts ├── camera-followable.ts ├── checkpoint.ts ├── collision-shape.ts ├── comboable.ts ├── damaged-flash.ts ├── dead.ts ├── debug-inspection.ts ├── debug-kv-layer.ts ├── debug-tile-info.ts ├── destructible.ts ├── dummy.ts ├── enemy.ts ├── from-comboable.ts ├── gate.ts ├── gui-sprite.ts ├── health.ts ├── immobile.ts ├── input.ts ├── invincible.ts ├── item.ts ├── knockback.ts ├── knockbackable.ts ├── level-gainer.ts ├── lightbulb.ts ├── lockon.ts ├── persistent-damage.ts ├── physics-region.ts ├── player-input.ts ├── position.ts ├── recoil.ts ├── shielded.ts ├── sparkle.ts ├── spawnable.ts ├── stagger-return.ts ├── stagger.ts ├── staggerable.ts ├── static-renderable.ts ├── text-renderable.ts ├── timebomb.ts ├── tracker.ts ├── tweenable.ts └── zone.ts ├── core ├── base.ts ├── colors.ts ├── force.ts ├── fsm.ts ├── keyboard.ts ├── lang.ts ├── mouse.ts ├── polygon.ts ├── probability.ts ├── sat.ts ├── tween.ts └── util.ts ├── engine ├── ecs.ts ├── events.ts ├── measurement.ts ├── saving.ts ├── script.ts └── slowmotion.ts ├── game ├── game.ts └── sandbox3.ts ├── gj7 ├── ai.ts ├── attributes.ts ├── constants.ts ├── conversion.ts ├── credits.ts ├── enemy.ts ├── events.ts ├── gamemap.ts ├── gui.ts ├── item.ts ├── logic.ts ├── ontology.ts ├── physics.ts ├── scene.ts ├── shield.ts ├── sound.ts ├── tutorial.ts └── weapon.ts ├── graphics ├── anim.ts ├── animation.ts ├── bar.ts ├── fx.ts ├── lighting.ts ├── particles.ts ├── stage.ts └── typography.ts ├── handler ├── bookkeeping.ts ├── camera.ts ├── checkpoint.ts ├── control.ts ├── death.ts ├── end-sequence.ts ├── exit.ts ├── fx.ts ├── gate.ts ├── overlay.ts ├── slowmotion.ts ├── sound-effects.ts ├── text.ts └── tutorial.ts ├── main.ts ├── script ├── death.ts ├── end-sequence.ts ├── start.ts ├── test-tween.ts └── test.ts ├── system ├── activity.ts ├── ai-archer.ts ├── ai-brawler.ts ├── ai-cow.ts ├── ai-coward.ts ├── ai-follow-sawtooth.ts ├── ai-forward.ts ├── ai-global-timer.ts ├── ai-mimic.ts ├── ai-sawtooth.ts ├── ai-sentinel.ts ├── ai-spider.ts ├── ai.ts ├── animation-renderer.ts ├── animation-ticker.ts ├── attack.ts ├── audio.ts ├── bleeding.ts ├── block.ts ├── blocked.ts ├── body.ts ├── bookkeeper-renderer.ts ├── bookkeeper.ts ├── collision-block.ts ├── collision-damage.ts ├── collision-detection.ts ├── collision-item.ts ├── collision-movement.ts ├── collision-physicsregion.ts ├── collision-projectile.ts ├── collision-zone.ts ├── combo.ts ├── controls-screen.ts ├── crosshair.ts ├── damaged-flash.ts ├── death.ts ├── debug-camera.ts ├── debug-collision-renderer.ts ├── debug-gamespeed.ts ├── debug-html-components.ts ├── debug-inspection-renderer.ts ├── debug-inspection-uniquifier.ts ├── debug-position-renderer.ts ├── debug-scene-restart.ts ├── debug-timing-renderer.ts ├── debug.ts ├── defend.ts ├── delay-speaker.ts ├── enemy-hud-renderer.ts ├── enemy-zone-checker.ts ├── fade.ts ├── follow-camera.ts ├── fx-animations.ts ├── fx-camera.ts ├── gui-sprite-renderer.ts ├── gui.ts ├── immobile.ts ├── invincible.ts ├── knockback.ts ├── lighting.ts ├── lockon.ts ├── low-health.ts ├── movement.ts ├── particle-renderer.ts ├── pause.ts ├── persistent-damage.ts ├── player-hud-renderer.ts ├── player-input.ts ├── recoil.ts ├── selector.ts ├── sounds-footsteps.ts ├── sparkle.ts ├── spatial-hash.ts ├── stagger-return.ts ├── stagger.ts ├── static-renderer.ts ├── swing.ts ├── text-renderer.ts ├── timebomb.ts ├── tracking.ts ├── tweener.ts ├── util.ts └── zoom.ts └── tsconfig.json /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/README.md -------------------------------------------------------------------------------- /docs/assets/audio/ambient/forest-birds.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/ambient/forest-birds.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/block.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/block.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/blop-attack.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/blop-attack.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/blop-coward-hit-1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/blop-coward-hit-1.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/blop-coward-hit-2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/blop-coward-hit-2.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/blop-death.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/blop-death.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/blop-hit-1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/blop-hit-1.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/blop-hit-2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/blop-hit-2.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/blop-walk-1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/blop-walk-1.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/blop-walk-2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/blop-walk-2.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/body-damaged.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/body-damaged.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/bow-hit.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/bow-hit.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/bow-shoot.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/bow-shoot.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/bushbell-attack.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/bushbell-attack.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/bushbell-death.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/bushbell-death.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/bushbell-hit-1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/bushbell-hit-1.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/bushbell-hit-2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/bushbell-hit-2.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/bushbell-walk-1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/bushbell-walk-1.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/bushbell-walk-2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/bushbell-walk-2.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/checkpoint-voice.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/checkpoint-voice.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/checkpoint.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/checkpoint.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/click.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/click.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/crate-break.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/crate-break.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/crate-hit.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/crate-hit.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/doughnut.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/doughnut.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/end-sound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/end-sound.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/exit-ready.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/exit-ready.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/footstep-grass-1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/footstep-grass-1.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/footstep-grass-2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/footstep-grass-2.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/footstep-grass-3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/footstep-grass-3.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/gate-open.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/gate-open.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/gossamer-attack-1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/gossamer-attack-1.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/gossamer-attack-2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/gossamer-attack-2.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/gossamer-death.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/gossamer-death.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/health-jingle-1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/health-jingle-1.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/health.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/health.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/heartbeat.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/heartbeat.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/human-death-1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/human-death-1.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/human-death-2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/human-death-2.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/human-hit-1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/human-hit-1.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/human-hit-2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/human-hit-2.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/human-hit-3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/human-hit-3.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/mimic-burst.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/mimic-burst.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/pop-1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/pop-1.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/pop-2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/pop-2.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/pop-3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/pop-3.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/sawtooth-attack.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/sawtooth-attack.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/sawtooth-beep.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/sawtooth-beep.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/sawtooth-dead.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/sawtooth-dead.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/sawtooth-explode.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/sawtooth-explode.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/sawtooth-hit-1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/sawtooth-hit-1.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/sawtooth-hit-2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/sawtooth-hit-2.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/sen-attack.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/sen-attack.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/sen-damaged-1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/sen-damaged-1.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/sen-damaged-2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/sen-damaged-2.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/sen-dying.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/sen-dying.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/sen-hit.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/sen-hit.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/sen-step-1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/sen-step-1.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/sen-step-2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/sen-step-2.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/slow-swing.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/slow-swing.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/snake-attack.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/snake-attack.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/snake-damaged.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/snake-damaged.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/snake-death.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/snake-death.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/snake-move-1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/snake-move-1.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/snake-move-2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/snake-move-2.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/spear-stab.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/spear-stab.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/spider-attack.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/spider-attack.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/spider-damaged.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/spider-damaged.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/spider-dead.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/spider-dead.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/spider-walk-1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/spider-walk-1.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/spider-walk-2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/spider-walk-2.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/stagger.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/stagger.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/switch-to-bow.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/switch-to-bow.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/switch-to-sword.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/switch-to-sword.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/sword-combo-swing.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/sword-combo-swing.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/sword-flesh.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/sword-flesh.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/sword-quick-hit.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/sword-quick-hit.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/sword-quick-swing.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/sword-quick-swing.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/title-sheen.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/title-sheen.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/title-slam.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/title-slam.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/to-blop.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/to-blop.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/to-human.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/to-human.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/vanquished.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/vanquished.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/whoosh-double.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/whoosh-double.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/whoosh-high.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/whoosh-high.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/effects/whoosh-low.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/effects/whoosh-low.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/music/autumn.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/music/autumn.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/music/boss.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/music/boss.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/music/castle.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/music/castle.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/music/summer.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/music/summer.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/music/town.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/music/town.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/music/victory.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/music/victory.mp3 -------------------------------------------------------------------------------- /docs/assets/audio/music/winter.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/audio/music/winter.mp3 -------------------------------------------------------------------------------- /docs/assets/data/attributes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/data/attributes.json -------------------------------------------------------------------------------- /docs/assets/data/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/data/config.json -------------------------------------------------------------------------------- /docs/assets/data/controls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/data/controls.json -------------------------------------------------------------------------------- /docs/assets/data/credits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/data/credits.json -------------------------------------------------------------------------------- /docs/assets/data/factory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/data/factory.json -------------------------------------------------------------------------------- /docs/assets/data/fx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/data/fx.json -------------------------------------------------------------------------------- /docs/assets/data/game-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/data/game-settings.json -------------------------------------------------------------------------------- /docs/assets/data/gui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/data/gui.json -------------------------------------------------------------------------------- /docs/assets/data/instructions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/data/instructions.json -------------------------------------------------------------------------------- /docs/assets/data/particles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/data/particles.json -------------------------------------------------------------------------------- /docs/assets/data/particles/cloudShadow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/data/particles/cloudShadow.json -------------------------------------------------------------------------------- /docs/assets/data/particles/confetti.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/data/particles/confetti.json -------------------------------------------------------------------------------- /docs/assets/data/particles/glowDust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/data/particles/glowDust.json -------------------------------------------------------------------------------- /docs/assets/data/particles/leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/data/particles/leaves.json -------------------------------------------------------------------------------- /docs/assets/data/particles/rain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/data/particles/rain.json -------------------------------------------------------------------------------- /docs/assets/data/particles/smoke.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/data/particles/smoke.json -------------------------------------------------------------------------------- /docs/assets/data/particles/snowFlake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/data/particles/snowFlake.json -------------------------------------------------------------------------------- /docs/assets/data/scenes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/data/scenes.json -------------------------------------------------------------------------------- /docs/assets/data/scenes.old.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/data/scenes.old.json -------------------------------------------------------------------------------- /docs/assets/data/seasons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/data/seasons.json -------------------------------------------------------------------------------- /docs/assets/data/shields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/data/shields.json -------------------------------------------------------------------------------- /docs/assets/data/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/data/sounds.json -------------------------------------------------------------------------------- /docs/assets/data/weapons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/data/weapons.json -------------------------------------------------------------------------------- /docs/assets/fonts/cinzel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/fonts/cinzel.css -------------------------------------------------------------------------------- /docs/assets/fonts/cinzel/cinzel-v7-latin_latin-ext-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/fonts/cinzel/cinzel-v7-latin_latin-ext-700.woff -------------------------------------------------------------------------------- /docs/assets/fonts/cinzel/cinzel-v7-latin_latin-ext-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/fonts/cinzel/cinzel-v7-latin_latin-ext-700.woff2 -------------------------------------------------------------------------------- /docs/assets/fonts/cinzel/cinzel-v7-latin_latin-ext-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/fonts/cinzel/cinzel-v7-latin_latin-ext-900.woff -------------------------------------------------------------------------------- /docs/assets/fonts/cinzel/cinzel-v7-latin_latin-ext-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/fonts/cinzel/cinzel-v7-latin_latin-ext-900.woff2 -------------------------------------------------------------------------------- /docs/assets/fonts/cinzel/cinzel-v7-latin_latin-ext-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/fonts/cinzel/cinzel-v7-latin_latin-ext-regular.woff -------------------------------------------------------------------------------- /docs/assets/fonts/cinzel/cinzel-v7-latin_latin-ext-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/fonts/cinzel/cinzel-v7-latin_latin-ext-regular.woff2 -------------------------------------------------------------------------------- /docs/assets/fonts/josefin-sans.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/fonts/josefin-sans.css -------------------------------------------------------------------------------- /docs/assets/fonts/josefin-sans/josefin-sans-v12-latin_latin-ext-600italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/fonts/josefin-sans/josefin-sans-v12-latin_latin-ext-600italic.woff -------------------------------------------------------------------------------- /docs/assets/fonts/josefin-sans/josefin-sans-v12-latin_latin-ext-600italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/fonts/josefin-sans/josefin-sans-v12-latin_latin-ext-600italic.woff2 -------------------------------------------------------------------------------- /docs/assets/fonts/josefin-sans/josefin-sans-v12-latin_latin-ext-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/fonts/josefin-sans/josefin-sans-v12-latin_latin-ext-700.woff -------------------------------------------------------------------------------- /docs/assets/fonts/josefin-sans/josefin-sans-v12-latin_latin-ext-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/fonts/josefin-sans/josefin-sans-v12-latin_latin-ext-700.woff2 -------------------------------------------------------------------------------- /docs/assets/fonts/josefin-sans/josefin-sans-v12-latin_latin-ext-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/fonts/josefin-sans/josefin-sans-v12-latin_latin-ext-regular.woff -------------------------------------------------------------------------------- /docs/assets/fonts/josefin-sans/josefin-sans-v12-latin_latin-ext-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/fonts/josefin-sans/josefin-sans-v12-latin_latin-ext-regular.woff2 -------------------------------------------------------------------------------- /docs/assets/img/max-and-cooper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/img/max-and-cooper.jpg -------------------------------------------------------------------------------- /docs/assets/img/screen-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/img/screen-1.png -------------------------------------------------------------------------------- /docs/assets/img/screen-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/img/screen-2.png -------------------------------------------------------------------------------- /docs/assets/img/screen-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/img/screen-3.png -------------------------------------------------------------------------------- /docs/assets/img/screen-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/img/screen-4.png -------------------------------------------------------------------------------- /docs/assets/maps/phase01/001-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase01/001-top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase01/001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase01/001.json -------------------------------------------------------------------------------- /docs/assets/maps/phase01/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase01/001.png -------------------------------------------------------------------------------- /docs/assets/maps/phase01/001.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase01/001.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase01/002-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase01/002-top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase01/002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase01/002.json -------------------------------------------------------------------------------- /docs/assets/maps/phase01/002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase01/002.png -------------------------------------------------------------------------------- /docs/assets/maps/phase01/002.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase01/002.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase01/003-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase01/003-top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase01/003.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase01/003.json -------------------------------------------------------------------------------- /docs/assets/maps/phase01/003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase01/003.png -------------------------------------------------------------------------------- /docs/assets/maps/phase01/003.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase01/003.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase01/004-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase01/004-top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase01/004.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase01/004.json -------------------------------------------------------------------------------- /docs/assets/maps/phase01/004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase01/004.png -------------------------------------------------------------------------------- /docs/assets/maps/phase01/004.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase01/004.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase01/006-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase01/006-top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase01/006.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase01/006.json -------------------------------------------------------------------------------- /docs/assets/maps/phase01/006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase01/006.png -------------------------------------------------------------------------------- /docs/assets/maps/phase01/006.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase01/006.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase01/_max_template.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase01/_max_template.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase01/title.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase01/title.json -------------------------------------------------------------------------------- /docs/assets/maps/phase01/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase01/title.png -------------------------------------------------------------------------------- /docs/assets/maps/phase01/title.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase01/title.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase02/007.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/007.json -------------------------------------------------------------------------------- /docs/assets/maps/phase02/007.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/007.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase02/007bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/007bot.png -------------------------------------------------------------------------------- /docs/assets/maps/phase02/007top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/007top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase02/008-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/008-top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase02/008.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/008.json -------------------------------------------------------------------------------- /docs/assets/maps/phase02/008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/008.png -------------------------------------------------------------------------------- /docs/assets/maps/phase02/008.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/008.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase02/009-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/009-top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase02/009.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/009.json -------------------------------------------------------------------------------- /docs/assets/maps/phase02/009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/009.png -------------------------------------------------------------------------------- /docs/assets/maps/phase02/009.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/009.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase02/010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/010.json -------------------------------------------------------------------------------- /docs/assets/maps/phase02/010.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/010.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase02/010bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/010bot.png -------------------------------------------------------------------------------- /docs/assets/maps/phase02/010bot_tile_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/010bot_tile_00.png -------------------------------------------------------------------------------- /docs/assets/maps/phase02/010bot_tile_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/010bot_tile_01.png -------------------------------------------------------------------------------- /docs/assets/maps/phase02/010bot_tile_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/010bot_tile_02.png -------------------------------------------------------------------------------- /docs/assets/maps/phase02/010bot_tile_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/010bot_tile_03.png -------------------------------------------------------------------------------- /docs/assets/maps/phase02/010top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/010top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase02/010top_tile_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/010top_tile_00.png -------------------------------------------------------------------------------- /docs/assets/maps/phase02/010top_tile_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/010top_tile_01.png -------------------------------------------------------------------------------- /docs/assets/maps/phase02/010top_tile_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/010top_tile_02.png -------------------------------------------------------------------------------- /docs/assets/maps/phase02/010top_tile_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/010top_tile_03.png -------------------------------------------------------------------------------- /docs/assets/maps/phase02/011-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/011-top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase02/011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/011.json -------------------------------------------------------------------------------- /docs/assets/maps/phase02/011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/011.png -------------------------------------------------------------------------------- /docs/assets/maps/phase02/011.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/011.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase02/012.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/012.json -------------------------------------------------------------------------------- /docs/assets/maps/phase02/012.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/012.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase02/012bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/012bot.png -------------------------------------------------------------------------------- /docs/assets/maps/phase02/012top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/012top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase02/013-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/013-top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase02/013.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/013.json -------------------------------------------------------------------------------- /docs/assets/maps/phase02/013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/013.png -------------------------------------------------------------------------------- /docs/assets/maps/phase02/013.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/013.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase02/019-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/019-top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase02/019.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/019.json -------------------------------------------------------------------------------- /docs/assets/maps/phase02/019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/019.png -------------------------------------------------------------------------------- /docs/assets/maps/phase02/019.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/019.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase02/019bot_tile_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/019bot_tile_00.png -------------------------------------------------------------------------------- /docs/assets/maps/phase02/019bot_tile_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/019bot_tile_01.png -------------------------------------------------------------------------------- /docs/assets/maps/phase02/019bot_tile_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/019bot_tile_02.png -------------------------------------------------------------------------------- /docs/assets/maps/phase02/019bot_tile_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/019bot_tile_03.png -------------------------------------------------------------------------------- /docs/assets/maps/phase02/019top_tile_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/019top_tile_00.png -------------------------------------------------------------------------------- /docs/assets/maps/phase02/019top_tile_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/019top_tile_01.png -------------------------------------------------------------------------------- /docs/assets/maps/phase02/019top_tile_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/019top_tile_02.png -------------------------------------------------------------------------------- /docs/assets/maps/phase02/019top_tile_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase02/019top_tile_03.png -------------------------------------------------------------------------------- /docs/assets/maps/phase03/014.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase03/014.json -------------------------------------------------------------------------------- /docs/assets/maps/phase03/014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase03/014.png -------------------------------------------------------------------------------- /docs/assets/maps/phase03/014.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase03/014.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase03/014top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase03/014top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase03/015-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase03/015-top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase03/015.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase03/015.json -------------------------------------------------------------------------------- /docs/assets/maps/phase03/015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase03/015.png -------------------------------------------------------------------------------- /docs/assets/maps/phase03/015.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase03/015.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase03/016.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase03/016.json -------------------------------------------------------------------------------- /docs/assets/maps/phase03/016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase03/016.png -------------------------------------------------------------------------------- /docs/assets/maps/phase03/016.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase03/016.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase03/016top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase03/016top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase04/017-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase04/017-top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase04/017.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase04/017.json -------------------------------------------------------------------------------- /docs/assets/maps/phase04/017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase04/017.png -------------------------------------------------------------------------------- /docs/assets/maps/phase04/017.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase04/017.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase04/017bot_tile_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase04/017bot_tile_00.png -------------------------------------------------------------------------------- /docs/assets/maps/phase04/017bot_tile_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase04/017bot_tile_01.png -------------------------------------------------------------------------------- /docs/assets/maps/phase04/017bot_tile_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase04/017bot_tile_02.png -------------------------------------------------------------------------------- /docs/assets/maps/phase04/017top_tile_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase04/017top_tile_00.png -------------------------------------------------------------------------------- /docs/assets/maps/phase04/017top_tile_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase04/017top_tile_01.png -------------------------------------------------------------------------------- /docs/assets/maps/phase04/017top_tile_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase04/017top_tile_02.png -------------------------------------------------------------------------------- /docs/assets/maps/phase04/018.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase04/018.json -------------------------------------------------------------------------------- /docs/assets/maps/phase04/018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase04/018.png -------------------------------------------------------------------------------- /docs/assets/maps/phase04/018.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase04/018.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase04/018top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase04/018top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase05/020.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase05/020.json -------------------------------------------------------------------------------- /docs/assets/maps/phase05/020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase05/020.png -------------------------------------------------------------------------------- /docs/assets/maps/phase05/020.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase05/020.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase05/020top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase05/020top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase05/021-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase05/021-top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase05/021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase05/021.json -------------------------------------------------------------------------------- /docs/assets/maps/phase05/021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase05/021.png -------------------------------------------------------------------------------- /docs/assets/maps/phase05/021.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase05/021.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase05/022.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase05/022.json -------------------------------------------------------------------------------- /docs/assets/maps/phase05/022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase05/022.png -------------------------------------------------------------------------------- /docs/assets/maps/phase05/022.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase05/022.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase05/022bot_tile_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase05/022bot_tile_00.png -------------------------------------------------------------------------------- /docs/assets/maps/phase05/022bot_tile_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase05/022bot_tile_01.png -------------------------------------------------------------------------------- /docs/assets/maps/phase05/022bot_tile_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase05/022bot_tile_02.png -------------------------------------------------------------------------------- /docs/assets/maps/phase05/022bot_tile_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase05/022bot_tile_03.png -------------------------------------------------------------------------------- /docs/assets/maps/phase05/022top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase05/022top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase05/022top_tile_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase05/022top_tile_00.png -------------------------------------------------------------------------------- /docs/assets/maps/phase05/022top_tile_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase05/022top_tile_01.png -------------------------------------------------------------------------------- /docs/assets/maps/phase05/022top_tile_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase05/022top_tile_02.png -------------------------------------------------------------------------------- /docs/assets/maps/phase05/022top_tile_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase05/022top_tile_03.png -------------------------------------------------------------------------------- /docs/assets/maps/phase05/023-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase05/023-top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase05/023.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase05/023.json -------------------------------------------------------------------------------- /docs/assets/maps/phase05/023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase05/023.png -------------------------------------------------------------------------------- /docs/assets/maps/phase05/023.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase05/023.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase06/024.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase06/024.json -------------------------------------------------------------------------------- /docs/assets/maps/phase06/024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase06/024.png -------------------------------------------------------------------------------- /docs/assets/maps/phase06/024.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase06/024.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase06/024top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase06/024top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase06/025-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase06/025-top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase06/025.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase06/025.json -------------------------------------------------------------------------------- /docs/assets/maps/phase06/025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase06/025.png -------------------------------------------------------------------------------- /docs/assets/maps/phase06/025.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase06/025.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase06/025bot_tile_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase06/025bot_tile_00.png -------------------------------------------------------------------------------- /docs/assets/maps/phase06/025bot_tile_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase06/025bot_tile_01.png -------------------------------------------------------------------------------- /docs/assets/maps/phase06/025bot_tile_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase06/025bot_tile_02.png -------------------------------------------------------------------------------- /docs/assets/maps/phase06/025bot_tile_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase06/025bot_tile_03.png -------------------------------------------------------------------------------- /docs/assets/maps/phase06/025bot_tile_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase06/025bot_tile_04.png -------------------------------------------------------------------------------- /docs/assets/maps/phase06/025bot_tile_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase06/025bot_tile_05.png -------------------------------------------------------------------------------- /docs/assets/maps/phase06/025bot_tile_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase06/025bot_tile_06.png -------------------------------------------------------------------------------- /docs/assets/maps/phase06/025bot_tile_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase06/025bot_tile_07.png -------------------------------------------------------------------------------- /docs/assets/maps/phase06/025top_tile_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase06/025top_tile_00.png -------------------------------------------------------------------------------- /docs/assets/maps/phase06/025top_tile_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase06/025top_tile_01.png -------------------------------------------------------------------------------- /docs/assets/maps/phase06/025top_tile_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase06/025top_tile_02.png -------------------------------------------------------------------------------- /docs/assets/maps/phase06/025top_tile_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase06/025top_tile_03.png -------------------------------------------------------------------------------- /docs/assets/maps/phase06/025top_tile_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase06/025top_tile_04.png -------------------------------------------------------------------------------- /docs/assets/maps/phase06/025top_tile_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase06/025top_tile_05.png -------------------------------------------------------------------------------- /docs/assets/maps/phase06/025top_tile_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase06/025top_tile_06.png -------------------------------------------------------------------------------- /docs/assets/maps/phase06/025top_tile_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase06/025top_tile_07.png -------------------------------------------------------------------------------- /docs/assets/maps/phase06/026.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase06/026.json -------------------------------------------------------------------------------- /docs/assets/maps/phase06/026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase06/026.png -------------------------------------------------------------------------------- /docs/assets/maps/phase06/026.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase06/026.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase06/026top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase06/026top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase07/027-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/027-top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase07/027.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/027.json -------------------------------------------------------------------------------- /docs/assets/maps/phase07/027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/027.png -------------------------------------------------------------------------------- /docs/assets/maps/phase07/027.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/027.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase07/027bot_tile_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/027bot_tile_00.png -------------------------------------------------------------------------------- /docs/assets/maps/phase07/027bot_tile_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/027bot_tile_01.png -------------------------------------------------------------------------------- /docs/assets/maps/phase07/027bot_tile_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/027bot_tile_02.png -------------------------------------------------------------------------------- /docs/assets/maps/phase07/027bot_tile_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/027bot_tile_03.png -------------------------------------------------------------------------------- /docs/assets/maps/phase07/027top_tile_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/027top_tile_00.png -------------------------------------------------------------------------------- /docs/assets/maps/phase07/027top_tile_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/027top_tile_01.png -------------------------------------------------------------------------------- /docs/assets/maps/phase07/027top_tile_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/027top_tile_02.png -------------------------------------------------------------------------------- /docs/assets/maps/phase07/027top_tile_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/027top_tile_03.png -------------------------------------------------------------------------------- /docs/assets/maps/phase07/028.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/028.json -------------------------------------------------------------------------------- /docs/assets/maps/phase07/028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/028.png -------------------------------------------------------------------------------- /docs/assets/maps/phase07/028.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/028.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase07/028bot_tile_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/028bot_tile_00.png -------------------------------------------------------------------------------- /docs/assets/maps/phase07/028bot_tile_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/028bot_tile_01.png -------------------------------------------------------------------------------- /docs/assets/maps/phase07/028bot_tile_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/028bot_tile_02.png -------------------------------------------------------------------------------- /docs/assets/maps/phase07/028bot_tile_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/028bot_tile_03.png -------------------------------------------------------------------------------- /docs/assets/maps/phase07/028top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/028top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase07/028top_tile_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/028top_tile_00.png -------------------------------------------------------------------------------- /docs/assets/maps/phase07/028top_tile_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/028top_tile_01.png -------------------------------------------------------------------------------- /docs/assets/maps/phase07/028top_tile_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/028top_tile_02.png -------------------------------------------------------------------------------- /docs/assets/maps/phase07/028top_tile_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/028top_tile_03.png -------------------------------------------------------------------------------- /docs/assets/maps/phase07/029-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/029-top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase07/029.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/029.json -------------------------------------------------------------------------------- /docs/assets/maps/phase07/029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/029.png -------------------------------------------------------------------------------- /docs/assets/maps/phase07/029.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/029.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase07/029bot_tile_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/029bot_tile_00.png -------------------------------------------------------------------------------- /docs/assets/maps/phase07/029bot_tile_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/029bot_tile_01.png -------------------------------------------------------------------------------- /docs/assets/maps/phase07/029bot_tile_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/029bot_tile_02.png -------------------------------------------------------------------------------- /docs/assets/maps/phase07/029bot_tile_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/029bot_tile_03.png -------------------------------------------------------------------------------- /docs/assets/maps/phase07/029top_tile_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/029top_tile_00.png -------------------------------------------------------------------------------- /docs/assets/maps/phase07/029top_tile_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/029top_tile_01.png -------------------------------------------------------------------------------- /docs/assets/maps/phase07/029top_tile_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/029top_tile_02.png -------------------------------------------------------------------------------- /docs/assets/maps/phase07/029top_tile_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/029top_tile_03.png -------------------------------------------------------------------------------- /docs/assets/maps/phase07/030.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/030.json -------------------------------------------------------------------------------- /docs/assets/maps/phase07/030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/030.png -------------------------------------------------------------------------------- /docs/assets/maps/phase07/030.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/030.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase07/030top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase07/030top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/031-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/031-top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/031.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/031.json -------------------------------------------------------------------------------- /docs/assets/maps/phase08/031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/031.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/031.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/031.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase08/031bot_tile_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/031bot_tile_00.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/031bot_tile_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/031bot_tile_01.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/031bot_tile_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/031bot_tile_02.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/031bot_tile_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/031bot_tile_03.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/031bot_tile_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/031bot_tile_04.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/031bot_tile_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/031bot_tile_05.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/031top_tile_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/031top_tile_00.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/031top_tile_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/031top_tile_01.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/031top_tile_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/031top_tile_02.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/031top_tile_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/031top_tile_03.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/031top_tile_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/031top_tile_04.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/031top_tile_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/031top_tile_05.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/032.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/032.json -------------------------------------------------------------------------------- /docs/assets/maps/phase08/032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/032.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/032.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/032.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase08/032top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/032top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/033-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/033-top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/033.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/033.json -------------------------------------------------------------------------------- /docs/assets/maps/phase08/033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/033.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/033.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/033.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase08/033bot_tile_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/033bot_tile_00.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/033bot_tile_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/033bot_tile_01.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/033bot_tile_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/033bot_tile_02.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/033bot_tile_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/033bot_tile_03.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/033top_tile_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/033top_tile_00.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/033top_tile_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/033top_tile_01.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/033top_tile_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/033top_tile_02.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/033top_tile_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/033top_tile_03.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/034.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/034.json -------------------------------------------------------------------------------- /docs/assets/maps/phase08/034.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/034.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/034.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/034.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase08/034bot_tile_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/034bot_tile_00.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/034bot_tile_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/034bot_tile_01.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/034bot_tile_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/034bot_tile_02.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/034bot_tile_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/034bot_tile_03.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/034top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/034top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/034top_tile_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/034top_tile_00.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/034top_tile_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/034top_tile_01.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/034top_tile_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/034top_tile_02.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/034top_tile_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/034top_tile_03.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/035-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/035-top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/035.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/035.json -------------------------------------------------------------------------------- /docs/assets/maps/phase08/035.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/035.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/035.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/035.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase08/035bot_tile_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/035bot_tile_00.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/035bot_tile_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/035bot_tile_01.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/035bot_tile_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/035bot_tile_02.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/035bot_tile_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/035bot_tile_03.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/035bot_tile_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/035bot_tile_04.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/035bot_tile_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/035bot_tile_05.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/035bot_tile_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/035bot_tile_06.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/035bot_tile_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/035bot_tile_07.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/035top_tile_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/035top_tile_00.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/035top_tile_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/035top_tile_01.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/035top_tile_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/035top_tile_02.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/035top_tile_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/035top_tile_03.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/035top_tile_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/035top_tile_04.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/035top_tile_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/035top_tile_05.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/035top_tile_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/035top_tile_06.png -------------------------------------------------------------------------------- /docs/assets/maps/phase08/035top_tile_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase08/035top_tile_07.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleBlop001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleBlop001.json -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleBlop001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleBlop001.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleBlop001.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleBlop001.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleBlop001top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleBlop001top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleBlop002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleBlop002.json -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleBlop002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleBlop002.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleBlop002.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleBlop002.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleBlop002bot_tile_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleBlop002bot_tile_00.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleBlop002bot_tile_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleBlop002bot_tile_01.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleBlop002bot_tile_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleBlop002bot_tile_02.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleBlop002bot_tile_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleBlop002bot_tile_03.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleBlop002bot_tile_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleBlop002bot_tile_04.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleBlop002bot_tile_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleBlop002bot_tile_05.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleBlop002top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleBlop002top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleBlop002top_tile_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleBlop002top_tile_00.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleBlop002top_tile_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleBlop002top_tile_01.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleBlop002top_tile_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleBlop002top_tile_02.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleBlop002top_tile_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleBlop002top_tile_03.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleBlop002top_tile_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleBlop002top_tile_04.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleBlop002top_tile_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleBlop002top_tile_05.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleFinale001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleFinale001.json -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleFinale001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleFinale001.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleFinale001.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleFinale001.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleFinale001top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleFinale001top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleHUB001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleHUB001.json -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleHUB001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleHUB001.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleHUB001.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleHUB001.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleHUB001bot_tile_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleHUB001bot_tile_00.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleHUB001bot_tile_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleHUB001bot_tile_01.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleHUB001bot_tile_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleHUB001bot_tile_02.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleHUB001top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleHUB001top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleHUB001top_tile_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleHUB001top_tile_00.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleHUB001top_tile_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleHUB001top_tile_01.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleHUB001top_tile_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleHUB001top_tile_02.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleHUB002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleHUB002.json -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleHUB002.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleHUB002.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleHUB003.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleHUB003.json -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleHUB003.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleHUB003.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleSpider001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleSpider001.json -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleSpider001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleSpider001.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleSpider001.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleSpider001.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleSpider001top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleSpider001top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleSpider002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleSpider002.json -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleSpider002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleSpider002.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleSpider002.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleSpider002.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleSpider002bot_tile_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleSpider002bot_tile_00.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleSpider002bot_tile_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleSpider002bot_tile_01.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleSpider002bot_tile_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleSpider002bot_tile_02.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleSpider002bot_tile_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleSpider002bot_tile_03.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleSpider002top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleSpider002top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleSpider002top_tile_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleSpider002top_tile_00.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleSpider002top_tile_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleSpider002top_tile_01.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleSpider002top_tile_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleSpider002top_tile_02.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleSpider002top_tile_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleSpider002top_tile_03.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleSpider003.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleSpider003.json -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleSpider003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleSpider003.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleSpider003.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleSpider003.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleSpider003top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleSpider003top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleX001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleX001.json -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleX001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleX001.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleX001.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleX001.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleX001top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleX001top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleX002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleX002.json -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleX002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleX002.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleX002.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleX002.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleX002bot_tile_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleX002bot_tile_00.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleX002bot_tile_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleX002bot_tile_01.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleX002bot_tile_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleX002bot_tile_02.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleX002bot_tile_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleX002bot_tile_03.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleX002top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleX002top.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleX002top_tile_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleX002top_tile_00.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleX002top_tile_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleX002top_tile_01.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleX002top_tile_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleX002top_tile_02.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleX002top_tile_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleX002top_tile_03.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleX003.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleX003.json -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleX003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleX003.png -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleX003.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleX003.tmx -------------------------------------------------------------------------------- /docs/assets/maps/phase09/castleX003top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/maps/phase09/castleX003top.png -------------------------------------------------------------------------------- /docs/assets/new-sheets/24f3599dc8359a09794c05cc99fb19110b88709e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/new-sheets/24f3599dc8359a09794c05cc99fb19110b88709e.png -------------------------------------------------------------------------------- /docs/assets/new-sheets/37e11e4d7a257ab4e659bb8e6c42524aba3e1010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/new-sheets/37e11e4d7a257ab4e659bb8e6c42524aba3e1010.png -------------------------------------------------------------------------------- /docs/assets/new-sheets/3825db6e19847f93eef23211bac72bf180db3635.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/new-sheets/3825db6e19847f93eef23211bac72bf180db3635.png -------------------------------------------------------------------------------- /docs/assets/new-sheets/6ab9739fe7df6d40607e1708611564ac903fa2b5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/new-sheets/6ab9739fe7df6d40607e1708611564ac903fa2b5.png -------------------------------------------------------------------------------- /docs/assets/new-sheets/755660cfd04db71fb0d0ef00fbdcd3c3031684d0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/new-sheets/755660cfd04db71fb0d0ef00fbdcd3c3031684d0.png -------------------------------------------------------------------------------- /docs/assets/new-sheets/93b6f4ad7f22f0e0eda0a90708a2af9b378fb425.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/new-sheets/93b6f4ad7f22f0e0eda0a90708a2af9b378fb425.png -------------------------------------------------------------------------------- /docs/assets/new-sheets/e15a4b884f679bba874b8cbeac04cc3db3d934a8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/new-sheets/e15a4b884f679bba874b8cbeac04cc3db3d934a8.png -------------------------------------------------------------------------------- /docs/assets/new-sheets/f216822e8ae698912e20576984e186c1687ec6f7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/new-sheets/f216822e8ae698912e20576984e186c1687ec6f7.png -------------------------------------------------------------------------------- /docs/assets/new-sheets/main_en_full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/assets/new-sheets/main_en_full.json -------------------------------------------------------------------------------- /docs/build/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/build/game.js -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/lib/howler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/lib/howler.js -------------------------------------------------------------------------------- /docs/lib/howler.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/lib/howler.min.js -------------------------------------------------------------------------------- /docs/lib/pixi-layers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/lib/pixi-layers.js -------------------------------------------------------------------------------- /docs/lib/pixi-packer-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/lib/pixi-packer-parser.js -------------------------------------------------------------------------------- /docs/lib/pixi-particles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/lib/pixi-particles.js -------------------------------------------------------------------------------- /docs/lib/pixi-particles.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/lib/pixi-particles.min.js -------------------------------------------------------------------------------- /docs/lib/pixi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/lib/pixi.js -------------------------------------------------------------------------------- /docs/lib/pixi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/lib/pixi.min.js -------------------------------------------------------------------------------- /docs/lib/stats.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/docs/lib/stats.min.js -------------------------------------------------------------------------------- /src/component/active-attack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/active-attack.ts -------------------------------------------------------------------------------- /src/component/activity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/activity.ts -------------------------------------------------------------------------------- /src/component/ai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/ai.ts -------------------------------------------------------------------------------- /src/component/animatable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/animatable.ts -------------------------------------------------------------------------------- /src/component/animation-tickable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/animation-tickable.ts -------------------------------------------------------------------------------- /src/component/armed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/armed.ts -------------------------------------------------------------------------------- /src/component/attack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/attack.ts -------------------------------------------------------------------------------- /src/component/attributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/attributes.ts -------------------------------------------------------------------------------- /src/component/audible.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/audible.ts -------------------------------------------------------------------------------- /src/component/bleeding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/bleeding.ts -------------------------------------------------------------------------------- /src/component/block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/block.ts -------------------------------------------------------------------------------- /src/component/blocked.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/blocked.ts -------------------------------------------------------------------------------- /src/component/body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/body.ts -------------------------------------------------------------------------------- /src/component/camera-followable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/camera-followable.ts -------------------------------------------------------------------------------- /src/component/checkpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/checkpoint.ts -------------------------------------------------------------------------------- /src/component/collision-shape.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/collision-shape.ts -------------------------------------------------------------------------------- /src/component/comboable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/comboable.ts -------------------------------------------------------------------------------- /src/component/damaged-flash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/damaged-flash.ts -------------------------------------------------------------------------------- /src/component/dead.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/dead.ts -------------------------------------------------------------------------------- /src/component/debug-inspection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/debug-inspection.ts -------------------------------------------------------------------------------- /src/component/debug-kv-layer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/debug-kv-layer.ts -------------------------------------------------------------------------------- /src/component/debug-tile-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/debug-tile-info.ts -------------------------------------------------------------------------------- /src/component/destructible.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/destructible.ts -------------------------------------------------------------------------------- /src/component/dummy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/dummy.ts -------------------------------------------------------------------------------- /src/component/enemy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/enemy.ts -------------------------------------------------------------------------------- /src/component/from-comboable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/from-comboable.ts -------------------------------------------------------------------------------- /src/component/gate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/gate.ts -------------------------------------------------------------------------------- /src/component/gui-sprite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/gui-sprite.ts -------------------------------------------------------------------------------- /src/component/health.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/health.ts -------------------------------------------------------------------------------- /src/component/immobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/immobile.ts -------------------------------------------------------------------------------- /src/component/input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/input.ts -------------------------------------------------------------------------------- /src/component/invincible.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/invincible.ts -------------------------------------------------------------------------------- /src/component/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/item.ts -------------------------------------------------------------------------------- /src/component/knockback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/knockback.ts -------------------------------------------------------------------------------- /src/component/knockbackable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/knockbackable.ts -------------------------------------------------------------------------------- /src/component/level-gainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/level-gainer.ts -------------------------------------------------------------------------------- /src/component/lightbulb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/lightbulb.ts -------------------------------------------------------------------------------- /src/component/lockon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/lockon.ts -------------------------------------------------------------------------------- /src/component/persistent-damage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/persistent-damage.ts -------------------------------------------------------------------------------- /src/component/physics-region.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/physics-region.ts -------------------------------------------------------------------------------- /src/component/player-input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/player-input.ts -------------------------------------------------------------------------------- /src/component/position.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/position.ts -------------------------------------------------------------------------------- /src/component/recoil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/recoil.ts -------------------------------------------------------------------------------- /src/component/shielded.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/shielded.ts -------------------------------------------------------------------------------- /src/component/sparkle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/sparkle.ts -------------------------------------------------------------------------------- /src/component/spawnable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/spawnable.ts -------------------------------------------------------------------------------- /src/component/stagger-return.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/stagger-return.ts -------------------------------------------------------------------------------- /src/component/stagger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/stagger.ts -------------------------------------------------------------------------------- /src/component/staggerable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/staggerable.ts -------------------------------------------------------------------------------- /src/component/static-renderable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/static-renderable.ts -------------------------------------------------------------------------------- /src/component/text-renderable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/text-renderable.ts -------------------------------------------------------------------------------- /src/component/timebomb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/timebomb.ts -------------------------------------------------------------------------------- /src/component/tracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/tracker.ts -------------------------------------------------------------------------------- /src/component/tweenable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/tweenable.ts -------------------------------------------------------------------------------- /src/component/zone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/component/zone.ts -------------------------------------------------------------------------------- /src/core/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/core/base.ts -------------------------------------------------------------------------------- /src/core/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/core/colors.ts -------------------------------------------------------------------------------- /src/core/force.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/core/force.ts -------------------------------------------------------------------------------- /src/core/fsm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/core/fsm.ts -------------------------------------------------------------------------------- /src/core/keyboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/core/keyboard.ts -------------------------------------------------------------------------------- /src/core/lang.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/core/lang.ts -------------------------------------------------------------------------------- /src/core/mouse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/core/mouse.ts -------------------------------------------------------------------------------- /src/core/polygon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/core/polygon.ts -------------------------------------------------------------------------------- /src/core/probability.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/core/probability.ts -------------------------------------------------------------------------------- /src/core/sat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/core/sat.ts -------------------------------------------------------------------------------- /src/core/tween.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/core/tween.ts -------------------------------------------------------------------------------- /src/core/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/core/util.ts -------------------------------------------------------------------------------- /src/engine/ecs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/engine/ecs.ts -------------------------------------------------------------------------------- /src/engine/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/engine/events.ts -------------------------------------------------------------------------------- /src/engine/measurement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/engine/measurement.ts -------------------------------------------------------------------------------- /src/engine/saving.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/engine/saving.ts -------------------------------------------------------------------------------- /src/engine/script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/engine/script.ts -------------------------------------------------------------------------------- /src/engine/slowmotion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/engine/slowmotion.ts -------------------------------------------------------------------------------- /src/game/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/game/game.ts -------------------------------------------------------------------------------- /src/game/sandbox3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/game/sandbox3.ts -------------------------------------------------------------------------------- /src/gj7/ai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/gj7/ai.ts -------------------------------------------------------------------------------- /src/gj7/attributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/gj7/attributes.ts -------------------------------------------------------------------------------- /src/gj7/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/gj7/constants.ts -------------------------------------------------------------------------------- /src/gj7/conversion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/gj7/conversion.ts -------------------------------------------------------------------------------- /src/gj7/credits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/gj7/credits.ts -------------------------------------------------------------------------------- /src/gj7/enemy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/gj7/enemy.ts -------------------------------------------------------------------------------- /src/gj7/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/gj7/events.ts -------------------------------------------------------------------------------- /src/gj7/gamemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/gj7/gamemap.ts -------------------------------------------------------------------------------- /src/gj7/gui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/gj7/gui.ts -------------------------------------------------------------------------------- /src/gj7/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/gj7/item.ts -------------------------------------------------------------------------------- /src/gj7/logic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/gj7/logic.ts -------------------------------------------------------------------------------- /src/gj7/ontology.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/gj7/ontology.ts -------------------------------------------------------------------------------- /src/gj7/physics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/gj7/physics.ts -------------------------------------------------------------------------------- /src/gj7/scene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/gj7/scene.ts -------------------------------------------------------------------------------- /src/gj7/shield.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/gj7/shield.ts -------------------------------------------------------------------------------- /src/gj7/sound.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/gj7/sound.ts -------------------------------------------------------------------------------- /src/gj7/tutorial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/gj7/tutorial.ts -------------------------------------------------------------------------------- /src/gj7/weapon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/gj7/weapon.ts -------------------------------------------------------------------------------- /src/graphics/anim.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/graphics/anim.ts -------------------------------------------------------------------------------- /src/graphics/animation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/graphics/animation.ts -------------------------------------------------------------------------------- /src/graphics/bar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/graphics/bar.ts -------------------------------------------------------------------------------- /src/graphics/fx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/graphics/fx.ts -------------------------------------------------------------------------------- /src/graphics/lighting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/graphics/lighting.ts -------------------------------------------------------------------------------- /src/graphics/particles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/graphics/particles.ts -------------------------------------------------------------------------------- /src/graphics/stage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/graphics/stage.ts -------------------------------------------------------------------------------- /src/graphics/typography.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/graphics/typography.ts -------------------------------------------------------------------------------- /src/handler/bookkeeping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/handler/bookkeeping.ts -------------------------------------------------------------------------------- /src/handler/camera.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/handler/camera.ts -------------------------------------------------------------------------------- /src/handler/checkpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/handler/checkpoint.ts -------------------------------------------------------------------------------- /src/handler/control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/handler/control.ts -------------------------------------------------------------------------------- /src/handler/death.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/handler/death.ts -------------------------------------------------------------------------------- /src/handler/end-sequence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/handler/end-sequence.ts -------------------------------------------------------------------------------- /src/handler/exit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/handler/exit.ts -------------------------------------------------------------------------------- /src/handler/fx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/handler/fx.ts -------------------------------------------------------------------------------- /src/handler/gate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/handler/gate.ts -------------------------------------------------------------------------------- /src/handler/overlay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/handler/overlay.ts -------------------------------------------------------------------------------- /src/handler/slowmotion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/handler/slowmotion.ts -------------------------------------------------------------------------------- /src/handler/sound-effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/handler/sound-effects.ts -------------------------------------------------------------------------------- /src/handler/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/handler/text.ts -------------------------------------------------------------------------------- /src/handler/tutorial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/handler/tutorial.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/script/death.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/script/death.ts -------------------------------------------------------------------------------- /src/script/end-sequence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/script/end-sequence.ts -------------------------------------------------------------------------------- /src/script/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/script/start.ts -------------------------------------------------------------------------------- /src/script/test-tween.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/script/test-tween.ts -------------------------------------------------------------------------------- /src/script/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/script/test.ts -------------------------------------------------------------------------------- /src/system/activity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/activity.ts -------------------------------------------------------------------------------- /src/system/ai-archer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/ai-archer.ts -------------------------------------------------------------------------------- /src/system/ai-brawler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/ai-brawler.ts -------------------------------------------------------------------------------- /src/system/ai-cow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/ai-cow.ts -------------------------------------------------------------------------------- /src/system/ai-coward.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/ai-coward.ts -------------------------------------------------------------------------------- /src/system/ai-follow-sawtooth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/ai-follow-sawtooth.ts -------------------------------------------------------------------------------- /src/system/ai-forward.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/ai-forward.ts -------------------------------------------------------------------------------- /src/system/ai-global-timer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/ai-global-timer.ts -------------------------------------------------------------------------------- /src/system/ai-mimic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/ai-mimic.ts -------------------------------------------------------------------------------- /src/system/ai-sawtooth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/ai-sawtooth.ts -------------------------------------------------------------------------------- /src/system/ai-sentinel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/ai-sentinel.ts -------------------------------------------------------------------------------- /src/system/ai-spider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/ai-spider.ts -------------------------------------------------------------------------------- /src/system/ai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/ai.ts -------------------------------------------------------------------------------- /src/system/animation-renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/animation-renderer.ts -------------------------------------------------------------------------------- /src/system/animation-ticker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/animation-ticker.ts -------------------------------------------------------------------------------- /src/system/attack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/attack.ts -------------------------------------------------------------------------------- /src/system/audio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/audio.ts -------------------------------------------------------------------------------- /src/system/bleeding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/bleeding.ts -------------------------------------------------------------------------------- /src/system/block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/block.ts -------------------------------------------------------------------------------- /src/system/blocked.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/blocked.ts -------------------------------------------------------------------------------- /src/system/body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/body.ts -------------------------------------------------------------------------------- /src/system/bookkeeper-renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/bookkeeper-renderer.ts -------------------------------------------------------------------------------- /src/system/bookkeeper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/bookkeeper.ts -------------------------------------------------------------------------------- /src/system/collision-block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/collision-block.ts -------------------------------------------------------------------------------- /src/system/collision-damage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/collision-damage.ts -------------------------------------------------------------------------------- /src/system/collision-detection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/collision-detection.ts -------------------------------------------------------------------------------- /src/system/collision-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/collision-item.ts -------------------------------------------------------------------------------- /src/system/collision-movement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/collision-movement.ts -------------------------------------------------------------------------------- /src/system/collision-physicsregion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/collision-physicsregion.ts -------------------------------------------------------------------------------- /src/system/collision-projectile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/collision-projectile.ts -------------------------------------------------------------------------------- /src/system/collision-zone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/collision-zone.ts -------------------------------------------------------------------------------- /src/system/combo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/combo.ts -------------------------------------------------------------------------------- /src/system/controls-screen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/controls-screen.ts -------------------------------------------------------------------------------- /src/system/crosshair.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/crosshair.ts -------------------------------------------------------------------------------- /src/system/damaged-flash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/damaged-flash.ts -------------------------------------------------------------------------------- /src/system/death.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/death.ts -------------------------------------------------------------------------------- /src/system/debug-camera.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/debug-camera.ts -------------------------------------------------------------------------------- /src/system/debug-collision-renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/debug-collision-renderer.ts -------------------------------------------------------------------------------- /src/system/debug-gamespeed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/debug-gamespeed.ts -------------------------------------------------------------------------------- /src/system/debug-html-components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/debug-html-components.ts -------------------------------------------------------------------------------- /src/system/debug-inspection-renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/debug-inspection-renderer.ts -------------------------------------------------------------------------------- /src/system/debug-inspection-uniquifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/debug-inspection-uniquifier.ts -------------------------------------------------------------------------------- /src/system/debug-position-renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/debug-position-renderer.ts -------------------------------------------------------------------------------- /src/system/debug-scene-restart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/debug-scene-restart.ts -------------------------------------------------------------------------------- /src/system/debug-timing-renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/debug-timing-renderer.ts -------------------------------------------------------------------------------- /src/system/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/debug.ts -------------------------------------------------------------------------------- /src/system/defend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/defend.ts -------------------------------------------------------------------------------- /src/system/delay-speaker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/delay-speaker.ts -------------------------------------------------------------------------------- /src/system/enemy-hud-renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/enemy-hud-renderer.ts -------------------------------------------------------------------------------- /src/system/enemy-zone-checker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/enemy-zone-checker.ts -------------------------------------------------------------------------------- /src/system/fade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/fade.ts -------------------------------------------------------------------------------- /src/system/follow-camera.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/follow-camera.ts -------------------------------------------------------------------------------- /src/system/fx-animations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/fx-animations.ts -------------------------------------------------------------------------------- /src/system/fx-camera.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/fx-camera.ts -------------------------------------------------------------------------------- /src/system/gui-sprite-renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/gui-sprite-renderer.ts -------------------------------------------------------------------------------- /src/system/gui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/gui.ts -------------------------------------------------------------------------------- /src/system/immobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/immobile.ts -------------------------------------------------------------------------------- /src/system/invincible.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/invincible.ts -------------------------------------------------------------------------------- /src/system/knockback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/knockback.ts -------------------------------------------------------------------------------- /src/system/lighting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/lighting.ts -------------------------------------------------------------------------------- /src/system/lockon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/lockon.ts -------------------------------------------------------------------------------- /src/system/low-health.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/low-health.ts -------------------------------------------------------------------------------- /src/system/movement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/movement.ts -------------------------------------------------------------------------------- /src/system/particle-renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/particle-renderer.ts -------------------------------------------------------------------------------- /src/system/pause.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/pause.ts -------------------------------------------------------------------------------- /src/system/persistent-damage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/persistent-damage.ts -------------------------------------------------------------------------------- /src/system/player-hud-renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/player-hud-renderer.ts -------------------------------------------------------------------------------- /src/system/player-input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/player-input.ts -------------------------------------------------------------------------------- /src/system/recoil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/recoil.ts -------------------------------------------------------------------------------- /src/system/selector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/selector.ts -------------------------------------------------------------------------------- /src/system/sounds-footsteps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/sounds-footsteps.ts -------------------------------------------------------------------------------- /src/system/sparkle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/sparkle.ts -------------------------------------------------------------------------------- /src/system/spatial-hash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/spatial-hash.ts -------------------------------------------------------------------------------- /src/system/stagger-return.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/stagger-return.ts -------------------------------------------------------------------------------- /src/system/stagger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/stagger.ts -------------------------------------------------------------------------------- /src/system/static-renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/static-renderer.ts -------------------------------------------------------------------------------- /src/system/swing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/swing.ts -------------------------------------------------------------------------------- /src/system/text-renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/text-renderer.ts -------------------------------------------------------------------------------- /src/system/timebomb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/timebomb.ts -------------------------------------------------------------------------------- /src/system/tracking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/tracking.ts -------------------------------------------------------------------------------- /src/system/tweener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/tweener.ts -------------------------------------------------------------------------------- /src/system/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/util.ts -------------------------------------------------------------------------------- /src/system/zoom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/system/zoom.ts -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbforbes/fallgate/HEAD/src/tsconfig.json --------------------------------------------------------------------------------