mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-06 01:07:53 +00:00
65 lines
1.0 KiB
TypeScript
65 lines
1.0 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Promos'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Mimikyu",
|
|
fr: "Mimiqui",
|
|
},
|
|
illustrator: "Mitsuhiro Arita",
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
778,
|
|
],
|
|
hp: 70,
|
|
types: [
|
|
"Psychic",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Psychic",
|
|
],
|
|
name: {
|
|
en: "Haunt",
|
|
fr: "Hanter",
|
|
},
|
|
effect: {
|
|
en: "Put 1 damage counter on your opponent's Active Pokémon.",
|
|
fr: "Placez 1 marqueur de dégâts sur le Pokémon Actif de votre adversaire.",
|
|
},
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Astonish",
|
|
fr: "Étonnement",
|
|
},
|
|
effect: {
|
|
en: "Choose a random card from your opponent's hand. Your opponent reveals that card and shuffles it into their deck.",
|
|
fr: "Choisissez une carte au hasard de la main de votre adversaire. Votre adversaire montre la carte choisie et la mélange avec son deck.",
|
|
},
|
|
|
|
},
|
|
],
|
|
|
|
|
|
retreat: 1,
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|