1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-03 20:39:55 +00:00

31 lines
438 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Promos-A"
const card: Card = {
set: Set,
name: {
en: "Haunter"
},
illustrator: "Mékayu",
rarity: "One Diamond",
category: "Pokemon",
types: ["Psychic"],
stage: "Stage1",
attacks: [{
name: {
en: "Surprise Attack"
},
cost: ["Psychic"],
damage: 50,
effect: {
en: "Flip a coin. If tails, this attack does nothing."
}
}]
}
export default card