// Generated on 2014-03-28 using generator-phaser-official 0.0.8-rc-2
'use strict';
-var config = require('./config.json');
var _ = require('underscore');
_.str = require('underscore.string');
==================
HTML5 game implementation of the Entelect 100k challenge for 2014 (http://challenge.entelect.co.za/).
+This game is written in JavaScript using the Phaser game engine. It can be played here: http://jworthe.github.io/InteractivePacbot
-Players take turns giving commands to their Pac-Bots. At the end of the game, the player who has managed to eat the most pills is the winner.
+The Rules
+---------
-This is currently a work in progress.
+1. It's turn based. Yellow goes first.
+2. The player with the most points wins.
+3. Small pills are worth 1 point, and big pills are worth 10 points.
+4. Each player has a poison pill that they can drop behind them. If a player eats a poison pill, they are teleported to the respawn zone in the middle of the map.
+5. If a player moves to eat their opponent, the opponent is teleported to the respawn zone in the middle of the map.
+6. If you want to start a new game, pressing ESC will reset the game to its initial state.
game.state.add('load', require('./states/load'));
game.state.add('play', require('./states/play'));
-
game.state.start('boot');
};
\ No newline at end of file