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

67 lines
773 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Base Set 2'
const card: Card = {
name: {
en: "Haunter",
},
illustrator: "Keiji Kinebuchi",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
93,
],
hp: 60,
types: [
"Psychic",
],
evolveFrom: {
en: "Gastly",
},
stage: "Stage1",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Hypnosis",
},
effect: {
en: "The Defending Pokémon is now Asleep.",
},
},
{
cost: [
"Psychic",
"Psychic",
],
name: {
en: "Dream Eater",
},
effect: {
en: "You can't this attack unless the Defending Pokémon is Asleep.",
},
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
}
export default card