1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +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.8 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 '../Burning Shadows'
const card: Card = {
name: {
en: "Wishful Baton",
fr: "Relais Optimiste",
es: "Relevo Ilusión",
it: "Testimone della Speranza",
pt: "Bastão do Desejo",
de: "Fleißiges Staffelholz"
},
illustrator: "Toyste Beach",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Si le Pokémon auquel cette carte est attachée est votre Pokémon Actif et quil est mis K.O. par les dégâts dune attaque de votre adversaire, déplacez jusquà 3 cartes Énergie de base de ce Pokémon à lun de vos Pokémon de Banc.",
en: "If the Pokémon this card is attached to is your Active Pokémon and is Knocked Out by damage from an opponents attack, move up to 3 basic Energy cards from that Pokémon to 1 of your Benched Pokémon.",
es: "Si el Pokémon al que está unida esta carta es tu Pokémon Activo y queda Fuera de Combate por el daño de un ataque de tu rival, mueve hasta 3 cartas de Energía Básica de ese Pokémon a 1 de tus Pokémon en Banca.",
it: "Se il Pokémon a cui è assegnata questa carta è il tuo Pokémon attivo e viene messo KO dai danni inflitti da un attacco del tuo avversario, sposta fino a tre carte Energia base da quel Pokémon a uno di quelli nella tua panchina.",
pt: "Se o Pokémon ao qual esta carta está ligada for o seu Pokémon Ativo e ele for Nocauteado pelo dano de um ataque do seu oponente, mova até 3 cartas de Energia básica daquele Pokémon para 1 dos seus Pokémon no Banco.",
de: "Wenn das Pokémon, an das diese Karte angelegt ist, dein Aktives Pokémon ist und durch Schaden einer Attacke deines Gegners kampfunfähig wird, verschiebe bis zu 3 Basis-Energiekarten von jenem Pokémon auf 1 Pokémon auf deiner Bank."
},
trainerType: "Tool",
}
export default card