1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-16 13:39:54 +00:00
Florian Bouillon b46b2c4fb9
Updated Evolving Skies with attacks and other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-28 16:54:37 +02:00

39 lines
1.8 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 '../Evolving Skies'
const card: Card = {
set: Set,
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
name: {
en: "Dream Ball",
fr: "Rêve Ball",
es: "Ensueño Ball",
it: "Dream Ball",
pt: "Dream Ball",
de: "Traumball"
},
rarity: "Uncommon",
category: "Trainer",
effect: {
en: "You can play this card only if you took it as a face-down Prize card, before you put it into your hand.\nSearch your deck for a Pokémon and put it onto your Bench. Then, shuffle your deck.",
fr: "Vous ne pouvez jouer cette carte que si vous lavez obtenue en récupérant une carte Récompense face cachée, et avant de lajouter à votre main.\nCherchez dans votre deck un Pokémon, puis placez-le sur votre Banc. Mélangez ensuite votre deck.",
es: "Puedes jugar esta carta solo si la has cogido de entre las cartas de Premio que están boca abajo, antes de ponerla en tu mano.\nBusca en tu baraja 1 Pokémon y ponlo en tu Banca. Después, baraja las cartas de tu baraja.",
it: "Puoi giocare questa carta solo se lhai presa come carta Premio coperta, prima di aggiungerla alle carte che hai in mano.\nCerca nel tuo mazzo un Pokémon e mettilo nella tua panchina. Poi rimischia le carte del tuo mazzo.",
pt: "You can play this card only if you took it as a face-down Prize card, before you put it into your hand.\nSearch your deck for a Pokémon and put it onto your Bench. Then, shuffle your deck.",
de: "Du kannst diese Karte nur spielen, wenn du sie als verdeckte Preiskarte genommen hast und bevor du sie auf deine Hand nimmst.\nDurchsuche dein Deck nach 1 Pokémon und lege es auf deine Bank. Mische anschließend dein Deck."
},
trainerType: "Item",
illustrator: "Ryo Ueda"
}
export default card