mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
77 lines
1.7 KiB
TypeScript
77 lines
1.7 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Base Set'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Gastly",
|
|
fr: "Fantominus",
|
|
de: "Nebulak"
|
|
},
|
|
|
|
illustrator: "Keiji Kinebuchi",
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
set: Set,
|
|
|
|
dexId: [
|
|
92,
|
|
],
|
|
|
|
hp: 30,
|
|
|
|
types: [
|
|
"Psychic",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Psychic",
|
|
],
|
|
name: {
|
|
en: "Sleeping Gas",
|
|
fr: "Gaz Soporifique",
|
|
de: "Schlafgas"
|
|
},
|
|
effect: {
|
|
en: "Flip a coin. If heads, the Defending Pokémon is now Asleep.",
|
|
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Endormi.",
|
|
de: "Wirf eine Münze. Bei 'Kopf' ist das verteidigende Pokémon schlafend."
|
|
},
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Psychic",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Destiny Bond",
|
|
fr: "Prélèvement du Destin",
|
|
de: "Schicksalsband"
|
|
},
|
|
effect: {
|
|
en: "Discard 1 Energy card attached to Gastly in order to use this attack. If a Pokémon Knocks Out Gastly during your opponent's next turn, Knock Out that Pokémon.",
|
|
fr: "Défaussez 1 carte Énergie attachée à Fantominus pour pouvoir utiliser cette attaque. Si un Pokémon met Fantominus K.O. pendant le prochain tour de votre adversaire, mettez ce Pokémon K.O.",
|
|
de: "Entferne eine auf Nebulak abgelegte Energiekarte, um diesen Angriff auzuführen. Falls ein Pokémon Nebulak während des nächsten gegnerischen Zugs kampufunfähig macht, mache dieses Pokémon kampfunfähig."
|
|
},
|
|
|
|
},
|
|
],
|
|
|
|
resistances: [
|
|
{
|
|
type: "Fighting",
|
|
value: "-30"
|
|
},
|
|
],
|
|
|
|
description: {
|
|
fr: "Ce Pokémon gazeux plonge ses victimes dans un profond sommeil sans qu'elles s'en aperçoivent."
|
|
}
|
|
}
|
|
|
|
export default card
|