1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

80 lines
1.1 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 '../Emerald'
const card: Card = {
name: {
en: "Medicham 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",
},
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.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Pure Power",
},
effect: {
en: "Put 3 damage counters on your opponent's Pokémon in any way you like.",
},
},
{
cost: [
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Sky Kick",
},
effect: {
en: "If the Defending Pokémon has Fighting Resistance, this attack does 60 damage plus 40 more damage.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card