mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39:17 +00:00
feat: Add A3a - Extradimensional Crisis (#752)
This commit is contained in:
44
data/Pokémon TCG Pocket/Extradimensional Crisis/029.ts
Normal file
44
data/Pokémon TCG Pocket/Extradimensional Crisis/029.ts
Normal file
@ -0,0 +1,44 @@
|
||||
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
|
Reference in New Issue
Block a user