mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-09 02:37:50 +00:00
22 lines
514 B
TypeScript
22 lines
514 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Call of Legends'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Dual Ball",
|
|
de: "Doppelball"
|
|
},
|
|
|
|
illustrator: "Takashi Yamaguchi",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
set: Set,
|
|
trainerType: "Item",
|
|
|
|
effect: {
|
|
de: "Wirf 2 Münzen. Durchsuche pro \"Kopf\" dein Deck nach einer Basis-Pokémon-Karte, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck, falls du nach Karten gesucht hast."
|
|
}
|
|
}
|
|
|
|
export default card
|