Junior Developer
The first project I ever created using Python was the classic game of pong. Using turtle and winsound I was able to create a basic layout of the classic game and adjust the settings accordingly. I added sound effects when the paddles were hit by the ball and a score board for players 1 and 2.
My second project I decided to use the Python built in module, pygame. Using this module I recreated the game Flappy Bird. Using images to create the background I was able to animate it so it looked as though the ground was moving. The pipes were created using a random generator and mirrored, so pipes were added at the top and bottom of the screen. With the bird, I used several images which would loop to make the bird look as though it was flying. I also created a score counter which would increase each time the bird passed a pipe without a collision.
A third project I created was a Final Fantasy style battle game using pygame. Using this module I was able to animate the characters so it seemed as though they were moving when at idle, attacking and also when being hurt. Players take it in turns to strike causing damage to either the bandits (right hand side characters) or the knight (left side). Using a random generator, each player would take a random number of damage which in turn would decrease their health bar. The knight would have the option to use upto 3 potions to heel himself and the bandits would automatically heel once health was below half. Once the health bar reached zero the winner would be announced.
Battle Victory