1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +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.5 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 '../Fates Collide'
const card: Card = {
name: {
en: "Energy Pouch",
fr: "Sacoche dÉnergie",
es: "Bolso de Energía",
it: "Borsetta Energia",
pt: "Bolsa de Energia",
de: "Energietasche"
},
illustrator: "Toyste Beach",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Si le Pokémon auquel cette carte est attachée est mis K.O. par les dégâts dune attaque de votre adversaire, placez toutes les Énergies de base lui étant attachées dans votre main.",
en: "If the Pokémon this card is attached to is Knocked Out by damage from an opponents attack, put all basic Energy attached to that Pokémon into your hand.",
es: "Si el Pokémon al que está unida esta carta queda Fuera de Combate por el daño de un ataque de tu rival, pon todas las Energías Básicas unidas a ese Pokémon en tu mano.",
it: "Se il Pokémon a cui è assegnata questa carta viene messo KO dai danni inflitti da un attacco del tuo avversario, riprendi in mano tutte le Energie base assegnate a quel Pokémon.",
pt: "Se o Pokémon ao qual este card está ligado for Nocauteado por danos causados pelo ataque de um oponente, coloque todas as Energias básicas ligadas a aquele Pokémon em sua mão.",
de: "Wenn das Pokémon, an das diese Karte angelegt ist, durch Schaden eines gegnerischen Angriffs kampfunfähig wird, nimm alle an jenes Pokémon angelegten Basis-Energien auf deine Hand."
},
trainerType: "Tool",
}
export default card