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.1 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 '../Team Up'
const card: Card = {
name: {
en: "Evelyn",
fr: "Vesper",
es: "Vésper",
it: "Vespera",
pt: "Véspera",
de: "Soir"
},
illustrator: "Kagemaru Himeno",
rarity: "Ultra Rare",
category: "Trainer",
set: Set,
effect: {
fr: "Vous ne pouvez jouer cette carte que si le Pokémon Actif de votre adversaire est un Pokémon de Niveau 1.\n\nPiochez 4 cartes.",
en: "You can play this card only if your opponents Active Pokémon is a Stage 1 Pokémon.\n\nDraw 4 cards.",
es: "Puedes jugar esta carta solo si el Pokémon Activo de tu rival es un Pokémon de Fase 1.\n\nRoba 4 cartas.",
it: "Puoi giocare questa carta solo se il Pokémon attivo del tuo avversario è un Pokémon di Fase 1.\n\nPesca quattro carte.",
pt: "Você só pode jogar esta carta se o Pokémon Ativo do seu oponente for um Pokémon Estágio 1.\n\nCompre 4 cartas.",
de: "Du kannst diese Karte nur spielen, wenn das Aktive Pokémon deines Gegners ein Phase-1-Pokémon ist.\n\nZiehe 4 Karten."
},
trainerType: "Supporter",
}
export default card