1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

35 lines
611 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Rising Rivals'
const card: Card = {
name: {
en: "Flint's Willpower",
fr: "La volonté d'Adrien",
de: "Ignaz' Willensstärke"
},
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: "Lege 1 Basis-Energiekarte von deiner Hand an 1 deiner Pokémon SP an."
},
trainerType: "Supporter",
}
export default card