1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* some fixes

Signed-off-by: Avior <github@avior.me>

* Some more changes

Signed-off-by: Avior <github@avior.me>

* u

Signed-off-by: Avior <github@avior.me>

* continuing update

Signed-off-by: Avior <github@avior.me>

* Finished ?

Signed-off-by: Avior <github@avior.me>

* Removed files that were not meant to be

* Remoed even more files
2021-10-26 10:40:03 +02:00

98 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 = {
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