1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

21 lines
423 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Skyridge'
const card: Card = {
name: {
en: "Lure Ball",
de: "Köder Ball"
},
illustrator: "Katsura Tabata",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
de: "Wirf 3 Münzen. Bei jedem \"Kopf\" wähle eine Entwicklungskarte aus deinem Ablagestapel, zeige sie deinem Gegner und nimm sie auf deine Hand."
}
}
export default card