1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 19:09:54 +00:00

54 lines
615 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Gym Heroes'
const card: Card = {
name: {
en: "Sabrina's Gastly",
},
illustrator: "Ken Sugimori",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
92,
],
hp: 50,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Spook",
},
effect: {
en: "The Defending Pokémon can't retreat during your opponent's next turn.",
},
damage: 20,
},
],
resistances: [
{
type: "Fightning",
value: "-30"
},
],
}
export default card