1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 20:02:15 +00:00

66 lines
915 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Fossil'
const card: Card = {
name: {
en: "Haunter",
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
93,
],
hp: 50,
types: [
"Psychic",
],
evolveFrom: {
en: "Gastly",
},
stage: "Stage1",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Transparency",
},
effect: {
en: "Whenever an attack does anything to Haunter, flip a coin. If heads, prevent all effects of that attack, including damage, done to Haunter. This power stops working while Haunter is Asleep.",
},
},
],
attacks: [
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Nightmare",
},
effect: {
en: "The Defending Pokémon is now Asleep.",
},
damage: 10,
},
],
resistances: [
{
type: "Fightning",
value: "-30"
},
],
}
export default card