mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
94 lines
2.0 KiB
TypeScript
94 lines
2.0 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Emerald'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Medicham ex",
|
||
fr: "Charmina ex",
|
||
de: "Meditalis ex"
|
||
},
|
||
illustrator: "Hikaru Koike",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
308,
|
||
],
|
||
hp: 110,
|
||
types: [
|
||
"Fighting",
|
||
],
|
||
evolveFrom: {
|
||
en: "Meditite",
|
||
},
|
||
|
||
suffix: "EX",
|
||
abilities: [
|
||
{
|
||
type: "Poke-BODY",
|
||
name: {
|
||
en: "Wise Aura",
|
||
fr: "Sage aura",
|
||
de: "Wise Aura"
|
||
},
|
||
effect: {
|
||
en: "As long as Medicham ex is your Active Pokémon, each Pokémon (excluding Pokémon-ex) (both yours and your opponent's) can't use any Poké-Powers.",
|
||
fr: "Tant que Charmina ex est votre Pokémon Actif, chaque Pokémon (Pokémon-ex exclus) (les vôtres et ceux de votre adversaire), ne peut pas utiliser de Poké-Powers.",
|
||
de: "As long as Medicham ex is your Active Pokémon, each Pokémon (excluding Pokémon-ex) (both yours and your opponent's) can't use any Poké-Powers."
|
||
},
|
||
},
|
||
],
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Pure Power",
|
||
fr: "Pouvoir pur",
|
||
de: "Pure Power"
|
||
},
|
||
effect: {
|
||
en: "Put 3 damage counters on your opponent's Pokémon in any way you like.",
|
||
fr: "Placez 3 marqueurs de dégât sur les Pokémon de votre adversaire de la façon que vous voulez.",
|
||
de: "Put 3 damage counter on your opponent's Pokémon in any way you like"
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Fighting",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Sky Kick",
|
||
fr: "Coup de pied céleste",
|
||
de: "Sky Kick"
|
||
},
|
||
effect: {
|
||
en: "If the Defending Pokémon has Fighting Resistance, this attack does 60 damage plus 40 more damage.",
|
||
fr: "Si le Pokémon Défenseur possède une Résistance , cette attaque inflige 60 dégâts plus 40 dégâts supplémentaires.",
|
||
de: "If the Defending Pokémon has Resistance, this attack does 60 damage plus 40 more damage."
|
||
},
|
||
damage: "60+",
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|