mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-02 15:42:11 +00:00
42 lines
1.6 KiB
TypeScript
42 lines
1.6 KiB
TypeScript
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 l’un 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 à l’un de vos Pokémon Dragon.",
|
||
en: "You can play this card only if 1 of your Pokémon was Knocked Out during your opponent’s 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 l’ultimo 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
|