mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
* refactor: Add set/Series translations Signed-off-by: Avior <github@avior.me> * refactor: Done Trainer kits Signed-off-by: Avior <github@avior.me>
22 lines
266 B
TypeScript
22 lines
266 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"
|
|
}
|
|
|
|
export default ru1
|