We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d95c3b commit 14789bbCopy full SHA for 14789bb
meta/definitions/api.d.ts
@@ -333,6 +333,28 @@ export interface Card extends CardResume {
333
*/
334
boosters?: Array<Booster>
335
336
+ /**
337
+ * The card set number at the bottom left / right
338
+ */
339
+ set_number: {
340
341
+ * The full text of the card number
342
343
+ text: string
344
345
+ * the first part of the no. (if there is no `/` it will include everything)
346
347
+ nominator: string
348
349
+ * a parseable area as a number (ex: 065 = 65, GG55 = 55)
350
351
+ numeric: number
352
353
+ * The second part of the no (skipped if there is no `/`)
354
355
+ denominator?: string
356
+ }
357
+
358
updated: string
359
}
360
0 commit comments