mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
72 lines
1.4 KiB
TypeScript
72 lines
1.4 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../BREAKthrough'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Gastly",
|
||
fr: "Fantominus",
|
||
es: "Gastly",
|
||
it: "Gastly",
|
||
pt: "Gastly",
|
||
de: "Nebulak"
|
||
},
|
||
illustrator: "Shigenori Negishi",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
92,
|
||
],
|
||
hp: 50,
|
||
types: [
|
||
"Psychic",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Psychic",
|
||
],
|
||
name: {
|
||
en: "Sleep Poison",
|
||
fr: "Poison Dodo",
|
||
es: "Veneno Somnífero",
|
||
it: "Sonnoveleno",
|
||
pt: "Veneno Sonífero",
|
||
de: "Schlafgift"
|
||
},
|
||
effect: {
|
||
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Asleep and Poisoned.",
|
||
fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Endormi et Empoisonné.",
|
||
es: "Lanza 1 moneda. Si sale cara, el Pokémon Activo de tu rival pasa a estar Dormido y Envenenado.",
|
||
it: "Lancia una moneta. Se esce testa, il Pokémon attivo del tuo avversario viene addormentato e avvelenato.",
|
||
pt: "Jogue uma moeda. Se sair cara, o Pokémon Ativo do seu oponente ficará Adormecido e Envenenado.",
|
||
de: "Wirf 1 Münze. Bei \"Kopf\" schläft das Aktive Pokémon deines Gegners jetzt und ist vergiftet."
|
||
},
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Darkness",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Fighting",
|
||
value: "-20"
|
||
},
|
||
],
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|