A fast-paced arcade game built with Rust and Bevy where you navigate through the crypto market, collecting bitcoins while avoiding market hazards.
Navigate your player through the crypto market:
- Collect bitcoins to increase your score
- Avoid obstacles:
- Tax collectors (-1 point)
- Twitter Trolls (-2 points)
- Bear Market (lose a life) - Only one life - make it count!
- Score increases difficulty progressively
←→Arrow keys to moveSPACEto start gameSPACEto restart after game over
src/
├── main.rs # Game initialization
├── game.rs # Game states and plugin setup
├── components.rs # Game components and resources
└── systems/
├── mod.rs # Systems module
├── setup.rs # Game setup and assets
├── menu.rs # Menu system
├── player.rs # Player movement and collision
├── bitcoin.rs # Bitcoin spawning and collection
├── obstacle.rs # Obstacle spawning and movement
└── game_over.rs # Game over handling
-
Requirements:
- Rust and Cargo installed
- Required assets in
assets/folder
-
Run:
cargo run
Place these images in assets/ folder:
player.pngbitcoin.pngtax.pngtroll.pngbear.png


