1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon e7e0e4d639
feat: Add Pokemon GO set (#323)
Signed-off-by: Avior <github@avior.me>
2022-07-01 10:17:20 +02:00

26 lines
353 B
TypeScript

import { Set } from '../../interfaces'
import serie from '../Sword & Shield'
const set: Set = {
id: "swsh10.5",
name: {
en: "Pokémon GO",
fr: "Pokémon GO",
es: "Pokémon GO",
it: "Pokémon GO",
de: "Pokémon GO",
pt: "Pokémon GO"
},
serie: serie,
cardCount: {
official: 78
},
releaseDate: "2022-07-01"
}
export default set