1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-24 00:49:55 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

42 lines
1.6 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Sun & Moon'
const card: Card = {
name: {
en: "Exp. Share",
fr: "Multi Exp",
es: "Repartir Experiencia",
it: "Condividi Esperienza",
pt: "Compart. Exp.",
de: "EP-Teiler"
},
illustrator: "Toyste Beach",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Lorsque votre Pokémon Actif est mis K.O. par les dégâts dune attaque de votre adversaire, vous pouvez déplacer 1 carte dÉnergie de base de ce Pokémon vers le Pokémon auquel cette carte est attachée.",
en: "When your Active Pokémon is Knocked Out by damage from an opponents attack, you may move 1 basic Energy card from that Pokémon to the Pokémon this card is attached to.",
es: "Cuando tu Pokémon Activo queda Fuera de Combate por el daño de un ataque de tu rival, puedes mover 1 carta de Energía Básica de ese Pokémon al Pokémon al que esté unida esta carta.",
it: "Quando il tuo Pokémon attivo viene messo KO dai danni inflitti da un attacco del tuo avversario, puoi spostare una carta Energia base che gli era stata assegnata sul Pokémon a cui è assegnata questa carta.",
pt: "Quando o seu Pokémon Ativo é Nocauteado pelo dano de um ataque do seu oponente, você pode mover 1 carta de Energia básica daquele Pokémon para o Pokémon ao qual esta carta está ligada.",
de: "Wenn dein Aktives Pokémon durch den Schaden einer Attacke deines Gegners kampfunfähig wird, kannst du 1 an jenes Pokémon angelegte Basis-Energiekarte auf das Pokémon verschieben, an das diese Karte angelegt ist."
},
trainerType: "Tool",
}
export default card