1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-16 05:29:55 +00:00
Florian Bouillon 9138eedb16
Add swsh variants (#42)
* Updated Kalos Starter Set data

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed XY set

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed some more XY sets

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Added the rest of the SWSH variants

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-02 12:34:21 +00:00

92 lines
1.5 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 opponents Benched Pokémon cant 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: "TranchGriffe",
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
}
}
export default card