https://github.com/usmanbashir/tic-tac-chase-toe
Tic Tac Chase Toe
https://github.com/usmanbashir/tic-tac-chase-toe
game html5 javascript
Last synced: 4 months ago
JSON representation
Tic Tac Chase Toe
- Host: GitHub
- URL: https://github.com/usmanbashir/tic-tac-chase-toe
- Owner: usmanbashir
- Created: 2019-07-12T20:04:46.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-09-19T14:40:44.000Z (almost 7 years ago)
- Last Synced: 2025-08-22T01:00:28.381Z (10 months ago)
- Topics: game, html5, javascript
- Language: JavaScript
- Homepage: http://tic-tac-chase-toe.surge.sh/
- Size: 677 KB
- Stars: 0
- Watchers: 1
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tic Tac Chase Toe
A turn-based board game in JavaScript
- [Play Online](https://tic-tac-chase-toe.surge.sh/)
- [Read Documentation](https://tic-tac-chase-toe.surge.sh/docs/)
----
An online game written in vanilla JavaScript, in which 2 players play each turn to compete.
The game starts by randomly generating the game map. Where each box can be either empty or blocked. With a limited number of weapons (up to 4) placed randomly and can be collected by players who pass through. While starting each player with a basic default weapon.
For each turn, a player can move from one to three boxes (horizontally or vertically) before ending their turn. They obviously can not pass through obstacles directly.
If a player passes over a box containing a weapon, they leave their current weapon on-site and replace it with the new one.
If players cross over adjacent squares (horizontally or vertically), a battle begins.
During combat, the game works as follows:
- Each player attacks in turn
- The damage depends on the player's weapon
- The player can choose to attack or defend against the next shot
- If the player chooses to defend themselves, they sustain 50% less damage than normal
- As soon as the HP/life points of a player (initially 100) fall to 0, they lose. A message appears and the game is over.
This game was an experiment to see what could be achieved using modern vanilla JavaScript using Object-Oriented Programming. It was also an exercise to see how good comments can also help produce good documentation.
Although there was a lot more I wanted to do with this project in terms of features and design. But I had to stop somewhere and version 1 was more than good enough for that.