1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +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 '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Clay",
fr: "Bardane",
es: "Yacón",
it: "Rafan",
pt: "Clay",
de: "Turner"
},
illustrator: "Yusuke Ohmura",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Défaussez les 7 cartes du dessus de votre deck. Si lune de ces cartes est une carte Objet, placez-la dans votre main.",
en: "Discard the top 7 cards of your deck. If any of those cards are Item cards, put them into your hand.",
es: "Descarta las 7 primeras cartas de tu baraja. Si entre esas cartas hay cartas de Objeto, ponlas en tu mano.",
it: "Scarta le prime sette carte del tuo mazzo. Se fra queste ci sono delle carte Strumento, aggiungile alle carte che hai in mano.",
pt: "Descarte as 7 primeiras cartas do seu baralho. Se houver cartas de Item entre elas, coloque-as na sua mão.",
de: "Lege die obersten 7 Karten deines Decks auf deinen Ablagestapel. Wenn unter jenen Karten Itemkarten sind, nimm sie auf deine Hand."
},
trainerType: "Supporter",
}
export default card