|
1 | 1 | import { ScryfallExtendedFinish } from "./Finishes";
|
2 | 2 |
|
3 | 3 | type ScryfallPrintAttribute =
|
| 4 | + /** |
| 5 | + * Cards exclusive to the Alchemy format in Arena. |
| 6 | + */ |
4 | 7 | | "alchemy"
|
| 8 | + /** |
| 9 | + * Arena League prize cards. |
| 10 | + * |
| 11 | + * No relation to the video game. |
| 12 | + * |
| 13 | + * @trivia Arena League was a competitive event that ran from 1996 to 2007. |
| 14 | + */ |
5 | 15 | | "arenaleague"
|
| 16 | + /** |
| 17 | + * Project Booster Fun cards. |
| 18 | + */ |
6 | 19 | | "boosterfun"
|
| 20 | + /** |
| 21 | + * Box topper promotional cards found in some sets' booster boxes. |
| 22 | + */ |
7 | 23 | | "boxtopper"
|
| 24 | + /** |
| 25 | + * Prints exclusive to brawl decks. |
| 26 | + */ |
8 | 27 | | "brawldeck"
|
| 28 | + /** |
| 29 | + * Bring-a-friend store event promos. |
| 30 | + */ |
9 | 31 | | "bringafriend"
|
| 32 | + /** |
| 33 | + * Bundle promos. |
| 34 | + */ |
10 | 35 | | "bundle"
|
| 36 | + /** |
| 37 | + * Buyabox promos. |
| 38 | + */ |
11 | 39 | | "buyabox"
|
| 40 | + /** |
| 41 | + * Commander party promos. |
| 42 | + */ |
12 | 43 | | "commanderparty"
|
| 44 | + /** |
| 45 | + * Concept praetors. |
| 46 | + */ |
13 | 47 | | "concept"
|
| 48 | + /** |
| 49 | + * Convention promos. |
| 50 | + */ |
14 | 51 | | "convention"
|
| 52 | + /** |
| 53 | + * Cards datestamped in the corner of the art frame. |
| 54 | + */ |
15 | 55 | | "datestamped"
|
| 56 | + /** |
| 57 | + * Dracula series cards. |
| 58 | + */ |
16 | 59 | | "draculaseries"
|
| 60 | + /** |
| 61 | + * Draft weekend event promo cards. |
| 62 | + */ |
17 | 63 | | "draftweekend"
|
| 64 | + /** |
| 65 | + * Duels of the Planeswalkers promos. |
| 66 | + */ |
18 | 67 | | "duels"
|
| 68 | + /** |
| 69 | + * Event promos. |
| 70 | + */ |
19 | 71 | | "event"
|
| 72 | + /** |
| 73 | + * FNM promos. |
| 74 | + */ |
20 | 75 | | "fnm"
|
| 76 | + /** |
| 77 | + * Game day promos. |
| 78 | + */ |
21 | 79 | | "gameday"
|
| 80 | + /** |
| 81 | + * Gift box promos. |
| 82 | + */ |
22 | 83 | | "giftbox"
|
| 84 | + /** |
| 85 | + * Godzilla series cards. |
| 86 | + */ |
23 | 87 | | "godzillaseries"
|
| 88 | + /** |
| 89 | + * Instore event promos. |
| 90 | + */ |
24 | 91 | | "instore"
|
| 92 | + /** |
| 93 | + * Prints exclusive to intro packs/decks. |
| 94 | + */ |
25 | 95 | | "intropack"
|
| 96 | + /** |
| 97 | + * Cards in the Japanese planeswalker series. |
| 98 | + */ |
26 | 99 | | "jpwalker"
|
| 100 | + /** |
| 101 | + * Judge program gift cards. |
| 102 | + */ |
27 | 103 | | "judgegift"
|
| 104 | + /** |
| 105 | + * Miscellaneous promos marked as League promos, e.g. APAC league. |
| 106 | + */ |
28 | 107 | | "league"
|
| 108 | + /** |
| 109 | + * Media inserts, e.g. prints given out packaged with magazines or books. |
| 110 | + */ |
29 | 111 | | "mediainsert"
|
| 112 | + /** |
| 113 | + * Cards in the moonlit land series. |
| 114 | + */ |
30 | 115 | | "moonlitland"
|
| 116 | + /** |
| 117 | + * Openhouse promos. |
| 118 | + */ |
31 | 119 | | "openhouse"
|
| 120 | + /** |
| 121 | + * Prints exclusive to planeswalker decks. |
| 122 | + */ |
32 | 123 | | "planeswalkerdeck"
|
| 124 | + /** |
| 125 | + * Cards printed on plastic stock. |
| 126 | + */ |
33 | 127 | | "plastic"
|
| 128 | + /** |
| 129 | + * Player rewards promos. |
| 130 | + */ |
34 | 131 | | "playerrewards"
|
| 132 | + /** |
| 133 | + * Play promos. |
| 134 | + */ |
35 | 135 | | "playpromo"
|
| 136 | + /** |
| 137 | + * Cards with a “poster” appearance. |
| 138 | + */ |
| 139 | + | "poster" |
| 140 | + /** |
| 141 | + * Premier e-Shop promos. |
| 142 | + */ |
36 | 143 | | "premiereshop"
|
| 144 | + /** |
| 145 | + * Prerelease event datestamped cards. |
| 146 | + */ |
37 | 147 | | "prerelease"
|
| 148 | + /** |
| 149 | + * Cards found in promo packs. |
| 150 | + * |
| 151 | + * @see "stamped" |
| 152 | + */ |
38 | 153 | | "promopack"
|
| 154 | + /** |
| 155 | + * Cards that are rebalanced versions for the Alchemy format in Arena. |
| 156 | + */ |
39 | 157 | | "rebalanced"
|
| 158 | + /** |
| 159 | + * Release event promos. |
| 160 | + */ |
40 | 161 | | "release"
|
| 162 | + /** |
| 163 | + * Simplified chinese alt-art cards. |
| 164 | + * |
| 165 | + * Due to Chinese censorship rules, some cards receive alternate art in Chinese releases. |
| 166 | + */ |
41 | 167 | | "schinesealtart"
|
| 168 | + /** |
| 169 | + * A Lord of the Rings appearance that made the card name, type line and oracle text area appear as scrolls. |
| 170 | + */ |
| 171 | + | "scroll" |
| 172 | + /** |
| 173 | + * Serialized cards. (001/500, etc.) |
| 174 | + */ |
42 | 175 | | "serialized"
|
| 176 | + /** |
| 177 | + * Set Extension cards. |
| 178 | + * |
| 179 | + * E.g.: Rafiq of the Many had a gilded showcase released in SNC boosters. |
| 180 | + * It was given the collector info ALA 250, extending the original Alara set code. |
| 181 | + * Scryfall records this in the ALA sert because that's the set code, but we mark it as an “extension” of that set. |
| 182 | + */ |
43 | 183 | | "setextension"
|
| 184 | + /** |
| 185 | + * (TODO) |
| 186 | + */ |
44 | 187 | | "setpromo"
|
| 188 | + /** |
| 189 | + * Cards stamped with a planeswalker symbol in the corner of the art frame released in store boosters. |
| 190 | + * |
| 191 | + * Not to be confused with The List cards, which have a small planeswalker symbol in the bottom left corner of the card. |
| 192 | + */ |
45 | 193 | | "stamped"
|
| 194 | + /** |
| 195 | + * Prints found exclusively in a starter deck. |
| 196 | + */ |
46 | 197 | | "starterdeck"
|
| 198 | + /** |
| 199 | + * Store championship participation and prize cards. |
| 200 | + */ |
47 | 201 | | "storechampionship"
|
| 202 | + /** |
| 203 | + * Prints found exclusively in theme boosters. |
| 204 | + */ |
48 | 205 | | "themepack"
|
| 206 | + /** |
| 207 | + * Cards printed on extra-thick cardstock. |
| 208 | + */ |
49 | 209 | | "thick"
|
| 210 | + /** |
| 211 | + * Tournament promo cards. |
| 212 | + */ |
50 | 213 | | "tourney"
|
| 214 | + /** |
| 215 | + * Wizards play network promo cards. |
| 216 | + */ |
51 | 217 | | "wizardsplaynetwork";
|
52 | 218 |
|
53 | 219 | export type ScryfallPromoType = ScryfallPrintAttribute | `${ScryfallExtendedFinish}`;
|
0 commit comments