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

35 lines
589 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Rising Rivals'
const card: Card = {
name: {
en: "Bertha's Warmth",
fr: "La chaleur de Terry",
de: "Teresas Herzlichkeit"
},
illustrator: "Ken Sugimori",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Vous ne pouvez jouer qu'une seule carte Supporter par tour. Lorsque vous la jouez, placez-la à côté de votre Pokémon Actif. À la fin du tour, défaussez-la.",
de: "Entferne 5 Schadensmarken von 1 deiner Pokémon SP."
},
trainerType: "Supporter",
}
export default card