├── .gitignore ├── .npmignore ├── .npmrc ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── bin └── tutor ├── lib ├── command.js ├── formatters.js ├── gatherer.js ├── gatherer │ ├── card.js │ ├── languages.js │ ├── printings.js │ └── set.js ├── languages.js ├── pagination.js ├── rarities.js ├── supertypes.js ├── symbols.js └── tutor.js ├── logo@2x.png ├── package.json ├── scripts ├── fixtures └── prepublish ├── src ├── command.coffee ├── formatters.coffee ├── gatherer.coffee ├── gatherer │ ├── card.coffee │ ├── languages.coffee │ ├── printings.coffee │ └── set.coffee ├── languages.coffee ├── pagination.coffee ├── rarities.coffee ├── supertypes.coffee ├── symbols.coffee └── tutor.coffee └── test ├── fixtures ├── cards │ ├── 159132~details │ ├── 159132~languages │ ├── 159132~printings │ ├── 247175~details │ ├── 247175~languages │ ├── 247175~printings │ ├── 262675~details │ ├── 262675~languages │ ├── 262675~printings │ ├── 262698~details │ ├── 262698~languages │ ├── 262698~printings │ ├── 27165~fire~details │ ├── 27165~fire~languages │ ├── 27165~fire~printings │ ├── 27165~ice~details │ ├── 27165~ice~languages │ ├── 27165~ice~printings │ ├── 289327~details │ ├── 289327~languages │ ├── 289327~languages~2 │ ├── 289327~printings │ ├── 2960~details │ ├── 2960~languages │ ├── 2960~printings │ ├── afflicted-deserter~details │ ├── afflicted-deserter~languages │ ├── afflicted-deserter~printings │ ├── ajani-goldmane~details │ ├── ajani-goldmane~languages │ ├── ajani-goldmane~printings │ ├── akroma-angel-of-wrath-avatar~details │ ├── akroma-angel-of-wrath-avatar~languages │ ├── akroma-angel-of-wrath-avatar~printings │ ├── ancestral-vision~details │ ├── ancestral-vision~languages │ ├── ancestral-vision~printings │ ├── braids-cabal-minion~details │ ├── braids-cabal-minion~languages │ ├── braids-cabal-minion~printings │ ├── cardpecker~details │ ├── cardpecker~languages │ ├── cardpecker~printings │ ├── cheap-ass~details │ ├── cheap-ass~languages │ ├── cheap-ass~printings │ ├── crackleburr~details │ ├── crackleburr~languages │ ├── crackleburr~printings │ ├── diamond-faerie~details │ ├── diamond-faerie~languages │ ├── diamond-faerie~printings │ ├── fire~details │ ├── fire~languages │ ├── fire~printings │ ├── fizzbuzzldspla~details │ ├── fizzbuzzldspla~languages │ ├── fizzbuzzldspla~printings │ ├── hill-giant~details │ ├── hill-giant~languages │ ├── hill-giant~printings │ ├── ice~details │ ├── ice~languages │ ├── ice~printings │ ├── jushi-apprentice~details │ ├── jushi-apprentice~languages │ ├── jushi-apprentice~printings │ ├── juzam-djinn~details │ ├── juzam-djinn~languages │ ├── juzam-djinn~printings │ ├── kozilek-the-great-distortion~details │ ├── kozilek-the-great-distortion~languages │ ├── kozilek-the-great-distortion~printings │ ├── sol-ring~details │ ├── sol-ring~languages │ ├── sol-ring~printings │ ├── tomoya-the-revealer~details │ ├── tomoya-the-revealer~languages │ ├── tomoya-the-revealer~printings │ ├── vault-skirge~details │ ├── vault-skirge~languages │ ├── vault-skirge~printings │ ├── werewolf-ransacker~details │ ├── werewolf-ransacker~languages │ └── werewolf-ransacker~printings ├── index └── sets │ ├── apocalypse~0 │ ├── apocalypse~1 │ ├── apocalypse~2 │ ├── apocalypse~3 │ ├── apocalypse~4 │ ├── apocalypse~5 │ ├── apocalypse~checklist │ ├── eventide~0 │ ├── eventide~1 │ ├── eventide~2 │ ├── eventide~3 │ ├── eventide~4 │ ├── eventide~5 │ ├── eventide~6 │ ├── eventide~7 │ ├── eventide~checklist │ ├── future-sight~0 │ ├── future-sight~1 │ ├── future-sight~2 │ ├── future-sight~3 │ ├── future-sight~4 │ ├── future-sight~5 │ ├── future-sight~6 │ ├── future-sight~7 │ ├── future-sight~checklist │ ├── lorwyn~0 │ ├── lorwyn~1 │ ├── lorwyn~10 │ ├── lorwyn~11 │ ├── lorwyn~2 │ ├── lorwyn~3 │ ├── lorwyn~4 │ ├── lorwyn~5 │ ├── lorwyn~6 │ ├── lorwyn~7 │ ├── lorwyn~8 │ ├── lorwyn~9 │ ├── lorwyn~checklist │ ├── new-phyrexia~0 │ ├── new-phyrexia~1 │ ├── new-phyrexia~2 │ ├── new-phyrexia~3 │ ├── new-phyrexia~4 │ ├── new-phyrexia~5 │ ├── new-phyrexia~6 │ ├── new-phyrexia~checklist │ ├── rise-of-the-eldrazi~0 │ ├── rise-of-the-eldrazi~1 │ ├── rise-of-the-eldrazi~2 │ ├── rise-of-the-eldrazi~3 │ ├── rise-of-the-eldrazi~4 │ ├── rise-of-the-eldrazi~5 │ ├── rise-of-the-eldrazi~6 │ ├── rise-of-the-eldrazi~7 │ ├── rise-of-the-eldrazi~8 │ ├── rise-of-the-eldrazi~9 │ ├── rise-of-the-eldrazi~checklist │ ├── saviors-of-kamigawa~0 │ ├── saviors-of-kamigawa~1 │ ├── saviors-of-kamigawa~2 │ ├── saviors-of-kamigawa~3 │ ├── saviors-of-kamigawa~4 │ ├── saviors-of-kamigawa~5 │ ├── saviors-of-kamigawa~6 │ ├── saviors-of-kamigawa~checklist │ ├── shadowmoor~0 │ ├── shadowmoor~1 │ ├── shadowmoor~10 │ ├── shadowmoor~11 │ ├── shadowmoor~2 │ ├── shadowmoor~3 │ ├── shadowmoor~4 │ ├── shadowmoor~5 │ ├── shadowmoor~6 │ ├── shadowmoor~7 │ ├── shadowmoor~8 │ ├── shadowmoor~9 │ ├── shadowmoor~checklist │ ├── unhinged~0 │ ├── unhinged~1 │ ├── unhinged~2 │ ├── unhinged~3 │ ├── unhinged~4 │ ├── unhinged~5 │ ├── unhinged~checklist │ ├── vanguard~0 │ ├── vanguard~1 │ ├── vanguard~2 │ ├── vanguard~3 │ ├── vanguard~4 │ └── vanguard~checklist └── tutor.coffee /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/README.md -------------------------------------------------------------------------------- /bin/tutor: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require('../lib/command').parse(process.argv); 4 | -------------------------------------------------------------------------------- /lib/command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/lib/command.js -------------------------------------------------------------------------------- /lib/formatters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/lib/formatters.js -------------------------------------------------------------------------------- /lib/gatherer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/lib/gatherer.js -------------------------------------------------------------------------------- /lib/gatherer/card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/lib/gatherer/card.js -------------------------------------------------------------------------------- /lib/gatherer/languages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/lib/gatherer/languages.js -------------------------------------------------------------------------------- /lib/gatherer/printings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/lib/gatherer/printings.js -------------------------------------------------------------------------------- /lib/gatherer/set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/lib/gatherer/set.js -------------------------------------------------------------------------------- /lib/languages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/lib/languages.js -------------------------------------------------------------------------------- /lib/pagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/lib/pagination.js -------------------------------------------------------------------------------- /lib/rarities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/lib/rarities.js -------------------------------------------------------------------------------- /lib/supertypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/lib/supertypes.js -------------------------------------------------------------------------------- /lib/symbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/lib/symbols.js -------------------------------------------------------------------------------- /lib/tutor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/lib/tutor.js -------------------------------------------------------------------------------- /logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/logo@2x.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/package.json -------------------------------------------------------------------------------- /scripts/fixtures: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/scripts/fixtures -------------------------------------------------------------------------------- /scripts/prepublish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/scripts/prepublish -------------------------------------------------------------------------------- /src/command.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/src/command.coffee -------------------------------------------------------------------------------- /src/formatters.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/src/formatters.coffee -------------------------------------------------------------------------------- /src/gatherer.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/src/gatherer.coffee -------------------------------------------------------------------------------- /src/gatherer/card.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/src/gatherer/card.coffee -------------------------------------------------------------------------------- /src/gatherer/languages.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/src/gatherer/languages.coffee -------------------------------------------------------------------------------- /src/gatherer/printings.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/src/gatherer/printings.coffee -------------------------------------------------------------------------------- /src/gatherer/set.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/src/gatherer/set.coffee -------------------------------------------------------------------------------- /src/languages.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/src/languages.coffee -------------------------------------------------------------------------------- /src/pagination.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/src/pagination.coffee -------------------------------------------------------------------------------- /src/rarities.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/src/rarities.coffee -------------------------------------------------------------------------------- /src/supertypes.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/src/supertypes.coffee -------------------------------------------------------------------------------- /src/symbols.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/src/symbols.coffee -------------------------------------------------------------------------------- /src/tutor.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/src/tutor.coffee -------------------------------------------------------------------------------- /test/fixtures/cards/159132~details: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=159132 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/159132~languages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/159132~languages -------------------------------------------------------------------------------- /test/fixtures/cards/159132~printings: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Printings.aspx?multiverseid=159132 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/247175~details: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=247175 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/247175~languages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/247175~languages -------------------------------------------------------------------------------- /test/fixtures/cards/247175~printings: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Printings.aspx?multiverseid=247175 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/262675~details: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=262675 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/262675~languages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/262675~languages -------------------------------------------------------------------------------- /test/fixtures/cards/262675~printings: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Printings.aspx?multiverseid=262675 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/262698~details: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=262698 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/262698~languages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/262698~languages -------------------------------------------------------------------------------- /test/fixtures/cards/262698~printings: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Printings.aspx?multiverseid=262698 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/27165~fire~details: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=27165 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/27165~fire~languages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/27165~fire~languages -------------------------------------------------------------------------------- /test/fixtures/cards/27165~fire~printings: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Printings.aspx?multiverseid=27165 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/27165~ice~details: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=27165 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/27165~ice~languages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/27165~ice~languages -------------------------------------------------------------------------------- /test/fixtures/cards/27165~ice~printings: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Printings.aspx?multiverseid=27165 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/289327~details: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=289327 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/289327~languages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/289327~languages -------------------------------------------------------------------------------- /test/fixtures/cards/289327~languages~2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/289327~languages~2 -------------------------------------------------------------------------------- /test/fixtures/cards/289327~printings: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Printings.aspx?multiverseid=289327 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/2960~details: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=2960 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/2960~languages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/2960~languages -------------------------------------------------------------------------------- /test/fixtures/cards/2960~printings: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Printings.aspx?multiverseid=2960 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/afflicted-deserter~details: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Details.aspx?name=Afflicted%20Deserter 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/afflicted-deserter~languages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/afflicted-deserter~languages -------------------------------------------------------------------------------- /test/fixtures/cards/afflicted-deserter~printings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/afflicted-deserter~printings -------------------------------------------------------------------------------- /test/fixtures/cards/ajani-goldmane~details: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Details.aspx?name=Ajani%20Goldmane 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/ajani-goldmane~languages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/ajani-goldmane~languages -------------------------------------------------------------------------------- /test/fixtures/cards/ajani-goldmane~printings: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Printings.aspx?name=Ajani%20Goldmane 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/akroma-angel-of-wrath-avatar~details: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/akroma-angel-of-wrath-avatar~details -------------------------------------------------------------------------------- /test/fixtures/cards/akroma-angel-of-wrath-avatar~languages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/akroma-angel-of-wrath-avatar~languages -------------------------------------------------------------------------------- /test/fixtures/cards/akroma-angel-of-wrath-avatar~printings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/akroma-angel-of-wrath-avatar~printings -------------------------------------------------------------------------------- /test/fixtures/cards/ancestral-vision~details: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Details.aspx?name=Ancestral%20Vision 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/ancestral-vision~languages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/ancestral-vision~languages -------------------------------------------------------------------------------- /test/fixtures/cards/ancestral-vision~printings: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Printings.aspx?name=Ancestral%20Vision 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/braids-cabal-minion~details: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/braids-cabal-minion~details -------------------------------------------------------------------------------- /test/fixtures/cards/braids-cabal-minion~languages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/braids-cabal-minion~languages -------------------------------------------------------------------------------- /test/fixtures/cards/braids-cabal-minion~printings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/braids-cabal-minion~printings -------------------------------------------------------------------------------- /test/fixtures/cards/cardpecker~details: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/cardpecker~details -------------------------------------------------------------------------------- /test/fixtures/cards/cardpecker~languages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/cardpecker~languages -------------------------------------------------------------------------------- /test/fixtures/cards/cardpecker~printings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/cardpecker~printings -------------------------------------------------------------------------------- /test/fixtures/cards/cheap-ass~details: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Details.aspx?name=Cheap%20Ass 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/cheap-ass~languages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/cheap-ass~languages -------------------------------------------------------------------------------- /test/fixtures/cards/cheap-ass~printings: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Printings.aspx?name=Cheap%20Ass 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/crackleburr~details: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Details.aspx?name=Crackleburr 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/crackleburr~languages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/crackleburr~languages -------------------------------------------------------------------------------- /test/fixtures/cards/crackleburr~printings: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Printings.aspx?name=Crackleburr 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/diamond-faerie~details: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Details.aspx?name=Diamond%20Faerie 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/diamond-faerie~languages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/diamond-faerie~languages -------------------------------------------------------------------------------- /test/fixtures/cards/diamond-faerie~printings: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Printings.aspx?name=Diamond%20Faerie 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/fire~details: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Details.aspx?name=Fire 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/fire~languages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/fire~languages -------------------------------------------------------------------------------- /test/fixtures/cards/fire~printings: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Printings.aspx?name=Fire 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/fizzbuzzldspla~details: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Details.aspx?name=fizzbuzzldspla 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/fizzbuzzldspla~languages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/fizzbuzzldspla~languages -------------------------------------------------------------------------------- /test/fixtures/cards/fizzbuzzldspla~printings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/fizzbuzzldspla~printings -------------------------------------------------------------------------------- /test/fixtures/cards/hill-giant~details: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Details.aspx?name=Hill%20Giant 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/hill-giant~languages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/hill-giant~languages -------------------------------------------------------------------------------- /test/fixtures/cards/hill-giant~printings: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Printings.aspx?name=Hill%20Giant 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/ice~details: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Details.aspx?name=Ice 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/ice~languages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/ice~languages -------------------------------------------------------------------------------- /test/fixtures/cards/ice~printings: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Printings.aspx?name=Ice 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/jushi-apprentice~details: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Details.aspx?name=Jushi%20Apprentice 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/jushi-apprentice~languages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/jushi-apprentice~languages -------------------------------------------------------------------------------- /test/fixtures/cards/jushi-apprentice~printings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/jushi-apprentice~printings -------------------------------------------------------------------------------- /test/fixtures/cards/juzam-djinn~details: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Details.aspx?name=Juz%C3%A1m%20Djinn 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/juzam-djinn~languages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/juzam-djinn~languages -------------------------------------------------------------------------------- /test/fixtures/cards/juzam-djinn~printings: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Printings.aspx?name=Juz%C3%A1m%20Djinn 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/kozilek-the-great-distortion~details: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/kozilek-the-great-distortion~details -------------------------------------------------------------------------------- /test/fixtures/cards/kozilek-the-great-distortion~languages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/kozilek-the-great-distortion~languages -------------------------------------------------------------------------------- /test/fixtures/cards/kozilek-the-great-distortion~printings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/kozilek-the-great-distortion~printings -------------------------------------------------------------------------------- /test/fixtures/cards/sol-ring~details: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Details.aspx?name=Sol%20Ring 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/sol-ring~languages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/sol-ring~languages -------------------------------------------------------------------------------- /test/fixtures/cards/sol-ring~printings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/sol-ring~printings -------------------------------------------------------------------------------- /test/fixtures/cards/tomoya-the-revealer~details: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/tomoya-the-revealer~details -------------------------------------------------------------------------------- /test/fixtures/cards/tomoya-the-revealer~languages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/tomoya-the-revealer~languages -------------------------------------------------------------------------------- /test/fixtures/cards/tomoya-the-revealer~printings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/tomoya-the-revealer~printings -------------------------------------------------------------------------------- /test/fixtures/cards/vault-skirge~details: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Details.aspx?name=Vault%20Skirge 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/vault-skirge~languages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/vault-skirge~languages -------------------------------------------------------------------------------- /test/fixtures/cards/vault-skirge~printings: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Card/Printings.aspx?name=Vault%20Skirge 2 | -------------------------------------------------------------------------------- /test/fixtures/cards/werewolf-ransacker~details: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/werewolf-ransacker~details -------------------------------------------------------------------------------- /test/fixtures/cards/werewolf-ransacker~languages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/werewolf-ransacker~languages -------------------------------------------------------------------------------- /test/fixtures/cards/werewolf-ransacker~printings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/cards/werewolf-ransacker~printings -------------------------------------------------------------------------------- /test/fixtures/index: -------------------------------------------------------------------------------- 1 | https://gatherer.wizards.com/Pages/Default.aspx 2 | -------------------------------------------------------------------------------- /test/fixtures/sets/apocalypse~0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/apocalypse~0 -------------------------------------------------------------------------------- /test/fixtures/sets/apocalypse~1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/apocalypse~1 -------------------------------------------------------------------------------- /test/fixtures/sets/apocalypse~2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/apocalypse~2 -------------------------------------------------------------------------------- /test/fixtures/sets/apocalypse~3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/apocalypse~3 -------------------------------------------------------------------------------- /test/fixtures/sets/apocalypse~4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/apocalypse~4 -------------------------------------------------------------------------------- /test/fixtures/sets/apocalypse~5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/apocalypse~5 -------------------------------------------------------------------------------- /test/fixtures/sets/apocalypse~checklist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/apocalypse~checklist -------------------------------------------------------------------------------- /test/fixtures/sets/eventide~0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/eventide~0 -------------------------------------------------------------------------------- /test/fixtures/sets/eventide~1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/eventide~1 -------------------------------------------------------------------------------- /test/fixtures/sets/eventide~2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/eventide~2 -------------------------------------------------------------------------------- /test/fixtures/sets/eventide~3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/eventide~3 -------------------------------------------------------------------------------- /test/fixtures/sets/eventide~4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/eventide~4 -------------------------------------------------------------------------------- /test/fixtures/sets/eventide~5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/eventide~5 -------------------------------------------------------------------------------- /test/fixtures/sets/eventide~6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/eventide~6 -------------------------------------------------------------------------------- /test/fixtures/sets/eventide~7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/eventide~7 -------------------------------------------------------------------------------- /test/fixtures/sets/eventide~checklist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/eventide~checklist -------------------------------------------------------------------------------- /test/fixtures/sets/future-sight~0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/future-sight~0 -------------------------------------------------------------------------------- /test/fixtures/sets/future-sight~1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/future-sight~1 -------------------------------------------------------------------------------- /test/fixtures/sets/future-sight~2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/future-sight~2 -------------------------------------------------------------------------------- /test/fixtures/sets/future-sight~3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/future-sight~3 -------------------------------------------------------------------------------- /test/fixtures/sets/future-sight~4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/future-sight~4 -------------------------------------------------------------------------------- /test/fixtures/sets/future-sight~5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/future-sight~5 -------------------------------------------------------------------------------- /test/fixtures/sets/future-sight~6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/future-sight~6 -------------------------------------------------------------------------------- /test/fixtures/sets/future-sight~7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/future-sight~7 -------------------------------------------------------------------------------- /test/fixtures/sets/future-sight~checklist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/future-sight~checklist -------------------------------------------------------------------------------- /test/fixtures/sets/lorwyn~0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/lorwyn~0 -------------------------------------------------------------------------------- /test/fixtures/sets/lorwyn~1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/lorwyn~1 -------------------------------------------------------------------------------- /test/fixtures/sets/lorwyn~10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/lorwyn~10 -------------------------------------------------------------------------------- /test/fixtures/sets/lorwyn~11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/lorwyn~11 -------------------------------------------------------------------------------- /test/fixtures/sets/lorwyn~2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/lorwyn~2 -------------------------------------------------------------------------------- /test/fixtures/sets/lorwyn~3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/lorwyn~3 -------------------------------------------------------------------------------- /test/fixtures/sets/lorwyn~4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/lorwyn~4 -------------------------------------------------------------------------------- /test/fixtures/sets/lorwyn~5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/lorwyn~5 -------------------------------------------------------------------------------- /test/fixtures/sets/lorwyn~6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/lorwyn~6 -------------------------------------------------------------------------------- /test/fixtures/sets/lorwyn~7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/lorwyn~7 -------------------------------------------------------------------------------- /test/fixtures/sets/lorwyn~8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/lorwyn~8 -------------------------------------------------------------------------------- /test/fixtures/sets/lorwyn~9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/lorwyn~9 -------------------------------------------------------------------------------- /test/fixtures/sets/lorwyn~checklist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/lorwyn~checklist -------------------------------------------------------------------------------- /test/fixtures/sets/new-phyrexia~0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/new-phyrexia~0 -------------------------------------------------------------------------------- /test/fixtures/sets/new-phyrexia~1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/new-phyrexia~1 -------------------------------------------------------------------------------- /test/fixtures/sets/new-phyrexia~2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/new-phyrexia~2 -------------------------------------------------------------------------------- /test/fixtures/sets/new-phyrexia~3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/new-phyrexia~3 -------------------------------------------------------------------------------- /test/fixtures/sets/new-phyrexia~4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/new-phyrexia~4 -------------------------------------------------------------------------------- /test/fixtures/sets/new-phyrexia~5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/new-phyrexia~5 -------------------------------------------------------------------------------- /test/fixtures/sets/new-phyrexia~6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/new-phyrexia~6 -------------------------------------------------------------------------------- /test/fixtures/sets/new-phyrexia~checklist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/new-phyrexia~checklist -------------------------------------------------------------------------------- /test/fixtures/sets/rise-of-the-eldrazi~0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/rise-of-the-eldrazi~0 -------------------------------------------------------------------------------- /test/fixtures/sets/rise-of-the-eldrazi~1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/rise-of-the-eldrazi~1 -------------------------------------------------------------------------------- /test/fixtures/sets/rise-of-the-eldrazi~2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/rise-of-the-eldrazi~2 -------------------------------------------------------------------------------- /test/fixtures/sets/rise-of-the-eldrazi~3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/rise-of-the-eldrazi~3 -------------------------------------------------------------------------------- /test/fixtures/sets/rise-of-the-eldrazi~4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/rise-of-the-eldrazi~4 -------------------------------------------------------------------------------- /test/fixtures/sets/rise-of-the-eldrazi~5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/rise-of-the-eldrazi~5 -------------------------------------------------------------------------------- /test/fixtures/sets/rise-of-the-eldrazi~6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/rise-of-the-eldrazi~6 -------------------------------------------------------------------------------- /test/fixtures/sets/rise-of-the-eldrazi~7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/rise-of-the-eldrazi~7 -------------------------------------------------------------------------------- /test/fixtures/sets/rise-of-the-eldrazi~8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/rise-of-the-eldrazi~8 -------------------------------------------------------------------------------- /test/fixtures/sets/rise-of-the-eldrazi~9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/rise-of-the-eldrazi~9 -------------------------------------------------------------------------------- /test/fixtures/sets/rise-of-the-eldrazi~checklist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/rise-of-the-eldrazi~checklist -------------------------------------------------------------------------------- /test/fixtures/sets/saviors-of-kamigawa~0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/saviors-of-kamigawa~0 -------------------------------------------------------------------------------- /test/fixtures/sets/saviors-of-kamigawa~1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/saviors-of-kamigawa~1 -------------------------------------------------------------------------------- /test/fixtures/sets/saviors-of-kamigawa~2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/saviors-of-kamigawa~2 -------------------------------------------------------------------------------- /test/fixtures/sets/saviors-of-kamigawa~3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/saviors-of-kamigawa~3 -------------------------------------------------------------------------------- /test/fixtures/sets/saviors-of-kamigawa~4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/saviors-of-kamigawa~4 -------------------------------------------------------------------------------- /test/fixtures/sets/saviors-of-kamigawa~5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/saviors-of-kamigawa~5 -------------------------------------------------------------------------------- /test/fixtures/sets/saviors-of-kamigawa~6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/saviors-of-kamigawa~6 -------------------------------------------------------------------------------- /test/fixtures/sets/saviors-of-kamigawa~checklist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/saviors-of-kamigawa~checklist -------------------------------------------------------------------------------- /test/fixtures/sets/shadowmoor~0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/shadowmoor~0 -------------------------------------------------------------------------------- /test/fixtures/sets/shadowmoor~1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/shadowmoor~1 -------------------------------------------------------------------------------- /test/fixtures/sets/shadowmoor~10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/shadowmoor~10 -------------------------------------------------------------------------------- /test/fixtures/sets/shadowmoor~11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/shadowmoor~11 -------------------------------------------------------------------------------- /test/fixtures/sets/shadowmoor~2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/shadowmoor~2 -------------------------------------------------------------------------------- /test/fixtures/sets/shadowmoor~3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/shadowmoor~3 -------------------------------------------------------------------------------- /test/fixtures/sets/shadowmoor~4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/shadowmoor~4 -------------------------------------------------------------------------------- /test/fixtures/sets/shadowmoor~5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/shadowmoor~5 -------------------------------------------------------------------------------- /test/fixtures/sets/shadowmoor~6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/shadowmoor~6 -------------------------------------------------------------------------------- /test/fixtures/sets/shadowmoor~7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/shadowmoor~7 -------------------------------------------------------------------------------- /test/fixtures/sets/shadowmoor~8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/shadowmoor~8 -------------------------------------------------------------------------------- /test/fixtures/sets/shadowmoor~9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/shadowmoor~9 -------------------------------------------------------------------------------- /test/fixtures/sets/shadowmoor~checklist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/shadowmoor~checklist -------------------------------------------------------------------------------- /test/fixtures/sets/unhinged~0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/unhinged~0 -------------------------------------------------------------------------------- /test/fixtures/sets/unhinged~1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/unhinged~1 -------------------------------------------------------------------------------- /test/fixtures/sets/unhinged~2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/unhinged~2 -------------------------------------------------------------------------------- /test/fixtures/sets/unhinged~3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/unhinged~3 -------------------------------------------------------------------------------- /test/fixtures/sets/unhinged~4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/unhinged~4 -------------------------------------------------------------------------------- /test/fixtures/sets/unhinged~5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/unhinged~5 -------------------------------------------------------------------------------- /test/fixtures/sets/unhinged~checklist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/unhinged~checklist -------------------------------------------------------------------------------- /test/fixtures/sets/vanguard~0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/vanguard~0 -------------------------------------------------------------------------------- /test/fixtures/sets/vanguard~1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/vanguard~1 -------------------------------------------------------------------------------- /test/fixtures/sets/vanguard~2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/vanguard~2 -------------------------------------------------------------------------------- /test/fixtures/sets/vanguard~3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/vanguard~3 -------------------------------------------------------------------------------- /test/fixtures/sets/vanguard~4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/vanguard~4 -------------------------------------------------------------------------------- /test/fixtures/sets/vanguard~checklist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/fixtures/sets/vanguard~checklist -------------------------------------------------------------------------------- /test/tutor.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidchambers/tutor/HEAD/test/tutor.coffee --------------------------------------------------------------------------------