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>
25 lines
298 B
TypeScript
25 lines
298 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Platinum'
|
|
|
|
const pl4: Set = {
|
|
id: "pl4",
|
|
|
|
name: {
|
|
en: "Arceus",
|
|
es: "Arceus",
|
|
it: "Arceus",
|
|
de: "Arceus"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "AR",
|
|
|
|
cardCount: {
|
|
official: 99
|
|
},
|
|
|
|
releaseDate: "2009-11-04"
|
|
}
|
|
|
|
export default pl4
|