WARBITS
A two player arcade style fighting game with binary state mechanics of two buttons
How to play
On PC :
-
Player 1 (Purple) : button 1 and 2 (number)
-
Player 2 (Red) : num key 1 and 2
On Mobile:
-
Player 1 (Purple) : Bottom UI buttons Left and Right
-
Player 2 (Red) : Top Ui buttons Left and Right
What to do
-
Shoot bullets at each other, winner is decided when one of the players health drops to zero
-
The bullets destroy each other on collision
-
Time limit 1 min
Try it out!! Press Start
Mechanics
-
The game follows the binary state switching mechanics
-
A button press changes the state from high to low, or low to high.
-
Consider two bits at low state, which means no active ships that can shoot
-
On press of left button (Key 1/ num 1 or Left UI button) the 1st bit is set to high which on press shoots a bullet from ship marked (1,0).
-
If next the second bit is pressed the ship marked (1,1) will shoot since the 1st bit is already active.
0 , 0
1 , 0
1 , 1
0 , 1
Ideal State
Ship 1
Ship 3
Ship 2

Warbits
By : Chaitanya Verma
Engine : Godot
Time : 2 week