├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets ├── basic-gun.gif ├── blue-gun.gif ├── boss1.gif ├── boss2.gif ├── day1.png ├── first-boss.gif ├── gameplay.png ├── itch-cover.png ├── new-menu-screen.gif ├── new-particles-reduced.gif ├── new-particles.gif ├── new_icosahedron_intro.gif ├── progress │ ├── convert.sh │ ├── gifs │ │ ├── p1.gif │ │ ├── p10.gif │ │ ├── p11.gif │ │ ├── p12.gif │ │ ├── p13.gif │ │ ├── p14.gif │ │ ├── p15.gif │ │ ├── p16.gif │ │ ├── p17.gif │ │ ├── p2.gif │ │ ├── p3.gif │ │ ├── p4.gif │ │ ├── p5.gif │ │ ├── p6.gif │ │ ├── p7.gif │ │ ├── p8.gif │ │ └── p9.gif │ └── videos │ │ ├── p1.mp4 │ │ ├── p10.mp4 │ │ ├── p11.mp4 │ │ ├── p12.mp4 │ │ ├── p13.mp4 │ │ ├── p14.mp4 │ │ ├── p15.mp4 │ │ ├── p16.mp4 │ │ ├── p17.mp4 │ │ ├── p2.mp4 │ │ ├── p3.mp4 │ │ ├── p4.mp4 │ │ ├── p5.mp4 │ │ ├── p6.mp4 │ │ ├── p7.mp4 │ │ ├── p8.mp4 │ │ └── p9.mp4 ├── sprites.gif ├── title-screen.png └── triple-gun.gif ├── minify.py ├── source ├── data.fnl ├── header.fnl ├── main.fnl └── utils.fnl └── utils.sh /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | .local/ 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/README.md -------------------------------------------------------------------------------- /assets/basic-gun.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/basic-gun.gif -------------------------------------------------------------------------------- /assets/blue-gun.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/blue-gun.gif -------------------------------------------------------------------------------- /assets/boss1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/boss1.gif -------------------------------------------------------------------------------- /assets/boss2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/boss2.gif -------------------------------------------------------------------------------- /assets/day1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/day1.png -------------------------------------------------------------------------------- /assets/first-boss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/first-boss.gif -------------------------------------------------------------------------------- /assets/gameplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/gameplay.png -------------------------------------------------------------------------------- /assets/itch-cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/itch-cover.png -------------------------------------------------------------------------------- /assets/new-menu-screen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/new-menu-screen.gif -------------------------------------------------------------------------------- /assets/new-particles-reduced.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/new-particles-reduced.gif -------------------------------------------------------------------------------- /assets/new-particles.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/new-particles.gif -------------------------------------------------------------------------------- /assets/new_icosahedron_intro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/new_icosahedron_intro.gif -------------------------------------------------------------------------------- /assets/progress/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/progress/convert.sh -------------------------------------------------------------------------------- /assets/progress/gifs/p1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/progress/gifs/p1.gif -------------------------------------------------------------------------------- /assets/progress/gifs/p10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/progress/gifs/p10.gif -------------------------------------------------------------------------------- /assets/progress/gifs/p11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/progress/gifs/p11.gif -------------------------------------------------------------------------------- /assets/progress/gifs/p12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/progress/gifs/p12.gif -------------------------------------------------------------------------------- /assets/progress/gifs/p13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/progress/gifs/p13.gif -------------------------------------------------------------------------------- /assets/progress/gifs/p14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/progress/gifs/p14.gif -------------------------------------------------------------------------------- /assets/progress/gifs/p15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/progress/gifs/p15.gif -------------------------------------------------------------------------------- /assets/progress/gifs/p16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/progress/gifs/p16.gif -------------------------------------------------------------------------------- /assets/progress/gifs/p17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/progress/gifs/p17.gif -------------------------------------------------------------------------------- /assets/progress/gifs/p2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/progress/gifs/p2.gif -------------------------------------------------------------------------------- /assets/progress/gifs/p3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/progress/gifs/p3.gif -------------------------------------------------------------------------------- /assets/progress/gifs/p4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/progress/gifs/p4.gif -------------------------------------------------------------------------------- /assets/progress/gifs/p5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/progress/gifs/p5.gif -------------------------------------------------------------------------------- /assets/progress/gifs/p6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/progress/gifs/p6.gif -------------------------------------------------------------------------------- /assets/progress/gifs/p7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/progress/gifs/p7.gif -------------------------------------------------------------------------------- /assets/progress/gifs/p8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/progress/gifs/p8.gif -------------------------------------------------------------------------------- /assets/progress/gifs/p9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/progress/gifs/p9.gif -------------------------------------------------------------------------------- /assets/progress/videos/p1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/progress/videos/p1.mp4 -------------------------------------------------------------------------------- /assets/progress/videos/p10.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/progress/videos/p10.mp4 -------------------------------------------------------------------------------- /assets/progress/videos/p11.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/progress/videos/p11.mp4 -------------------------------------------------------------------------------- /assets/progress/videos/p12.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/progress/videos/p12.mp4 -------------------------------------------------------------------------------- /assets/progress/videos/p13.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/progress/videos/p13.mp4 -------------------------------------------------------------------------------- /assets/progress/videos/p14.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/progress/videos/p14.mp4 -------------------------------------------------------------------------------- /assets/progress/videos/p15.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/progress/videos/p15.mp4 -------------------------------------------------------------------------------- /assets/progress/videos/p16.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/progress/videos/p16.mp4 -------------------------------------------------------------------------------- /assets/progress/videos/p17.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/progress/videos/p17.mp4 -------------------------------------------------------------------------------- /assets/progress/videos/p2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/progress/videos/p2.mp4 -------------------------------------------------------------------------------- /assets/progress/videos/p3.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/progress/videos/p3.mp4 -------------------------------------------------------------------------------- /assets/progress/videos/p4.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/progress/videos/p4.mp4 -------------------------------------------------------------------------------- /assets/progress/videos/p5.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/progress/videos/p5.mp4 -------------------------------------------------------------------------------- /assets/progress/videos/p6.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/progress/videos/p6.mp4 -------------------------------------------------------------------------------- /assets/progress/videos/p7.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/progress/videos/p7.mp4 -------------------------------------------------------------------------------- /assets/progress/videos/p8.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/progress/videos/p8.mp4 -------------------------------------------------------------------------------- /assets/progress/videos/p9.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/progress/videos/p9.mp4 -------------------------------------------------------------------------------- /assets/sprites.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/sprites.gif -------------------------------------------------------------------------------- /assets/title-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/title-screen.png -------------------------------------------------------------------------------- /assets/triple-gun.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/assets/triple-gun.gif -------------------------------------------------------------------------------- /minify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/minify.py -------------------------------------------------------------------------------- /source/data.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/source/data.fnl -------------------------------------------------------------------------------- /source/header.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/source/header.fnl -------------------------------------------------------------------------------- /source/main.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/source/main.fnl -------------------------------------------------------------------------------- /source/utils.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/source/utils.fnl -------------------------------------------------------------------------------- /utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandevai/amethyst-waters/HEAD/utils.sh --------------------------------------------------------------------------------