mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
24 lines
837 B
TypeScript
24 lines
837 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Dragon'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Mr. Briney's Compassion",
|
|
fr: "La compassion de M. Briney",
|
|
de: "Mr. Bracks Mitgefühl"
|
|
},
|
|
|
|
illustrator: "Ken Sugimori",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
set: Set,
|
|
trainerType: "Supporter",
|
|
|
|
effect: {
|
|
fr: "Vous ne pouvez jouer qu'une seule carte Supporter par tour. Lorsque vous jouez cette carte, placez-la à côté de votre Pokémon Actif. À la fin de votre tour, défaussez-la.\n\nChoisissez un des Pokémon que vous avez en jeu (sauf les Pokémon-ex). Reprenez dans votre main ce Pokémon ainsi que toutes les cartes qui lui sont attachées.",
|
|
de: "Choose 1 of your Pokémon in play (excluding Pokémon-ex). Return that Pokémon and all cards attached to it to your hand."
|
|
}
|
|
}
|
|
|
|
export default card
|