1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

38 lines
1.4 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 '../Chilling Reign'
const card: Card = {
set: Set,
name: {
en: "Peony",
fr: "Dhilan",
es: "Peony",
it: "Peony",
pt: "Peônio",
de: "Peony"
},
rarity: "Secret Rare",
category: "Trainer",
effect: {
en: "Discard your hand and search your deck for up to 2 Trainer cards, reveal them, and put them into your hand. Then, shuffle your deck.",
fr: "Défaussez votre main et cherchez dans votre deck jusquà 2 cartes Dresseur, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck.",
es: "Descarta las cartas de tu mano y busca en tu baraja hasta 2 cartas de Entrenador, enséñalas y ponlas en tu mano. Después, baraja las cartas de tu baraja.",
it: "Scarta le carte che hai in mano e cerca nel tuo mazzo fino a due carte Allenatore, mostrale e aggiungile alla tua mano. Poi rimischia le carte del tuo mazzo.",
pt: "Descarte a sua mão e procure por até 2 cartas de Treinador no seu baralho, revele-as e coloque-as na sua mão. Em seguida, embaralhe o seu baralho.",
de: "Lege deine Handkarten auf deinen Ablagestapel und durchsuche dein Deck nach bis zu 2 Trainerkarten, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck."
},
trainerType: "Supporter",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card