1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 17:57:51 +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.1 KiB
TypeScript
Raw Permalink 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.

import { Card } from '../../../interfaces'
import Set from '../Celestial Storm'
const card: Card = {
name: {
en: "Lure Ball",
fr: "Appât Ball",
es: "Cebo Ball",
it: "Esca Ball",
pt: "Bola Isca",
de: "Köderball"
},
illustrator: "Katsura Tabata",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Lancez 3 pièces. Pour chaque côté face, ajoutez un Pokémon Évolutif de votre pile de défausse à votre main.",
en: "Flip 3 coins. For each heads, put an Evolution Pokémon from your discard pile into your hand.",
es: "Lanza 3 monedas. Por cada cara, pon 1 Pokémon Evolución de tu pila de descartes en tu mano.",
it: "Lancia tre volte una moneta. Ogni volta che esce testa, prendi un Pokémon Evoluzione dalla tua pila degli scarti e aggiungilo alle carte che hai in mano.",
pt: "Jogue 3 moedas. Para cada cara, coloque 1 Pokémon de Evolução da sua pilha de descarte na sua mão.",
de: "Wirf 3 Münzen. Nimm pro Kopf 1 Entwicklungs-Pokémon aus deinem Ablagestapel auf deine Hand."
},
trainerType: "Item",
}
export default card