1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-29 22:32:10 +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.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Guardians Rising'
const card: Card = {
name: {
en: "Mallow",
fr: "Barbara",
es: "Lulú",
it: "Ibis",
pt: "Lulú",
de: "Maho"
},
illustrator: "Megumi Mizutani",
rarity: "Ultra Rare",
category: "Trainer",
set: Set,
effect: {
fr: "Cherchez 2 cartes dans votre deck. Mélangez votre deck, puis placez ces cartes, dans nimporte quel ordre, sur le dessus de votre deck.",
en: "Search your deck for 2 cards, shuffle your deck, then put those cards on top of it in any order.",
es: "Busca en tu baraja 2 cartas, baraja las cartas de tu baraja y, después, pon esas cartas en la parte superior de tu baraja en el orden que quieras.",
it: "Cerca due carte nel tuo mazzo, rimischia le carte del tuo mazzo, poi rimetti quelle due carte in cima al tuo mazzo nellordine che preferisci.",
pt: "Procure por 2 cartas no seu baralho, embaralhe-o e então coloque-as no topo em qualquer ordem.",
de: "Durchsuche dein Deck nach 2 Karten, mische dein Deck und lege jene Karten anschließend in beliebiger Reihenfolge auf dein Deck."
},
trainerType: "Supporter",
}
export default card