1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +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

85 lines
1.8 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 '../Team Up'
const card: Card = {
name: {
en: "Mimikyu",
fr: "Mimiqui",
es: "Mimikyu",
it: "Mimikyu",
pt: "Mimikyu",
de: "Mimigma"
},
illustrator: "Eri Yamaki",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
778,
],
hp: 70,
types: [
"Fairy",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Filch",
fr: "Maraudage",
es: "Birlar",
it: "Furtarello",
pt: "Furtar",
de: "Mopsen"
},
effect: {
en: "Draw 2 cards.",
fr: "Piochez 2 cartes.",
es: "Roba 2 cartas.",
it: "Pesca due carte.",
pt: "Compre 2 cartas.",
de: "Ziehe 2 Karten."
},
},
{
cost: [
"Fairy",
"Colorless",
],
name: {
en: "Copycat",
fr: "Photocopie",
es: "Copión",
it: "Copione",
pt: "Imitador",
de: "Imitator"
},
effect: {
en: "If your opponents Pokémon used an attack that isnt a GX attack during their last turn, use it as this attack.",
fr: "Si le Pokémon de votre adversaire a utilisé une attaque autre quune attaque GX pendant son dernier tour, utilisez-la en tant que cette attaque.",
es: "Si alguno de los Pokémon de tu rival usó un ataque que no es un ataque GX durante su último turno, úsalo para este ataque.",
it: "Se un Pokémon del tuo avversario ha usato un attacco che non è un attacco GX durante il suo ultimo turno, usalo al posto di questo attacco.",
pt: "Se o Pokémon do seu oponente usou um ataque que não era um ataque GX durante a última vez dele(a) jogar, use-o como este ataque.",
de: "Wenn das Pokémon deines Gegners während seines letzten Zuges eine Attacke eingesetzt hat, die keine GX-Attacke ist, setze sie als diese Attacke ein."
},
},
],
retreat: 1,
}
export default card