1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00
2021-11-12 17:24:19 +01:00

58 lines
794 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Neo Destiny'
const card: Card = {
name: {
en: "Gastly",
fr: "Fantominus"
},
illustrator: "Aya Kusube",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
92,
],
hp: 40,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Nightmare",
fr: "Cauchemar"
},
effect: {
en: "The Defending Pokémon is now Asleep.",
fr: "Le Pokémon Défenseur est maintenant Endormi."
},
damage: 10,
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
description: {
fr: "Son corps gazeux lui permet de se faufiler là où il veut, mais il le rend aussi vulnérable aux rafales de vent."
}
}
export default card