mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
30 lines
398 B
TypeScript
30 lines
398 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Platinum'
|
|
|
|
const pl2: Set = {
|
|
id: "pl2",
|
|
|
|
name: {
|
|
en: "Rising Rivals",
|
|
fr: "Rivaux Émergeants",
|
|
it: "L'Ascesa dei Rivali",
|
|
de: "Aufstieg der Rivalen"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "RR",
|
|
|
|
cardCount: {
|
|
official: 111
|
|
},
|
|
|
|
releaseDate: "2009-05-16",
|
|
|
|
abbreviations: {
|
|
official: "RR",
|
|
fr: "REM"
|
|
}
|
|
}
|
|
|
|
export default pl2
|