1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 01:37:52 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

99 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 '../Darkness Ablaze'
const card: Card = {
dexId: [778],
name: {
en: "Mimikyu",
fr: "Mimiqui",
es: "Mimikyu",
it: "Mimikyu",
pt: "Mimikyu",
de: "Mimigma"
},
illustrator: "Ryota Murayama",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 70,
types: [
"Psychic",
],
abilities: [
{
type: "Ability",
name: {
en: "Heal Jamming",
fr: "Soins Suspendus",
es: "Bloqueo Curación",
it: "Interferenza Malsana",
pt: "Interferência de Cura",
de: "Heilstörung"
},
effect: {
en: "Your opponent's Benched Pokémon can't be healed.",
fr: "Les Pokémon de Banc de votre adversaire ne peuvent pas être soignés.",
es: "Los Pokémon en Banca de tu rival no pueden ser curados.",
it: "I Pokémon nella panchina del tuo avversario non possono essere curati.",
pt: "Os Pokémon no Banco do seu oponente não podem ser curados.",
de: "Die Pokémon auf der Bank deines Gegners können nicht geheilt werden."
},
},
],
attacks: [
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Claw Slash",
fr: "Tranch'Griffe",
es: "Cuchillada Garra",
it: "Lacerartiglio",
pt: "Golpe de Garra",
de: "Klauenschlitzer"
},
damage: 30,
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
retreat: 1,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
stage: "Basic",
description: {
en: "It wears a rag fashioned into a Pikachu costume in an effort to look less scary. Unfortunately, the costume only makes it creepier."
}
}
export default card