1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12: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
944 B
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 '../Ultra Prism'
const card: Card = {
name: {
en: "Mars",
fr: "Mars",
es: "Venus",
it: "Martes",
pt: "Marte",
de: "Mars"
},
illustrator: "Ken Sugimori",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Piochez 2 cartes. Dans ce cas, défaussez au hasard une carte de la main de votre adversaire.",
en: "Draw 2 cards. If you do, discard a random card from your opponents hand.",
es: "Roba 2 cartas. Si lo haces, descarta 1 carta aleatoria de la mano de tu rival.",
it: "Pesca due carte. Se lo fai, scarta una carta a caso dalla mano del tuo avversario.",
pt: "Compre 2 cartas. Se fizer isto, descarte 1 carta aleatória da mão do seu oponente.",
de: "Ziehe 2 Karten. Wenn du das machst, lege 1 zufällige Karte aus der Hand deines Gegners auf seinen Ablagestapel."
},
trainerType: "Supporter",
}
export default card