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
807 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 '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Erika",
fr: "Erika",
es: "Erika",
it: "Erika",
pt: "Érica",
de: "Erika"
},
illustrator: "Megumi Mizutani",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Chaque joueur peut piocher jusquà 3 cartes. Vous piochez en premier.",
en: "Each player may draw up to 3 cards. You draw first.",
es: "Cada jugador puede robar hasta 3 cartas. Tú robas primero.",
it: "Ciascun giocatore può pescare fino a tre carte. Tu peschi per primo.",
pt: "Cada jogador pode comprar até 3 cartas. Você compra primeiro.",
de: "Jeder Spieler kann bis zu 3 Karten ziehen. Du ziehst als Erster."
},
trainerType: "Supporter",
}
export default card