1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

23 lines
853 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Team Rocket'
const card: Card = {
name: {
en: "Digger",
fr: "Excavatrice",
de: "Bagger"
},
illustrator: "Sumiyoshi Kizuki",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Lancez une pièce. Si c'est pile, infligez 10 dégâts à votre Pokémon Actif. Si c'est face, votre adversaire lance une pièce. Si c'est pile, votre adversaire inflige 10 dégâts à son Pokémon Actif. Si c'est face, vous lancez une pièce. Continuez ainsi jusqu'à ce que l'un des joueurs obtienne pile.",
de: "Flip a coin. if tails, do 10 damage to your Active Pokémon. If heads, your opponent flip a coin. If tails, your opponent does 10 damage to his or her Active Pokémon. If heads, you flip a coin. Keep doing this until a player gets tails."
}
}
export default card