FoonLudum Dare ExplorerLD34 → Scary Snake

Scary Snake

By beastletsplay

View on Wayback Machine

CategoryRankScoreCount
Mood8521.93
Graphics9061.53
Theme9272.58
Fun9312.15
Innovation9411.29
Overall9721.86
Coolness167941

Comments

flukeshot 2015-12-15 05:55

Too scary for me. I particularly enjoyed pepe.png sitting in the root of the game.

synthetic-entropy 2015-12-15 05:56

Nice first entry, looking forward to seeing improvements next compo. :)

frostvoid 2015-12-15 05:56

Doesn't work for me (terminal window just opens and does nothing) when I try to launch the .exe file (win7)

korvexx 2015-12-15 05:59

Can't rate high on innovation, and the game doesn't fit the theme, but it works and is fun. Good work, and best of luck with your other games.

intxparts 2015-12-15 23:37

Congrats on your first LD game! I really liked the simplicity of it and it fit the growing theme nicely. Nice job!

mikaza 2015-12-16 18:31

Nice first game, good luck for the next one !

philstrahl 2015-12-17 15:40

Congrats on your first entry -- you've made it! :) I enjoyed it, gave me fond memories of NIBBLES.BAS if anybody remembers it.

rzuf 2015-12-17 15:59

A cool snake clone. :) Congrats on finished game!

rfgpfeiffer 2015-12-18 09:49

I see how it fits the theme "growing".

Quitting the game on losing can be very annoying. I did the same thing with my first LD game (also written in pygame). It is better to put something there like "Press SPACE to exit" than nothing at all.

Also some advice for coding things like snake and tetris: Try to keep the coordinates small (so lead_x_change in your code would be 0,1, or -1) and multiply by an up-scaling factor in rendering like:

pygame.draw.rect(gameDisplay,orange,[XnY[0]*SCALE, XnY[1]*SCALE,1*SCALE,1*SCALE])

That makes it easier to change the resolution later.

- bob

mahjong50 2015-12-21 19:22

Good job with finishing a game.
Maybe next time try to improve the controls of your game, since I can accidently kill myself by moving in the other direction.

camlang 2015-12-27 20:32

Nice little game. It's not fit in themes, but i think it is cool to create own engine for little games. Good luck with your next games!

seleb 2016-01-03 08:07

I noticed that when you lose the game, it just throws an error and quits. Here's the error text:

Traceback (most recent call last):
File "C:\Python34\lib\site-packages\cx_Freeze\initscripts\Console.py", line 27, in <module>
File "ScarySnake.py", line 112, in <module>
File "ScarySnake.py", line 44, in message_to_screen
NameError: name 'font' is not defined

Other than that it's a good first effort!