Game Programmer

"Pong (But Better)"
This was my 1st ever game made using Stencyl. It is a modified version of Pong with 2 unique player abilities that can be activated by both players. It is a 2 player game.

GAME PREVIEW

.png)
Player Skill 1
This code is for the first ability Speed Up. This code will speed up the player's paddle to allow the player to reach the ball easier and faster. The ability will have a 5 second cooldown. After the action1 key is pressed, a game attribute p1skill1cooldown will be set to false. Only after 5 seconds will the p1skill1cooldown be set to true. There is another similar code but for Player 2's skill 1.
This code is for the player's ability to shrink the enemies paddle, reducing the size of the paddle. When the action2 key is pressed, a game attribute p1skill2cooldown will be set to false. Only after 8 seconds will the p1skill2cooldown be set to true. This is because the cooldown for the skill is 8 seconds. However after 5 seconds, the p1skillrestriction will be set to false, allowing the player to use other skills.
Player Skill 2
.png)