KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
sequence
★ 15
Open GitHub ↗
Sequence Card Game in Python
Download README (.md)
Explore Similar Repositories
mobile_open
:
MLPerf Mobile benchmarks
eskiz-sms
:
python package for eskiz.uz/sms
unity-verify-code
:
An email parser to get 6 digit verification code
PiDiNet-NCNN
:
PiDiNet running in Android by ncnn
smace
:
Code for the paper "SMACE: A New Method for the Interpretability of Composite Decision Systems", ECML 2022
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
sequence
?
Download (.md)
# Sequence Sequence is an abstract strategy board-and-card game. ## Requirements Use the package manager pip to install following packages :- - Pyqt6 ```bash pip install pyqt6 ``` - Pyqt6-charts ```bash pip install pyqt6-charts ``` ## How to play After following the above steps, you can first move to the src directory and then execute main.py to start the game ```bash cd src/ python main.py ``` ### Game Rules - Each card is pictured twice on the game board, and Jacks (while necessary for game strategy) do not appear on the board. - The player chooses a card from their hand, and places a chip on one of the corresponding spaces of the game board (Example: they choose Ace of Diamonds from their hand and place a chip on the Ace of Diamonds on the board). - Jacks have special powers. - Two-Eyed Jacks can represent any card and may be used to place a chip on any open space on the board. - One-Eyed Jacks can remove an opponent's token from a space. ### Strategy - Each corner of the board has a "Free" space that all players can use to their advantage. This space acts as if it has a chip of each color on it at all times. - To form rows, chips may be placed vertically, horizontally or diagonally. Each complete row of five (or four and a free corner space) is counted as a sequence. Sequences of the same color may intersect, but only at a single position. ### Winning - The game ends when a player complete a sequence of five cards. Cheers!