JordyMoos / elm-pixel-boulder-game

Pixel Boulder Game in Elm
https://jordymoos.github.io/elm-pixel-boulder-game/?startLevel=official%2F001&hideDebug=1
MIT License
41 stars 6 forks source link

Supaplex style "eating around" #157

Closed JordyMoos closed 5 years ago

JordyMoos commented 5 years ago

In Supaplex you can space + arrow to do an action on neighbor tiles. Like consume the dirt (not sure if you can also push objects but that should also be possible) This ability adds dynamic and strategy to the game, we should have it too!

It does not sound really hard, we probably easily can check if two buttons are pressed and check for actions then. The toughest part is probably refactoring the code to make it work nicely. Because the action like "eating" (which is collection is our game) is done by different components.

Sounds like fun tho!

JordyMoos commented 5 years ago

Done https://github.com/JordyMoos/elm-pixel-boulder-game/pull/158