This grew out of a thread on the gamedev.net forums, and has proven to be a pretty interesting little game.
First the tiles. Any set of tiles will do. Mine happens to be a set of all unique tiles minus the two six-terminal tiles that don't change when rotated. I also made three start tiles. That's a total of 40 tiles, and they can support 3 players. If I made another start tile, it could do 4 players, but I don't have 4 players to test with so I probably won't bother.
Players get a hand of two tiles, and draw another whenever they play one. I discovered that being able to see your opponents available tiles is an important part of the game.
For the purpose of this, a 'path' is an unbroken connection spanning 1 or more tiles. A controlled path is a path occupied by a player's token.
The rules for winning are simple; if at any time you make a change that connects your token to your opponents token, your opponent loses. (Naturally, if there are 3 players, you have to destroy both.)
Each turn, you must either place a new tile from your hand, or rotate a tile which your controlled path crosses. New tiles must connect to your controlled path.
Second, you must move your token one tile along your controlled path. You cannot move your token back the way it came unless there is no other legal move.
Play alternates until someone wins.
I haven't yet played a game where I ran out of tiles, when I do I will have to devise some rule to cover it.
3 player games always seem to reach the same point, where any player can attack any other player at any time, but not both; Thus, whichever player attacks first hands victory to the player he's not attacking.
First the tiles. Any set of tiles will do. Mine happens to be a set of all unique tiles minus the two six-terminal tiles that don't change when rotated. I also made three start tiles. That's a total of 40 tiles, and they can support 3 players. If I made another start tile, it could do 4 players, but I don't have 4 players to test with so I probably won't bother.
Players get a hand of two tiles, and draw another whenever they play one. I discovered that being able to see your opponents available tiles is an important part of the game.
For the purpose of this, a 'path' is an unbroken connection spanning 1 or more tiles. A controlled path is a path occupied by a player's token.
The rules for winning are simple; if at any time you make a change that connects your token to your opponents token, your opponent loses. (Naturally, if there are 3 players, you have to destroy both.)
Each turn, you must either place a new tile from your hand, or rotate a tile which your controlled path crosses. New tiles must connect to your controlled path.
Second, you must move your token one tile along your controlled path. You cannot move your token back the way it came unless there is no other legal move.
Play alternates until someone wins.
I haven't yet played a game where I ran out of tiles, when I do I will have to devise some rule to cover it.
3 player games always seem to reach the same point, where any player can attack any other player at any time, but not both; Thus, whichever player attacks first hands victory to the player he's not attacking.