This is a visualizer for finding combos with https://commanderspellbook.com.
Every coloured connection between multiple cards is a infinite combo. The bigger the card, the more combos it's a part of.

https://www.python.org/downloads/
# go to the folder you cloned this repo to, set up a python virtual environment
python -m venv venv
# activate the venv
# windows
.\venv\Scripts\activate
# linux
source venv/bin/activatepip install notebook
jupyter notebook- The CLI will display the port your jupyter notebook is running on
- the code is in http://localhost:8888/notebooks/main.ipynb
- edit he color identiy & your starting point, for example for a blue, white flicker deck:
color_name = "Azorius"
card_names = [
"Wormfang Drake",
"Teleportation Circle"
]- you can remove cards via the
removelistfrom your graph. Especially if you dig deeper, cards like Ashnod's Altar tend to create massive clumps.