mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 04:42:11 +00:00
82 lines
1.2 KiB
TypeScript
82 lines
1.2 KiB
TypeScript
import Card from '@tcgdex/sdk/interfaces/Card'
|
|
import Type from '@tcgdex/sdk/interfaces/Type'
|
|
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
|
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
|
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
|
import Category from '@tcgdex/sdk/interfaces/Category'
|
|
|
|
const card: Card = {
|
|
|
|
// ids
|
|
id: "gym1-58",
|
|
localId: 58,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Sabrina's Haunter",
|
|
},
|
|
|
|
hp: 50,
|
|
|
|
type: [
|
|
Type.PSYCHIC,
|
|
],
|
|
|
|
dexId: 93,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/gym/gym1/58/low",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/gym/gym1/58/high",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Gastly",
|
|
},
|
|
|
|
tags: [
|
|
Tag.STAGE1,
|
|
],
|
|
|
|
illustrator: "Atsuko Nishida",
|
|
|
|
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.PSYCHIC,
|
|
Type.PSYCHIC
|
|
],
|
|
name: {
|
|
en: "Night Spirits",
|
|
},
|
|
text: {
|
|
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: Type.FIGHTING,
|
|
value: "-30"
|
|
}],
|
|
|
|
|
|
|
|
rarity: Rarity.UNCOMMON,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Gym Heroes",
|
|
code: "gym1"
|
|
}
|
|
}
|
|
|
|
export default card
|