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

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