1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

76 lines
977 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Arceus'
const card: Card = {
name: {
en: "Haunter",
de: "Alpollo"
},
illustrator: "Mitsuhiro Arita",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
93,
],
types: [
"Psychic",
],
evolveFrom: {
en: "Gastly",
},
stage: "Stage1",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Psyshot",
de: "Psychoschuss"
},
damage: 20,
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Shadow Bind",
de: "Schattenbindung"
},
effect: {
en: "The Defending Pokémon can't retreat during your opponent's next turn.",
de: "Das Verteidigende Pokémon kann sich im nächsten Zug deines Gegners nicht zurückziehen."
},
damage: 30,
},
],
weaknesses: [
{
type: "Darkness",
value: "+20"
},
],
resistances: [
{
type: "Colorless",
value: "-20"
},
],
retreat: 1,
}
export default card