mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
29 lines
343 B
TypeScript
29 lines
343 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Platinum'
|
|
|
|
const ru1: Set = {
|
|
id: "ru1",
|
|
|
|
name: {
|
|
en: "Pokémon Rumble",
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
total: 16,
|
|
official: 16
|
|
},
|
|
|
|
releaseDate: "2009-12-02",
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default ru1
|