mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 02:42:09 +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
361 B
TypeScript
25 lines
361 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../POP'
|
|
|
|
const np: Set = {
|
|
id: "np",
|
|
|
|
name: {
|
|
en: "Nintendo Black Star Promos",
|
|
fr: "Promo Nintendo",
|
|
es: "Nintendo Black Star Promos",
|
|
it: "Nintendo Black Star Promos"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "PR-NP",
|
|
|
|
cardCount: {
|
|
official: 40
|
|
},
|
|
|
|
releaseDate: "2003-10-01"
|
|
}
|
|
|
|
export default np
|