1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 14:52:09 +00:00

53 lines
558 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Neo Destiny'
const card: Card = {
name: {
en: "Gastly",
},
illustrator: "Aya Kusube",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
92,
],
hp: 40,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Nightmare",
},
effect: {
en: "The Defending Pokémon is now Asleep.",
},
damage: 10,
},
],
resistances: [
{
type: "Fightning",
value: "-30"
},
],
}
export default card