1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,63 @@
import { Card } from '../../../interfaces'
import Set from '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Mimikyu",
fr: "Mimiqui",
},
illustrator: "HYOGONOSUKE",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
778,
],
hp: 70,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Impersonation",
fr: "Usurpation",
},
effect: {
en: "Discard a Supporter card from your hand. If you do, use the effect of that card as the effect of this attack.",
fr: "Défaussez une carte Supporter de votre main. Dans ce cas, utilisez leffet de cette carte en tant queffet de cette attaque.",
},
},
{
cost: [
"Psychic",
],
name: {
en: "Mischievous Hands",
fr: "Mains Malicieuses",
},
effect: {
en: "Choose 2 of your opponent's Pokémon and put 2 damage counters on each of them.",
fr: "Choisissez 2 des Pokémon de votre adversaire et placez 2 marqueurs de dégâts sur chacun deux.",
},
},
],
retreat: 1,
}
export default card