mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
56 lines
774 B
TypeScript
56 lines
774 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Gym Heroes'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Sabrina's Haunter",
|
|
},
|
|
illustrator: "Atsuko Nishida",
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
93,
|
|
],
|
|
hp: 50,
|
|
types: [
|
|
"Psychic",
|
|
],
|
|
evolveFrom: {
|
|
en: "Gastly",
|
|
},
|
|
stage: "Stage1",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Psychic",
|
|
"Psychic",
|
|
],
|
|
name: {
|
|
en: "Night Spirits",
|
|
},
|
|
effect: {
|
|
en: "Flip a number of coins equal to the total number of Sabrina's Gastlys, Sabrina's Haunters, and Sabrina's Gengars you have in play. This attack does 30 damage times the number of heads.",
|
|
},
|
|
damage: 30,
|
|
|
|
},
|
|
],
|
|
|
|
resistances: [
|
|
{
|
|
type: "Fighting",
|
|
value: "-30"
|
|
},
|
|
],
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|