mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
29 lines
366 B
TypeScript
29 lines
366 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../EX'
|
|
|
|
const ex16: Set = {
|
|
id: "ex16",
|
|
|
|
name: {
|
|
en: "Power Keepers",
|
|
fr: "EX Gardiens du Pouvoir",
|
|
de: "EX Power Keepers"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "PK",
|
|
|
|
cardCount: {
|
|
official: 108
|
|
},
|
|
|
|
releaseDate: "2007-02-17",
|
|
|
|
abbreviations: {
|
|
official: "PK",
|
|
fr: "GDP"
|
|
}
|
|
}
|
|
|
|
export default ex16
|