Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Game idea: Tic-Tac-Toe #96

Open
tk3369 opened this issue Jul 10, 2021 · 0 comments
Open

Game idea: Tic-Tac-Toe #96

tk3369 opened this issue Jul 10, 2021 · 0 comments

Comments

@tk3369
Copy link
Member

tk3369 commented Jul 10, 2021

Game play

> ttt
@tk3369, ok - let's play a Tic-Tac-Toe game!
Enter your first move as letter-digit. For example, `ttt b3`.
    a   b   c
  |---|---|---|
1 |   |   |   |
  |---|---|---|
2 |   |   |   |
  |---|---|---|
3 |   |   |   |
  |---|---|---|

> ttt b3
@tk3369, great move!
    a   b   c
  |---|---|---|
1 |   |   |   |
  |---|---|---|
2 |   |   |   |
  |---|---|---|
3 |   | o |   |
  |---|---|---|

Here's my move:
    a   b   c
  |---|---|---|
1 |   |   |   |
  |---|---|---|
2 |   |   | x |
  |---|---|---|
3 |   | o |   |
  |---|---|---|

> ttt b2
@tk3369, great move!
    a   b   c
  |---|---|---|
1 |   |   |   |
  |---|---|---|
2 |   | o | x |
  |---|---|---|
3 |   | o |   |
  |---|---|---|

Here's my move:
    a   b   c
  |---|---|---|
1 |   | x |   |
  |---|---|---|
2 |   | o | x |
  |---|---|---|
3 |   | o |   |
  |---|---|---|
  
> ttt c3
@tk3369, great move!
    a   b   c
  |---|---|---|
1 |   | x |   |
  |---|---|---|
2 |   | o | x |
  |---|---|---|
3 |   | o | o |
  |---|---|---|

Here's my move:
    a   b   c
  |---|---|---|
1 |   | x |   |
  |---|---|---|
2 |   | o | x |
  |---|---|---|
3 | x | o | o |
  |---|---|---|
  
> ttt a1
@tk3369, wow, you are smart! you win! :-)
    a   b   c
  |---|---|---|
1 | o | x |   |
  |---|---|---|
2 |   | o | x |
  |---|---|---|
3 | x | o | o |
  |---|---|---|

Other commands:

> ttt view
@tk3369, it's your turn. Here's how it looks like:
    a   b   c
  |---|---|---|
1 |   | x |   |
  |---|---|---|
2 |   | o | x |
  |---|---|---|
3 |   | o |   |
  |---|---|---|
  
> ttt wat
@tk3369, "wat" is not a valid position.

> ttt b3
@tk3369, hey, position b3 is already occupied.

> ttt
@tk3369, hey, a game is currently in progress. Type "ttt abandon" to give up.

> ttt abandon
@tk3369, ok, thank you for playing.

Wordings

Common responses:

  • great move!
  • are you really sure about that?
  • excellent choice.

Final statement:

  • wow, you are smart! you win! :-)
  • haha, try better next time.
  • i can't believe that it's a draw...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant