mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
40 lines
1.4 KiB
TypeScript
40 lines
1.4 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Chilling Reign'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
fr: "Dhilan",
|
||
en: "Peony",
|
||
es: "Peony",
|
||
it: "Peony",
|
||
pt: "Peônio",
|
||
de: "Peony"
|
||
},
|
||
|
||
illustrator: "Hitoshi Ariga",
|
||
rarity: "Ultra Rare",
|
||
category: "Trainer",
|
||
|
||
effect: {
|
||
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.",
|
||
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.",
|
||
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",
|
||
regulationMark: "E",
|
||
|
||
variants: {
|
||
normal: false,
|
||
reverse: false,
|
||
holo: true,
|
||
firstEdition: false
|
||
}
|
||
}
|
||
|
||
export default card |