1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 21:02:15 +00:00
cards-database/data/Platinum/Pokémon Rumble.ts
Florian Bouillon f8744ee6dd
Made Variants mandatory
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-02 17:04:19 +02:00

34 lines
395 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
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2009-12-02",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default ru1