mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-07 01:37:52 +00:00
* Fix: Shining Revelry - Add missing attack damage symbols * Fix: Shining Revelry - Add missing energy symbols to attack effects * Fix: Shining Revelry set setails- add foreign language names and update card counts --------- Co-authored-by: Khaleeq Ahmad <1710642+khaleeqahmad@users.noreply.github.com>
26 lines
403 B
TypeScript
26 lines
403 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Pokémon TCG Pocket'
|
|
|
|
const set: Set = {
|
|
id: "A2b",
|
|
|
|
name: {
|
|
de: "Glänzendes Festival",
|
|
en: "Shining Revelry",
|
|
es: "Festival Brillante",
|
|
fr: "Réjouissances Rayonnantes",
|
|
it: "Tripudio Splendente",
|
|
pt: "Festival Brilhante"
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 72
|
|
},
|
|
|
|
releaseDate: "2025-03-27"
|
|
}
|
|
|
|
export default set
|