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

36 lines
858 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Delta Species'
const card: Card = {
name: {
en: "Dual Ball",
fr: "Double boule",
de: "Doppelter Ball"
},
illustrator: "\"Big Mama\" Tagawa",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
en: "Flip 2 coins. For each head, search your deck for a Basic Pokémon card, show it to your opponent, and put it into your hand. Shuffle your deck afterward.",
fr: "Lancez 2 pièces. Pour chaque face, cherchez dans votre deck une carte Pokémon de base, montrez-la à votre adversaire et placez-la dans votre main. Ensuite, mélangez votre deck.",
de: "Flip 2 coins. For each head, search your deck for a Basic Pokémon card, show it to your opponent, and put it into your hand. Shuffle your deck afterward."
},
trainerType: "Item",
}
export default card