mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
42 lines
1.3 KiB
TypeScript
42 lines
1.3 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Steam Siege'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Captivating Poké Puff",
|
||
fr: "Pofiterole Envoûtante",
|
||
es: "Pokélito Cautivador",
|
||
it: "Pokébignè Incantato",
|
||
pt: "Pokélina Cativante",
|
||
de: "Bezauberndes Pofflé"
|
||
},
|
||
illustrator: "Toyste Beach",
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
|
||
set: Set,
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
effect: {
|
||
fr: "Votre adversaire montre sa main. Placez tout nombre de Pokémon de base que vous y trouvez sur le Banc de votre adversaire.",
|
||
en: "Your opponent reveals his or her hand. Put any number of Basic Pokémon you find there onto your opponent’s Bench.",
|
||
es: "Tu rival enseña las cartas de su mano. Pon tantos Pokémon Básicos que encuentres entre ellas como quieras en la Banca de tu rival.",
|
||
it: "Il tuo avversario mostra le carte che ha in mano. Prendi un numero qualsiasi di Pokémon Base presenti tra quelle carte e mettili nella sua panchina.",
|
||
pt: "Seu oponente revela a própria mão. Coloque qualquer número de Pokémon Básico que encontrar lá no Banco do seu oponente.",
|
||
de: "Dein Gegner deckt seine Handkarten auf. Lege beliebig viele Basis-Pokémon, die du dort findest, auf die Bank deines Gegners."
|
||
},
|
||
trainerType: "Item",
|
||
|
||
}
|
||
|
||
export default card
|