1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 05:12:11 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

72 lines
1.7 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 '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Galarian Mr. Mime",
fr: "M. Mime de Galar",
es: "Mr. Mime de Galar",
it: "Mr. Mime di Galar",
pt: "Mr. Mime de Galar",
de: "Galar-Pantimos"
},
illustrator: "kodama",
rarity: "Common",
category: "Pokemon",
hp: 80,
types: ["Water"],
attacks: [{
name: {
en: "Pound",
fr: "ÉcrasFace",
es: "Destructor",
it: "Botta",
pt: "Pancada",
de: "Klaps"
},
damage: 10,
cost: ["Water"]
}, {
name: {
en: "Find It",
fr: "Trifouiller",
es: "Busca",
it: "Cercatrova",
pt: "Encontrar",
de: "Aufspüren"
},
effect: {
en: "Search your deck for an Item card, reveal it, and put it into your hand. Then, shuffle your deck.",
fr: "Cherchez dans votre deck une carte Objet, montrez-la, puis ajoutez-la à votre main. Mélangez ensuite votre deck.",
es: "Busca en tu baraja 1 carta de Objeto, enséñala y ponla en tu mano. Después, baraja las cartas de tu baraja.",
it: "Cerca nel tuo mazzo una carta Strumento, mostrala e aggiungila a quelle che hai in mano. Poi rimischia le carte del tuo mazzo.",
pt: "Procure por 1 carta de Item no seu baralho, revele-a e coloque-a na sua mão. Em seguida, embaralhe o seu baralho.",
de: "Durchsuche dein Deck nach 1 Itemkarte, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck."
},
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "E",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card