Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions GoFish.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Go Fish is a card game that uses all 52 cards in the deck.


Players sit in a circle, or around a table.
Players sit in a circle, or around a table. //What is the max amount of players the game can support?
Shuffle cards.
Pass 1 card to each person.
Repeat until each person has recieved 5 cards including the dealer:
Expand All @@ -20,7 +20,7 @@ Repeat until each person has recieved 5 cards including the dealer:

//Example if you are dealt all 4 aces and 1 King put the 4 aces down gaining that point.
While player asks for a card it must be a card in their deck
If not they can't ask
If card not in hand player cannot ask for the card they asked
Else if player asks you for card:
If you have cards give cards of value
If not say Go Fish
Expand All @@ -32,7 +32,7 @@ Repeat until each person has recieved 5 cards including the dealer:
Repeat turn:
If not turn is over.
If you have run out of cards:
If you run out of cards draw 5 from deck
draw 5 from deck
If deck < 5:
take all cards.
If no cards in deck:
Expand All @@ -47,7 +47,7 @@ Repeat until each person has recieved 5 cards including the dealer:
add one point
// Count all points and add up
If player has more points than the other players they win
If tie no winner.
If points equal to each other players points there no winner.

//You win if you end the game with more points than your opponent
One point = 4 of same card value
Expand Down