mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
55
data/Gym/Gym Heroes/58.ts
Normal file
55
data/Gym/Gym Heroes/58.ts
Normal file
@ -0,0 +1,55 @@
|
||||
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: "Fightning",
|
||||
value: "-30"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user