1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +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

106 lines
2.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 '../Rebel Clash'
const card: Card = {
name: {
en: "Medicham",
fr: "Charmina",
es: "Medicham",
it: "Medicham",
pt: "Medicham",
de: "Meditalis"
},
illustrator: "Suwama Chiaki",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
evolveFrom: {
en: "Meditite",
fr: "Méditikka",
es: "Meditite",
it: "Meditite",
pt: "Meditite",
de: "Meditie"
},
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Yoga Kick",
fr: "Yoga Kick",
es: "Patada Yoga",
it: "Calcio Yoga",
pt: "Chute Ioga",
de: "Yogakick"
},
effect: {
en: "This attack's damage isn't affected by Weakness or Resistance.",
fr: "Les dégâts de cette attaque ne sont pas affectés par la Faiblesse ou la Résistance.",
es: "El daño de este ataque no se ve afectado por Debilidad o Resistencia.",
it: "I danni di questo attacco non sono influenzati dalla debolezza o dalla resistenza.",
pt: "O dano deste ataque não é afetado por Fraqueza ou Resistência.",
de: "Der Schaden dieser Attacke wird durch Schwäche und Resistenz nicht verändert."
},
damage: 40,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Psychic",
fr: "Psyko",
es: "Psíquico",
it: "Psichico",
pt: "Psíquico",
de: "Psychokinese"
},
effect: {
en: "This attack does 20 more damage for each Energy attached to your opponent's Active Pokémon.",
fr: "Cette attaque inflige 20 dégâts supplémentaires pour chaque Énergie attachée au Pokémon Actif de votre adversaire.",
es: "Este ataque hace 20 puntos de daño más por cada Energía unida al Pokémon Activo de tu rival.",
it: "Questo attacco infligge 20 danni in più per ogni Energia assegnata al Pokémon attivo del tuo avversario.",
pt: "Este ataque causa 20 pontos de dano a mais para cada Energia ligada ao Pokémon Ativo do seu oponente.",
de: "Diese Attacke fügt für jede an das Aktive Pokémon deines Gegners angelegte Energie 20 Schadenspunkte mehr zu."
},
damage: "60+",
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
hp: 110,
types: ["Fighting"],
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
stage: "Stage1",
description: {
en: "Through yoga training, it gained the psychic power to predict its foe's next move."
}
}
export default card