1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-06 17:27:52 +00:00

66 lines
823 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Wizards Black Star Promos'
const card: Card = {
name: {
en: "Misdreavus",
},
illustrator: "Shin-ichi Yoshida",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
200,
],
hp: 50,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Pain Split",
},
effect: {
en: "Put 1 damage counter on the Defending Pokémon for each damage counter on Misdreavus.",
},
},
{
cost: [
"Psychic",
"Psychic",
],
name: {
en: "Confuse Ray",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Confused.",
},
damage: 10,
},
],
resistances: [
{
type: "Fightning",
value: "-30"
},
],
}
export default card