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

66 lines
822 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: "Fighting",
value: "-30"
},
],
}
export default card