Add new cardCount field to set

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
Florian Bouillon 2021-05-02 15:48:26 +02:00
parent 0cc19ec1f3
commit edbcf7f4da
Signed by: Florian Bouillon
GPG Key ID: 50BD648F12C86AB6

37
interfaces.d.ts vendored
View File

@ -33,8 +33,14 @@ interface SetResume {
logo?: string
symbol?: string
cardCount: {
total: number
official: number
/**
* total of number of cards
*/
total: number
/**
* number of cards officialy (on the bottom of each cards)
*/
official: number
}
}
@ -50,6 +56,33 @@ export interface Set extends SetResume {
expanded: boolean
}
cardCount: {
/**
* total of number of cards
*/
total: number
/**
* number of cards officialy (on the bottom of each cards)
*/
official: number
/**
* number of cards having a normal version
*/
normal: number
/**
* number of cards having an reverse version
*/
reverse: number
/**
* number of cards having an holo version
*/
holo: number
/**
* Number of possible cards
*/
firstEd?: number
}
cards: CardList
}