1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 02:42:09 +00:00
cards-database/data/POP/POP Series 2.ts
Florian Bouillon 2f5f52b51c
refactor: Add Sets/Series translations (#172)
* refactor: Add set/Series translations

Signed-off-by: Avior <github@avior.me>

* refactor: Done Trainer kits

Signed-off-by: Avior <github@avior.me>
2021-11-16 12:44:58 +01:00

23 lines
279 B
TypeScript

import { Set } from '../../interfaces'
import serie from '../POP'
const pop2: Set = {
id: "pop2",
name: {
en: "POP Series 2",
fr: "POP Série 2",
it: "POP Serie 2"
},
serie: serie,
cardCount: {
official: 17
},
releaseDate: "2005-08-01"
}
export default pop2