mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
24 lines
581 B
TypeScript
24 lines
581 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Power Keepers'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Great Ball",
|
|
fr: "Super Ball",
|
|
de: "Superball"
|
|
},
|
|
|
|
illustrator: "Nakaoka",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
set: Set,
|
|
trainerType: "Item",
|
|
|
|
effect: {
|
|
fr: "Choisissez dans votre deck un Pokémon de base (Pokémon-ex exclus) et placez-le sur votre Banc. Ensuite, mélangez votre deck.",
|
|
de: "Durchsuche dein Deck nach einer Basis-Pokémon-Karte (kein Pokémon-ex) und lege es auf deine Bank. Mische dein Deck danach."
|
|
}
|
|
}
|
|
|
|
export default card
|