mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
106 lines
1.6 KiB
TypeScript
106 lines
1.6 KiB
TypeScript
import Card from '../../../interfaces/Card'
|
|
import Type from '../../../interfaces/Type'
|
|
import Tag from '../../../interfaces/Tag'
|
|
import Rarity from '../../../interfaces/Rarity'
|
|
import AbilityType from '../../../interfaces/AbilityType'
|
|
import Category from '../../../interfaces/Category'
|
|
|
|
const card: Card = {
|
|
|
|
// ids
|
|
id: "dp1-50",
|
|
localId: 50,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Haunter",
|
|
fr: "Spectrum",
|
|
},
|
|
|
|
hp: 70,
|
|
|
|
type: [
|
|
Type.PSYCHIC,
|
|
],
|
|
|
|
dexId: 93,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp1/50/low",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp1/50/low",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp1/50/high",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp1/50/high",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Gastly",
|
|
fr: "Fantominus",
|
|
},
|
|
|
|
tags: [
|
|
Tag.STAGE1,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 23,
|
|
name: "Naoyo Kimura"
|
|
},
|
|
|
|
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.PSYCHIC
|
|
],
|
|
name: {
|
|
en: "Hypnosis",
|
|
fr: "Hypnose",
|
|
},
|
|
text: {
|
|
en: "The Defending Pokémon is now Asleep.",
|
|
fr: "Le Pokémon Défenseur est maintenant Endormi.",
|
|
},
|
|
},{
|
|
cost: [
|
|
Type.PSYCHIC,
|
|
Type.PSYCHIC
|
|
],
|
|
name: {
|
|
en: "Dream Eater",
|
|
fr: "Dévorêve",
|
|
},
|
|
text: {
|
|
en: "If the Defending Pokémon is not Asleep, this attack does nothing.",
|
|
fr: "Si le Pokémon Défenseur n'est pas Endormi, cette attaque est sans effet.",
|
|
},
|
|
damage: 60
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.DARKNESS,
|
|
value: "+20"
|
|
}],
|
|
|
|
resistances: [{
|
|
type: Type.COLORLESS,
|
|
value: "-20"
|
|
}],
|
|
|
|
|
|
|
|
rarity: Rarity.Uncommon,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Diamond & Pearl",
|
|
code: "dp1"
|
|
}
|
|
}
|
|
|
|
export default card
|