1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00

23 lines
847 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Aquapolis'
const card: Card = {
name: {
en: "Pokémon Park",
fr: "Parc Pokémon",
de: "Pokémon Park*"
},
illustrator: "Kazuo Yazawa",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Cette carte reste en jeu lorsque vous la jouez. Défaussez-vous de cette carte si une autre carte Stade arrive en jeu.\n\nUne seule fois pendant chacun de ses tours, à chaque fois qu'un joueur attache une carte Énergie de sa main à l'un des Pokémon de son Banc, il retire un marqueur de dégâts de ce Pokémon, s'il en a.",
de: "Once during each of his or her turns, whenever a player attaches an Energy card from his or her hand to 1 of his or her Benched Pokémon, he or she removes 1 damage counter, if any, from that Pokémon."
}
}
export default card