1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-17 22:09:54 +00:00

45 lines
613 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Space-Time Smackdown"
const card: Card = {
set: Set,
name: {
en: "Mismagius ex"
},
illustrator: "PLANETA Igarashi",
rarity: "Four Diamond",
category: "Pokemon",
hp: 140,
types: ["Psychic"],
evolveFrom: {
en: "Misdreavus"
},
stage: "Stage1",
suffix: "EX",
attacks: [{
name: {
en: "Magical Delusion"
},
damage: 70,
cost: ["Psychic", "Psychic"],
effect: {
en: "Your opponent's Active Pokémon is now Confused."
}
}],
weaknesses: [{
type: "Darkness",
value: "+20"
}],
retreat: 1
}
export default card