1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

107 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.png",
fr: "https://assets.tcgdex.net/fr/dp/dp1/50/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp1/50/high.png",
fr: "https://assets.tcgdex.net/fr/dp/dp1/50/high.png",
},
},
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