mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-31 19:59:53 +00:00
73 lines
2.0 KiB
TypeScript
73 lines
2.0 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Triumphant Light"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Medicham",
|
|
fr: "Charmina",
|
|
es: "Medicham",
|
|
it: "Medicham",
|
|
de: "Meditalis",
|
|
'pt-br': "Medicham",
|
|
ko: "요가램"
|
|
},
|
|
|
|
illustrator: "Tetsu Kayama",
|
|
rarity: "Two Diamond",
|
|
category: "Pokemon",
|
|
hp: 100,
|
|
types: ["Fighting"],
|
|
|
|
evolveFrom: {
|
|
en: "Meditite"
|
|
},
|
|
|
|
description: {
|
|
en: "Through yoga training, it gained the psychic power to predict its foe's next move.",
|
|
fr: "Ses pouvoirs psychiques, renforcés\npar la pratique du yoga, lui permettent\nde prédire les mouvements de ses adversaires.",
|
|
es: "Puede prever los movimientos de su rival usando\nsus poderes psíquicos, fortalecidos por el yoga.",
|
|
it: "È in grado di conoscere in anticipo le mosse\ndel nemico grazie ai poteri di preveggenza\nottenuti con le pratiche yoga.",
|
|
de: "Mit Yogaübungen hat es seine Psycho-Kräfte geschärft\nund ahnt so die Attacken seiner Gegner voraus.",
|
|
'pt-br': "Através do treinamento de ioga, ganhou o poder psíquico\nde prever o movimento seguinte do oponente.",
|
|
ko: "요가 수행으로 단련된\n사이코 파워로 상대의 움직임을\n예상할 수 있다."
|
|
},
|
|
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Kick Shot",
|
|
fr: "Coup d'Ergots",
|
|
es: "Disparo Patada",
|
|
it: "Colpocalcio",
|
|
de: "Kickschuss",
|
|
'pt-br': "Chute Tiro",
|
|
ko: "한방차기"
|
|
},
|
|
|
|
damage: 80,
|
|
cost: ["Fighting"],
|
|
|
|
effect: {
|
|
en: "Flip a coin. If tails, this attack does nothing.",
|
|
fr: "Lancez une pièce. Si c'est pile, cette attaque ne fait rien.",
|
|
es: "Lanza 1 moneda. Si sale cruz, este ataque no hace nada.",
|
|
it: "Lancia una moneta. Se esce croce, questo attacco non ha effetto.",
|
|
de: "Wirf 1 Münze. Bei Zahl hat diese Attacke keine Auswirkungen.",
|
|
'pt-br': "Jogue uma moeda. Se sair coroa, este ataque não fará nada.",
|
|
ko: "동전을 1번 던져서 뒷면이 나오면 이 기술은 실패한다."
|
|
}
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Psychic",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1
|
|
}
|
|
|
|
export default card
|