mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-03 13:01:57 +00:00
27 lines
442 B
TypeScript
27 lines
442 B
TypeScript
import { Set } from '../../interfaces'
|
||
import serie from '../Pokémon TCG Pocket'
|
||
|
||
const set: Set = {
|
||
id: "A4",
|
||
|
||
name: {
|
||
// de: "Mysteriöse Insel",
|
||
en: "Wisdom of Sea and Sky",
|
||
// es: "La Isla Singular",
|
||
// fr: "L’Île Fabuleuse",
|
||
// it: "L'Isola Misteriosa",
|
||
// 'pt-br': "Ilha Mítica",
|
||
// ko: '환상이 있는 섬'
|
||
},
|
||
|
||
serie: serie,
|
||
|
||
cardCount: {
|
||
official: 161
|
||
},
|
||
|
||
releaseDate: "2025-07-30"
|
||
}
|
||
|
||
export default set
|