1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00
Florian Bouillon 0ce5e62460
Added some XY translations (#63)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:18:16 +00:00

42 lines
1.3 KiB
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 '../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 opponents 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