mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
26 lines
306 B
TypeScript
26 lines
306 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Platinum'
|
|
|
|
const ru1: Set = {
|
|
id: "ru1",
|
|
|
|
name: {
|
|
en: "Pokémon Rumble",
|
|
es: "Pokémon Rumble"
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 16
|
|
},
|
|
|
|
releaseDate: "2009-12-02",
|
|
|
|
abbreviations: {
|
|
official: "RM"
|
|
}
|
|
}
|
|
|
|
export default ru1
|