├── .firebaserc ├── .github └── workflows │ ├── ci.yml │ ├── production.yml │ └── staging.yml ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── audio │ └── intro.mp3 └── favicons │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── manifest.webmanifest │ ├── mstile-150x150.png │ └── safari-pinned-tab.svg ├── elm.json ├── firebase.json ├── package.json ├── review ├── elm.json └── src │ └── ReviewConfig.elm ├── src ├── elm │ ├── Context.elm │ ├── Element │ │ ├── Animation.elm │ │ ├── Animation │ │ │ └── Bounce.elm │ │ ├── Animations.elm │ │ ├── Backdrop │ │ │ ├── RollingHills.elm │ │ │ ├── RollingValley.elm │ │ │ └── SteepValley.elm │ │ ├── Button.elm │ │ ├── Button │ │ │ └── Cancel.elm │ │ ├── Dot.elm │ │ ├── Flower.elm │ │ ├── Flower │ │ │ ├── Arranged │ │ │ │ ├── Chrysanthemum.elm │ │ │ │ ├── Cornflower.elm │ │ │ │ └── Sunflower.elm │ │ │ ├── Chrysanthemum.elm │ │ │ ├── Cornflower.elm │ │ │ └── Sunflower.elm │ │ ├── Icon.elm │ │ ├── Icon │ │ │ ├── Burst.elm │ │ │ ├── Cog.elm │ │ │ ├── Heart.elm │ │ │ ├── RainBank.elm │ │ │ ├── SeedBank.elm │ │ │ ├── SunBank.elm │ │ │ ├── Tick.elm │ │ │ ├── Tree │ │ │ │ ├── Elm.elm │ │ │ │ ├── Fir.elm │ │ │ │ └── Pine.elm │ │ │ └── Triangle.elm │ │ ├── Info.elm │ │ ├── Layout.elm │ │ ├── Legacy │ │ │ └── Landscape │ │ │ │ ├── RollingHills.elm │ │ │ │ └── SteepHills.elm │ │ ├── Loading.elm │ │ ├── Menu.elm │ │ ├── Palette.elm │ │ ├── Scale.elm │ │ ├── Seed.elm │ │ ├── Seed │ │ │ ├── Circle.elm │ │ │ ├── Mono.elm │ │ │ └── Twin.elm │ │ ├── Sprite │ │ │ ├── Bee.elm │ │ │ ├── Butterfly.elm │ │ │ └── Ladybird.elm │ │ ├── Text.elm │ │ ├── Touch.elm │ │ └── Weather.elm │ ├── Exit.elm │ ├── Game │ │ ├── Board.elm │ │ ├── Board │ │ │ ├── Block.elm │ │ │ ├── Coord.elm │ │ │ ├── Falling.elm │ │ │ ├── Generate.elm │ │ │ ├── Mechanic │ │ │ │ ├── Burst.elm │ │ │ │ └── Pod.elm │ │ │ ├── Move.elm │ │ │ ├── Move │ │ │ │ ├── Bearing.elm │ │ │ │ ├── Check.elm │ │ │ │ └── Move.elm │ │ │ ├── Scores.elm │ │ │ ├── Shift.elm │ │ │ ├── Tile.elm │ │ │ └── Wall.elm │ │ ├── Config │ │ │ ├── Level.elm │ │ │ ├── World.elm │ │ │ └── World │ │ │ │ ├── One.elm │ │ │ │ ├── Three.elm │ │ │ │ └── Two.elm │ │ ├── Level │ │ │ ├── Progress.elm │ │ │ ├── Tile.elm │ │ │ ├── Tile │ │ │ │ └── Constant.elm │ │ │ └── Tutorial.elm │ │ ├── Lives.elm │ │ └── Messages.elm │ ├── Geometry │ │ └── Shape.elm │ ├── Main.elm │ ├── Main │ │ └── index.d.ts │ ├── Ports │ │ ├── Audio.elm │ │ ├── Cache.elm │ │ ├── Scroll.elm │ │ └── Swipe.elm │ ├── Scene │ │ ├── Garden.elm │ │ ├── Garden │ │ │ ├── Chrysanthemum.elm │ │ │ ├── Cornflower.elm │ │ │ ├── Hills.elm │ │ │ └── Sunflower.elm │ │ ├── Hub.elm │ │ ├── Intro.elm │ │ ├── Intro │ │ │ ├── DyingLandscape.elm │ │ │ ├── GrowingSeeds.elm │ │ │ └── SunflowerMeadow.elm │ │ ├── Level.elm │ │ ├── Level │ │ │ ├── Board.elm │ │ │ ├── Board │ │ │ │ ├── LineDrag.elm │ │ │ │ ├── Tile.elm │ │ │ │ └── Tile │ │ │ │ │ ├── Leaving.elm │ │ │ │ │ ├── Line.elm │ │ │ │ │ ├── Position.elm │ │ │ │ │ ├── Scale.elm │ │ │ │ │ └── Stroke.elm │ │ │ ├── TopBar.elm │ │ │ └── Tutorial.elm │ │ ├── Retry.elm │ │ ├── Summary.elm │ │ ├── Summary │ │ │ ├── Chrysanthemum.elm │ │ │ ├── Cornflower.elm │ │ │ └── Sunflower.elm │ │ └── Title.elm │ ├── Seed.elm │ ├── Utils │ │ ├── Animated.elm │ │ ├── Attribute.elm │ │ ├── Background.elm │ │ ├── Color.elm │ │ ├── Cycle.elm │ │ ├── Debug.elm │ │ ├── Dict.elm │ │ ├── Element.elm │ │ ├── Geometry.elm │ │ ├── Html.elm │ │ ├── List.elm │ │ ├── Sine.elm │ │ ├── Style.elm │ │ ├── Svg.elm │ │ ├── Time.elm │ │ ├── Time │ │ │ └── Clock.elm │ │ ├── Transform.elm │ │ ├── Transition.elm │ │ ├── Unit.elm │ │ └── Update.elm │ └── Window.elm ├── index.css ├── index.html ├── index.ts └── ts │ ├── audio.ts │ ├── cache.ts │ ├── cheats.ts │ ├── scroll.ts │ └── swipe.ts ├── tests ├── MoveTest.elm ├── PodTest.elm └── ProgressTest.elm └── tsconfig.json /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/.firebaserc -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/.github/workflows/production.yml -------------------------------------------------------------------------------- /.github/workflows/staging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/.github/workflows/staging.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/README.md -------------------------------------------------------------------------------- /assets/audio/intro.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/assets/audio/intro.mp3 -------------------------------------------------------------------------------- /assets/favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/assets/favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /assets/favicons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/assets/favicons/android-chrome-512x512.png -------------------------------------------------------------------------------- /assets/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/assets/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /assets/favicons/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/assets/favicons/browserconfig.xml -------------------------------------------------------------------------------- /assets/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/assets/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /assets/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/assets/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /assets/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/assets/favicons/favicon.ico -------------------------------------------------------------------------------- /assets/favicons/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/assets/favicons/manifest.webmanifest -------------------------------------------------------------------------------- /assets/favicons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/assets/favicons/mstile-150x150.png -------------------------------------------------------------------------------- /assets/favicons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/assets/favicons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/elm.json -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/firebase.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/package.json -------------------------------------------------------------------------------- /review/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/review/elm.json -------------------------------------------------------------------------------- /review/src/ReviewConfig.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/review/src/ReviewConfig.elm -------------------------------------------------------------------------------- /src/elm/Context.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Context.elm -------------------------------------------------------------------------------- /src/elm/Element/Animation.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Animation.elm -------------------------------------------------------------------------------- /src/elm/Element/Animation/Bounce.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Animation/Bounce.elm -------------------------------------------------------------------------------- /src/elm/Element/Animations.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Animations.elm -------------------------------------------------------------------------------- /src/elm/Element/Backdrop/RollingHills.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Backdrop/RollingHills.elm -------------------------------------------------------------------------------- /src/elm/Element/Backdrop/RollingValley.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Backdrop/RollingValley.elm -------------------------------------------------------------------------------- /src/elm/Element/Backdrop/SteepValley.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Backdrop/SteepValley.elm -------------------------------------------------------------------------------- /src/elm/Element/Button.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Button.elm -------------------------------------------------------------------------------- /src/elm/Element/Button/Cancel.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Button/Cancel.elm -------------------------------------------------------------------------------- /src/elm/Element/Dot.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Dot.elm -------------------------------------------------------------------------------- /src/elm/Element/Flower.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Flower.elm -------------------------------------------------------------------------------- /src/elm/Element/Flower/Arranged/Chrysanthemum.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Flower/Arranged/Chrysanthemum.elm -------------------------------------------------------------------------------- /src/elm/Element/Flower/Arranged/Cornflower.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Flower/Arranged/Cornflower.elm -------------------------------------------------------------------------------- /src/elm/Element/Flower/Arranged/Sunflower.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Flower/Arranged/Sunflower.elm -------------------------------------------------------------------------------- /src/elm/Element/Flower/Chrysanthemum.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Flower/Chrysanthemum.elm -------------------------------------------------------------------------------- /src/elm/Element/Flower/Cornflower.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Flower/Cornflower.elm -------------------------------------------------------------------------------- /src/elm/Element/Flower/Sunflower.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Flower/Sunflower.elm -------------------------------------------------------------------------------- /src/elm/Element/Icon.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Icon.elm -------------------------------------------------------------------------------- /src/elm/Element/Icon/Burst.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Icon/Burst.elm -------------------------------------------------------------------------------- /src/elm/Element/Icon/Cog.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Icon/Cog.elm -------------------------------------------------------------------------------- /src/elm/Element/Icon/Heart.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Icon/Heart.elm -------------------------------------------------------------------------------- /src/elm/Element/Icon/RainBank.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Icon/RainBank.elm -------------------------------------------------------------------------------- /src/elm/Element/Icon/SeedBank.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Icon/SeedBank.elm -------------------------------------------------------------------------------- /src/elm/Element/Icon/SunBank.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Icon/SunBank.elm -------------------------------------------------------------------------------- /src/elm/Element/Icon/Tick.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Icon/Tick.elm -------------------------------------------------------------------------------- /src/elm/Element/Icon/Tree/Elm.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Icon/Tree/Elm.elm -------------------------------------------------------------------------------- /src/elm/Element/Icon/Tree/Fir.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Icon/Tree/Fir.elm -------------------------------------------------------------------------------- /src/elm/Element/Icon/Tree/Pine.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Icon/Tree/Pine.elm -------------------------------------------------------------------------------- /src/elm/Element/Icon/Triangle.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Icon/Triangle.elm -------------------------------------------------------------------------------- /src/elm/Element/Info.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Info.elm -------------------------------------------------------------------------------- /src/elm/Element/Layout.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Layout.elm -------------------------------------------------------------------------------- /src/elm/Element/Legacy/Landscape/RollingHills.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Legacy/Landscape/RollingHills.elm -------------------------------------------------------------------------------- /src/elm/Element/Legacy/Landscape/SteepHills.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Legacy/Landscape/SteepHills.elm -------------------------------------------------------------------------------- /src/elm/Element/Loading.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Loading.elm -------------------------------------------------------------------------------- /src/elm/Element/Menu.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Menu.elm -------------------------------------------------------------------------------- /src/elm/Element/Palette.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Palette.elm -------------------------------------------------------------------------------- /src/elm/Element/Scale.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Scale.elm -------------------------------------------------------------------------------- /src/elm/Element/Seed.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Seed.elm -------------------------------------------------------------------------------- /src/elm/Element/Seed/Circle.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Seed/Circle.elm -------------------------------------------------------------------------------- /src/elm/Element/Seed/Mono.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Seed/Mono.elm -------------------------------------------------------------------------------- /src/elm/Element/Seed/Twin.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Seed/Twin.elm -------------------------------------------------------------------------------- /src/elm/Element/Sprite/Bee.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Sprite/Bee.elm -------------------------------------------------------------------------------- /src/elm/Element/Sprite/Butterfly.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Sprite/Butterfly.elm -------------------------------------------------------------------------------- /src/elm/Element/Sprite/Ladybird.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Sprite/Ladybird.elm -------------------------------------------------------------------------------- /src/elm/Element/Text.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Text.elm -------------------------------------------------------------------------------- /src/elm/Element/Touch.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Touch.elm -------------------------------------------------------------------------------- /src/elm/Element/Weather.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Element/Weather.elm -------------------------------------------------------------------------------- /src/elm/Exit.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Exit.elm -------------------------------------------------------------------------------- /src/elm/Game/Board.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Game/Board.elm -------------------------------------------------------------------------------- /src/elm/Game/Board/Block.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Game/Board/Block.elm -------------------------------------------------------------------------------- /src/elm/Game/Board/Coord.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Game/Board/Coord.elm -------------------------------------------------------------------------------- /src/elm/Game/Board/Falling.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Game/Board/Falling.elm -------------------------------------------------------------------------------- /src/elm/Game/Board/Generate.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Game/Board/Generate.elm -------------------------------------------------------------------------------- /src/elm/Game/Board/Mechanic/Burst.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Game/Board/Mechanic/Burst.elm -------------------------------------------------------------------------------- /src/elm/Game/Board/Mechanic/Pod.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Game/Board/Mechanic/Pod.elm -------------------------------------------------------------------------------- /src/elm/Game/Board/Move.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Game/Board/Move.elm -------------------------------------------------------------------------------- /src/elm/Game/Board/Move/Bearing.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Game/Board/Move/Bearing.elm -------------------------------------------------------------------------------- /src/elm/Game/Board/Move/Check.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Game/Board/Move/Check.elm -------------------------------------------------------------------------------- /src/elm/Game/Board/Move/Move.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Game/Board/Move/Move.elm -------------------------------------------------------------------------------- /src/elm/Game/Board/Scores.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Game/Board/Scores.elm -------------------------------------------------------------------------------- /src/elm/Game/Board/Shift.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Game/Board/Shift.elm -------------------------------------------------------------------------------- /src/elm/Game/Board/Tile.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Game/Board/Tile.elm -------------------------------------------------------------------------------- /src/elm/Game/Board/Wall.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Game/Board/Wall.elm -------------------------------------------------------------------------------- /src/elm/Game/Config/Level.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Game/Config/Level.elm -------------------------------------------------------------------------------- /src/elm/Game/Config/World.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Game/Config/World.elm -------------------------------------------------------------------------------- /src/elm/Game/Config/World/One.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Game/Config/World/One.elm -------------------------------------------------------------------------------- /src/elm/Game/Config/World/Three.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Game/Config/World/Three.elm -------------------------------------------------------------------------------- /src/elm/Game/Config/World/Two.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Game/Config/World/Two.elm -------------------------------------------------------------------------------- /src/elm/Game/Level/Progress.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Game/Level/Progress.elm -------------------------------------------------------------------------------- /src/elm/Game/Level/Tile.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Game/Level/Tile.elm -------------------------------------------------------------------------------- /src/elm/Game/Level/Tile/Constant.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Game/Level/Tile/Constant.elm -------------------------------------------------------------------------------- /src/elm/Game/Level/Tutorial.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Game/Level/Tutorial.elm -------------------------------------------------------------------------------- /src/elm/Game/Lives.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Game/Lives.elm -------------------------------------------------------------------------------- /src/elm/Game/Messages.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Game/Messages.elm -------------------------------------------------------------------------------- /src/elm/Geometry/Shape.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Geometry/Shape.elm -------------------------------------------------------------------------------- /src/elm/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Main.elm -------------------------------------------------------------------------------- /src/elm/Main/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Main/index.d.ts -------------------------------------------------------------------------------- /src/elm/Ports/Audio.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Ports/Audio.elm -------------------------------------------------------------------------------- /src/elm/Ports/Cache.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Ports/Cache.elm -------------------------------------------------------------------------------- /src/elm/Ports/Scroll.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Ports/Scroll.elm -------------------------------------------------------------------------------- /src/elm/Ports/Swipe.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Ports/Swipe.elm -------------------------------------------------------------------------------- /src/elm/Scene/Garden.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Scene/Garden.elm -------------------------------------------------------------------------------- /src/elm/Scene/Garden/Chrysanthemum.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Scene/Garden/Chrysanthemum.elm -------------------------------------------------------------------------------- /src/elm/Scene/Garden/Cornflower.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Scene/Garden/Cornflower.elm -------------------------------------------------------------------------------- /src/elm/Scene/Garden/Hills.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Scene/Garden/Hills.elm -------------------------------------------------------------------------------- /src/elm/Scene/Garden/Sunflower.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Scene/Garden/Sunflower.elm -------------------------------------------------------------------------------- /src/elm/Scene/Hub.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Scene/Hub.elm -------------------------------------------------------------------------------- /src/elm/Scene/Intro.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Scene/Intro.elm -------------------------------------------------------------------------------- /src/elm/Scene/Intro/DyingLandscape.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Scene/Intro/DyingLandscape.elm -------------------------------------------------------------------------------- /src/elm/Scene/Intro/GrowingSeeds.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Scene/Intro/GrowingSeeds.elm -------------------------------------------------------------------------------- /src/elm/Scene/Intro/SunflowerMeadow.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Scene/Intro/SunflowerMeadow.elm -------------------------------------------------------------------------------- /src/elm/Scene/Level.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Scene/Level.elm -------------------------------------------------------------------------------- /src/elm/Scene/Level/Board.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Scene/Level/Board.elm -------------------------------------------------------------------------------- /src/elm/Scene/Level/Board/LineDrag.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Scene/Level/Board/LineDrag.elm -------------------------------------------------------------------------------- /src/elm/Scene/Level/Board/Tile.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Scene/Level/Board/Tile.elm -------------------------------------------------------------------------------- /src/elm/Scene/Level/Board/Tile/Leaving.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Scene/Level/Board/Tile/Leaving.elm -------------------------------------------------------------------------------- /src/elm/Scene/Level/Board/Tile/Line.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Scene/Level/Board/Tile/Line.elm -------------------------------------------------------------------------------- /src/elm/Scene/Level/Board/Tile/Position.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Scene/Level/Board/Tile/Position.elm -------------------------------------------------------------------------------- /src/elm/Scene/Level/Board/Tile/Scale.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Scene/Level/Board/Tile/Scale.elm -------------------------------------------------------------------------------- /src/elm/Scene/Level/Board/Tile/Stroke.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Scene/Level/Board/Tile/Stroke.elm -------------------------------------------------------------------------------- /src/elm/Scene/Level/TopBar.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Scene/Level/TopBar.elm -------------------------------------------------------------------------------- /src/elm/Scene/Level/Tutorial.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Scene/Level/Tutorial.elm -------------------------------------------------------------------------------- /src/elm/Scene/Retry.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Scene/Retry.elm -------------------------------------------------------------------------------- /src/elm/Scene/Summary.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Scene/Summary.elm -------------------------------------------------------------------------------- /src/elm/Scene/Summary/Chrysanthemum.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Scene/Summary/Chrysanthemum.elm -------------------------------------------------------------------------------- /src/elm/Scene/Summary/Cornflower.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Scene/Summary/Cornflower.elm -------------------------------------------------------------------------------- /src/elm/Scene/Summary/Sunflower.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Scene/Summary/Sunflower.elm -------------------------------------------------------------------------------- /src/elm/Scene/Title.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Scene/Title.elm -------------------------------------------------------------------------------- /src/elm/Seed.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Seed.elm -------------------------------------------------------------------------------- /src/elm/Utils/Animated.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Utils/Animated.elm -------------------------------------------------------------------------------- /src/elm/Utils/Attribute.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Utils/Attribute.elm -------------------------------------------------------------------------------- /src/elm/Utils/Background.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Utils/Background.elm -------------------------------------------------------------------------------- /src/elm/Utils/Color.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Utils/Color.elm -------------------------------------------------------------------------------- /src/elm/Utils/Cycle.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Utils/Cycle.elm -------------------------------------------------------------------------------- /src/elm/Utils/Debug.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Utils/Debug.elm -------------------------------------------------------------------------------- /src/elm/Utils/Dict.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Utils/Dict.elm -------------------------------------------------------------------------------- /src/elm/Utils/Element.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Utils/Element.elm -------------------------------------------------------------------------------- /src/elm/Utils/Geometry.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Utils/Geometry.elm -------------------------------------------------------------------------------- /src/elm/Utils/Html.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Utils/Html.elm -------------------------------------------------------------------------------- /src/elm/Utils/List.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Utils/List.elm -------------------------------------------------------------------------------- /src/elm/Utils/Sine.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Utils/Sine.elm -------------------------------------------------------------------------------- /src/elm/Utils/Style.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Utils/Style.elm -------------------------------------------------------------------------------- /src/elm/Utils/Svg.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Utils/Svg.elm -------------------------------------------------------------------------------- /src/elm/Utils/Time.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Utils/Time.elm -------------------------------------------------------------------------------- /src/elm/Utils/Time/Clock.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Utils/Time/Clock.elm -------------------------------------------------------------------------------- /src/elm/Utils/Transform.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Utils/Transform.elm -------------------------------------------------------------------------------- /src/elm/Utils/Transition.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Utils/Transition.elm -------------------------------------------------------------------------------- /src/elm/Utils/Unit.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Utils/Unit.elm -------------------------------------------------------------------------------- /src/elm/Utils/Update.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Utils/Update.elm -------------------------------------------------------------------------------- /src/elm/Window.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/elm/Window.elm -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/ts/audio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/ts/audio.ts -------------------------------------------------------------------------------- /src/ts/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/ts/cache.ts -------------------------------------------------------------------------------- /src/ts/cheats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/ts/cheats.ts -------------------------------------------------------------------------------- /src/ts/scroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/ts/scroll.ts -------------------------------------------------------------------------------- /src/ts/swipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/src/ts/swipe.ts -------------------------------------------------------------------------------- /tests/MoveTest.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/tests/MoveTest.elm -------------------------------------------------------------------------------- /tests/PodTest.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/tests/PodTest.elm -------------------------------------------------------------------------------- /tests/ProgressTest.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/tests/ProgressTest.elm -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewMacmurray/seeds-game/HEAD/tsconfig.json --------------------------------------------------------------------------------