Skip to content

thekakkun/speed-snek

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🐍 Speed Snek: The game of Snake, on speed!

Speed Snek can be played right here on GitHub or at itch.io!

Read more about the development of the game here.

What is it?

A mash-up of the classic computer game Snake and the 1994 movie Speed starring Keanu Reeves and Sandra Bullock.

Tech Stack

  • Parcel: Build tool
  • TypeScript: No frameworks were used, just TypeScript transpiled into plain JS.
  • HTML canvas: The game is rendered within an HTML canvas.

The rules of the game

🎮 Control the snek with your mouse or finger

👍 Eat the pellets! They'll increase:

  • your score
  • the length of your snek
  • the minimum speed limit

❌ Be careful! It's game over if you:

  • go below the minimum speed limit
  • collide into yourself or the wall

Todo

  • Maybe different kinds of food pellets? Power-ups?
  • Figure out scaling on phone screens
  • Create a minimal version of the game
  • Implement a starting screen and game over menu
  • Finish the speed & score UI
  • Visual design overhaul
  • Tweak the difficulty curve, consider adding lives maybe?