1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon df23371cb4
fix: Add most POP series French translations (#170)
* fix: Added most of the translations

Some translations aren't available or are user made without a card image depicted

Signed-off-by: Avior <github@avior.me>

* fix: Add sets French translations

Signed-off-by: Avior <github@avior.me>
2021-11-16 10:08:20 +01:00

30 lines
886 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../POP Series 2'
const card: Card = {
name: {
en: "Pokémon Park",
fr: "Parc Pokémon"
},
illustrator: "Kazuo Yazawa",
rarity: "Uncommon",
category: "Trainer",
set: Set,
trainerType: "Stadium",
effect: {
en: "Once during each players turn, when that 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 from that Pokémon.",
fr: "Cette carte reste en jeu lorsque vous la jouez. Défaussez-la si une autre carte Stade est mise en jeu.\n\nUne seule fois lors du tour de chaque joueur, lorsqu'un joueur attache une carte Énergie de sa main à 1 des Pokémon de son Banc, il retire à ce Pokémon 1 marqueur de dégât."
},
variants: {
normal: true,
reverse: false,
holo: false,
firstEdition: false
}
}
export default card