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

66 lines
811 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Fossil'
const card: Card = {
name: {
en: "Gastly",
},
illustrator: "Mitsuhiro Arita",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
92,
],
hp: 50,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Lick",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
},
damage: 10,
},
{
cost: [
"Psychic",
"Psychic",
],
name: {
en: "Energy Conversion",
},
effect: {
en: "Put up to 2 Energy cards from your discard pile into your hand. Gastly does 10 damage to itself.",
},
},
],
resistances: [
{
type: "Fightning",
value: "-30"
},
],
}
export default card