mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
68 lines
786 B
TypeScript
68 lines
786 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Base Set'
|
|
|
|
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.",
|
|
},
|
|
damage: 50,
|
|
|
|
},
|
|
],
|
|
|
|
resistances: [
|
|
{
|
|
type: "Fighting",
|
|
value: "-30"
|
|
},
|
|
],
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|