1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-23 00:29:55 +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

86 lines
2.0 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 '../SM Black Star Promos'
const card: Card = {
name: {
en: "Mimikyu",
fr: "Mimiqui",
es: "Mimikyu",
it: "Mimikyu",
pt: "Mimikyu",
de: "Mimigma"
},
illustrator: "Saya Tsuruta",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
778,
],
hp: 70,
types: [
"Fairy",
],
stage: "Basic",
attacks: [
{
cost: [
"Fairy",
],
name: {
en: "Mimic",
fr: "Copie",
es: "Mimético",
it: "Mimica",
pt: "Mímica",
de: "Mimikry"
},
effect: {
en: "Shuffle your hand into your deck. Then, draw a card for each card in your opponents hand.",
fr: "Mélangez votre main avec votre deck. Ensuite, piochez une carte pour chaque carte dans la main de votre adversaire.",
es: "Pon las cartas de tu mano en tu baraja y barájalas todas. Después, roba 1 carta por cada carta en la mano de tu rival.",
it: "Rimischia le carte che hai in mano nel tuo mazzo. Poi pesca una carta per ogni carta nella mano del tuo avversario.",
pt: "Embaralhe a sua mão no seu baralho. Em seguida, compre 1 carta para cada carta na mão do seu oponente.",
de: "Mische deine Handkarten in dein Deck. Ziehe anschließend 1 Karte für jede Karte auf der Hand deines Gegners."
},
},
{
cost: [
"Fairy",
"Colorless",
],
name: {
en: "Play Rough",
fr: "Câlinerie",
es: "Carantoña",
it: "Carineria",
pt: "Jogo Duro",
de: "Knuddler"
},
effect: {
en: "Flip a coin. If heads, this attack does 20 more damage.",
fr: "Lancez une pièce. Si cest face, cette attaque inflige 20 dégâts supplémentaires.",
es: "Lanza 1 moneda. Si sale cara, este ataque hace 20 puntos de daño más.",
it: "Lancia una moneta. Se esce testa, questo attacco infligge 20 danni in più.",
pt: "Jogue 1 moeda. Se sair cara, este ataque causará 20 pontos de dano a mais.",
de: "Wirf 1 Münze. Bei Kopf fügt diese Attacke 20 Schadenspunkte mehr zu."
},
damage: "20+",
},
],
retreat: 1,
}
export default card