mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-10 07:09:54 +00:00
44 lines
614 B
TypeScript
44 lines
614 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Extradimensional Crisis"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Medicham"
|
|
},
|
|
|
|
illustrator: "Misa Tsutsui",
|
|
rarity: "Two Diamond",
|
|
category: "Pokemon",
|
|
hp: 90,
|
|
types: ["Fighting"],
|
|
|
|
evolveFrom: {
|
|
en: "Meditite"
|
|
},
|
|
|
|
description: {
|
|
en: "Through yoga training, it gained the psychic\npower to predict its foe's next move."
|
|
},
|
|
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "High Jump Kick"
|
|
},
|
|
|
|
damage: 50,
|
|
cost: ["Fighting"]
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Psychic",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 2
|
|
}
|
|
|
|
export default card |