taw / magic-preconstructed-decks

Magic: the Gathering Preconstructed Decks
6 stars 9 forks source link

Pro Tour 1996 decks #37

Closed davidmartos96 closed 1 year ago

davidmartos96 commented 1 year ago

Only decks from 1997 are being listed, but 1996 decks are listed in this page in the Wiki https://mtg.fandom.com/wiki/Pro_Tour_Collector_Set

Here are all the cards with golden border for that tournament https://scryfall.com/sets/ptc

To decide which printing to use for each deck, the collector number could be used. As an example for the player Bertrand Lestree, the cards have the following number in Scryfall and MTGJSON
bl1sb -> BL for Bertrand Lestree, card number 1, SB for sideboard

It would be nice to support that tournament as well.

taw commented 1 year ago

Good spot. I'll add them.

taw commented 1 year ago

Most printings are unambiguous, but basic counts are a mystery (it's probably fine to just divide them evenly unless someone really cares) , and there's 4 Order of the Ebon Hand but 3 printings (issue with two decks).

bin/resolve_card "ptc" "Bertrand Lestree, Finalist" "Forest" "[PTC:bl376]"
bin/resolve_card "ptc" "Bertrand Lestree, Finalist" "Forest" "[PTC:bl377]"
bin/resolve_card "ptc" "Bertrand Lestree, Finalist" "Forest" "[PTC:bl378]"
bin/resolve_card "ptc" "Bertrand Lestree, Finalist" "Plains" "[PTC:bl364]"
bin/resolve_card "ptc" "Bertrand Lestree, Finalist" "Plains" "[PTC:bl365]"
bin/resolve_card "ptc" "Bertrand Lestree, Finalist" "Plains" "[PTC:bl366]"
bin/resolve_card "ptc" "Eric Tam, Quarterfinalist" "Mountain" "[PTC:et373]"
bin/resolve_card "ptc" "Eric Tam, Quarterfinalist" "Mountain" "[PTC:et374]"
bin/resolve_card "ptc" "Eric Tam, Quarterfinalist" "Mountain" "[PTC:et375]"
bin/resolve_card "ptc" "Eric Tam, Quarterfinalist" "Plains" "[PTC:et364]"
bin/resolve_card "ptc" "Eric Tam, Quarterfinalist" "Plains" "[PTC:et365]"
bin/resolve_card "ptc" "Eric Tam, Quarterfinalist" "Plains" "[PTC:et366]"
bin/resolve_card "ptc" "George Baxter, Quarterfinalist" "Order of the Ebon Hand" "[PTC:gb42a]"
bin/resolve_card "ptc" "George Baxter, Quarterfinalist" "Order of the Ebon Hand" "[PTC:gb42b]"
bin/resolve_card "ptc" "George Baxter, Quarterfinalist" "Order of the Ebon Hand" "[PTC:gb42c]"
bin/resolve_card "ptc" "George Baxter, Quarterfinalist" "Swamp" "[PTC:gb370]"
bin/resolve_card "ptc" "George Baxter, Quarterfinalist" "Swamp" "[PTC:gb371]"
bin/resolve_card "ptc" "George Baxter, Quarterfinalist" "Swamp" "[PTC:gb372]"
bin/resolve_card "ptc" "Leon Lindback, Semifinalist" "Order of the Ebon Hand" "[PTC:ll42a]"
bin/resolve_card "ptc" "Leon Lindback, Semifinalist" "Order of the Ebon Hand" "[PTC:ll42b]"
bin/resolve_card "ptc" "Leon Lindback, Semifinalist" "Order of the Ebon Hand" "[PTC:ll42c]"
bin/resolve_card "ptc" "Leon Lindback, Semifinalist" "Swamp" "[PTC:ll370]"
bin/resolve_card "ptc" "Leon Lindback, Semifinalist" "Swamp" "[PTC:ll371]"
bin/resolve_card "ptc" "Leon Lindback, Semifinalist" "Swamp" "[PTC:ll372]"
bin/resolve_card "ptc" "Mark Justice, Quarterfinalist" "Mountain" "[PTC:mj373]"
bin/resolve_card "ptc" "Mark Justice, Quarterfinalist" "Mountain" "[PTC:mj374]"
bin/resolve_card "ptc" "Mark Justice, Quarterfinalist" "Mountain" "[PTC:mj375]"
bin/resolve_card "ptc" "Mark Justice, Quarterfinalist" "Plains" "[PTC:mj364]"
bin/resolve_card "ptc" "Mark Justice, Quarterfinalist" "Plains" "[PTC:mj365]"
bin/resolve_card "ptc" "Mark Justice, Quarterfinalist" "Plains" "[PTC:mj366]"
bin/resolve_card "ptc" "Michael Loconto, Champion" "Island" "[PTC:ml367]"
bin/resolve_card "ptc" "Michael Loconto, Champion" "Island" "[PTC:ml368]"
bin/resolve_card "ptc" "Michael Loconto, Champion" "Island" "[PTC:ml369]"
bin/resolve_card "ptc" "Michael Loconto, Champion" "Plains" "[PTC:ml364]"
bin/resolve_card "ptc" "Michael Loconto, Champion" "Plains" "[PTC:ml365]"
bin/resolve_card "ptc" "Michael Loconto, Champion" "Plains" "[PTC:ml366]"
bin/resolve_card "ptc" "Preston Poulter, Semifinalist" "Forest" "[PTC:pp376]"
bin/resolve_card "ptc" "Preston Poulter, Semifinalist" "Forest" "[PTC:pp377]"
bin/resolve_card "ptc" "Preston Poulter, Semifinalist" "Forest" "[PTC:pp378]"
bin/resolve_card "ptc" "Preston Poulter, Semifinalist" "Plains" "[PTC:pp364]"
bin/resolve_card "ptc" "Preston Poulter, Semifinalist" "Plains" "[PTC:pp365]"
bin/resolve_card "ptc" "Preston Poulter, Semifinalist" "Plains" "[PTC:pp366]"
bin/resolve_card "ptc" "Shawn Hammer Regnier, Quarterfinalist" "Island" "[PTC:shr367]"
bin/resolve_card "ptc" "Shawn Hammer Regnier, Quarterfinalist" "Island" "[PTC:shr368]"
bin/resolve_card "ptc" "Shawn Hammer Regnier, Quarterfinalist" "Island" "[PTC:shr369]"
bin/resolve_card "ptc" "Shawn Hammer Regnier, Quarterfinalist" "Plains" "[PTC:shr364]"
bin/resolve_card "ptc" "Shawn Hammer Regnier, Quarterfinalist" "Plains" "[PTC:shr365]"
bin/resolve_card "ptc" "Shawn Hammer Regnier, Quarterfinalist" "Plains" "[PTC:shr366]"
davidmartos96 commented 1 year ago

Great! Yes, I think splitting evenly would be fine, and just pick any printing when one is left.

Another interesting case I found, I don't know if the assertions caught it, is the card "Order of Leitbur", which has 4 copies in a deck and the PTC set has 2 non sideboard printings, a male and a female knight. Probably the deck is 2 each.

taw commented 1 year ago

All other cards had exactly the same number of copies in deck and in db, when divided by deck name and mb/sb.

taw commented 1 year ago

All of them should be working now. Links to all 8 decks are at https://mtg.wtf/set/ptc

davidmartos96 commented 1 year ago

Thanks a lot!