mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
31 lines
444 B
TypeScript
31 lines
444 B
TypeScript
import Set from '../../interfaces/Set'
|
|
|
|
const set: Set = {
|
|
name: "Arceus",
|
|
|
|
code: "pl4",
|
|
expansionCode: "pl",
|
|
tcgoCode: "AR",
|
|
|
|
cardCount: {
|
|
total: 111,
|
|
official: 99
|
|
},
|
|
|
|
api: "3-platinum-arceus",
|
|
|
|
releaseDate: "2009-11-04",
|
|
|
|
legal: {
|
|
standard: false,
|
|
expanded: false,
|
|
},
|
|
|
|
images: {
|
|
symbol: "https://assets.tcgdex.net/sets/pl/pl4/symbol.png",
|
|
logo: "https://assets.tcgdex.net/sets/pl/pl4/logo.png"
|
|
}
|
|
}
|
|
|
|
export default set
|