Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mnito/factors-game
The 🐐 of fun math games
https://github.com/mnito/factors-game
canvas-game game games html5-game javascript javascript-game math math-game mit-license open-source open-source-game
Last synced: about 1 month ago
JSON representation
The 🐐 of fun math games
- Host: GitHub
- URL: https://github.com/mnito/factors-game
- Owner: mnito
- License: mit
- Created: 2016-10-27T00:11:24.000Z (about 8 years ago)
- Default Branch: main
- Last Pushed: 2021-09-26T19:00:57.000Z (about 3 years ago)
- Last Synced: 2023-03-09T03:21:38.386Z (over 1 year ago)
- Topics: canvas-game, game, games, html5-game, javascript, javascript-game, math, math-game, mit-license, open-source, open-source-game
- Language: JavaScript
- Homepage: https://mnito.github.io/factors-game/
- Size: 257 KB
- Stars: 11
- Watchers: 3
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Factors Game
The 🐐 of fun math games, twisting the very rules of math and increasingly challenging your skills
### Screenshot
![Screenshot of level 2 of Factors Game](/etc/screenshots/level-2-night-rainbow-screenshot.png?raw=true "Level 2")
## The Concept
### The Goal
Move your number down through the number board to get as close to 1 as possible.### The Rules
* If your number encounters a factor, it will be divided by that factor.
* All other numbers will add to your number.### The Caveat
The levels are procedurally generated, so you may not be able to get to 1 on some levels. However, these levels further challenge you to find the best solution: the lowest number with the least amount of moves. Your overarching goal is to keep your average as low as possible.
### Basic Initialization
Get your canvas and go!
```javascript
var canvas = document.getElementById('myCanvas');
FactorsGame.init(canvas).start();
```### Author
Michael P. Nitowski <[[email protected]](mailto:[email protected])>
(Twitter: [@mikenitowski](https://twitter.com/mikenitowski),
Web: [mnito.co](http://mnito.co))### License
Factors Game is licensed under the [MIT license](/LICENSE "License of Factors Game").