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

102 lines
1.7 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: "dp7-62",
localId: 62,
// Card informations
name: {
en: "Gastly",
fr: "Gastly",
},
hp: 50,
type: [
Type.PSYCHIC,
],
dexId: 92,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp7/62/low.png",
fr: "https://assets.tcgdex.net/fr/dp/dp7/62/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp7/62/high.png",
fr: "https://assets.tcgdex.net/fr/dp/dp7/62/high.png",
},
},
evolveFrom: {
fr: "Fantominus",
},
tags: [
Tag.BASIC,
],
illustrator: {
id: 43,
name: "Aya Kusube"
},
attacks: [{
name: {
en: "Pitch-Dark",
fr: "Noir complet",
},
text: {
en: "You opponent can't play any Trainer cards from his or her hand during your opponent's next turn.",
fr: "Votre adversaire ne peut pas jouer de cartes Dresseur de sa main lors de son prochain tour.",
},
},{
cost: [
Type.PSYCHIC
],
name: {
en: "Trick Gas",
fr: "Gaz piégeant",
},
text: {
en: "You may switch Gastly with 1 of your Benched Pokémon.",
fr: "Vous pouvez échanger Fantominus avec 1 des Pokémon de votre Banc.",
},
damage: 10
}],
weaknesses: [{
type: Type.DARKNESS,
value: "+10"
}],
resistances: [{
type: Type.COLORLESS,
value: "-20"
}],
retreat: 1,
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Stormfront",
code: "dp7"
}
}
export default card