1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-02 15:42:11 +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 '../Dragon Majesty'
const card: Card = {
name: {
en: "Zinnia",
fr: "Amaryllis",
es: "Tristana",
it: "Lyris",
pt: "Zínia",
de: "Amalia"
},
illustrator: "Hideki Ishikawa",
rarity: "Ultra Rare",
category: "Trainer",
set: Set,
effect: {
fr: "Vous ne pouvez jouer cette carte que si lun de vos Pokémon a été mis K.O. pendant le dernier tour de votre adversaire.\n\nAttachez jusquà 2 cartes Énergie de base de votre main à lun de vos Pokémon Dragon.",
en: "You can play this card only if 1 of your Pokémon was Knocked Out during your opponents last turn.\n\nAttach up to 2 basic Energy cards from your hand to 1 of your Dragon Pokémon.",
es: "Puedes jugar esta carta solo si 1 de tus Pokémon quedó Fuera de Combate durante el último turno de tu rival.\n\nUne hasta 2 cartas de Energía Básica de tu mano a 1 de tus Pokémon Dragon.",
it: "Puoi giocare questa carta solo se uno dei tuoi Pokémon è stato messo KO durante lultimo turno del tuo avversario.\n\nAssegna a uno dei tuoi Pokémon Dragon fino a due carte Energia base dalla tua mano.",
pt: "Você só pode jogar esta carta se 1 dos seus Pokémon tiver sido Nocauteado durante a última vez de jogar do seu oponente.\n\nLigue até 2 cartas de Energia básica da sua mão a 1 dos seus Pokémon Dragon.",
de: "Du kannst diese Karte nur spielen, wenn 1 deiner Pokémon während des letzten Zuges deines Gegners kampfunfähig wurde.\n\nLege bis zu 2 Basis-Energiekarten aus deiner Hand an 1 deiner Dragon-Pokémon an."
},
trainerType: "Supporter",
}
export default card