mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-28 22:02:15 +00:00
104 lines
2.4 KiB
TypeScript
104 lines
2.4 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Crimson Invasion'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Gengar",
|
||
fr: "Ectoplasma",
|
||
es: "Gengar",
|
||
it: "Gengar",
|
||
pt: "Gengar",
|
||
de: "Gengar"
|
||
},
|
||
|
||
illustrator: "Shin Nagasawa",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
dexId: [
|
||
94,
|
||
],
|
||
|
||
hp: 130,
|
||
|
||
types: [
|
||
"Psychic",
|
||
],
|
||
|
||
evolveFrom: {
|
||
en: "Haunter",
|
||
fr: "Spectrum",
|
||
},
|
||
|
||
stage: "Stage2",
|
||
|
||
abilities: [
|
||
{
|
||
type: "Ability",
|
||
name: {
|
||
en: "Gnawing Curse",
|
||
fr: "Malédiction Rongeante",
|
||
es: "Maldición Persistente",
|
||
it: "Maledizione Assillante",
|
||
pt: "Maldição Corrosiva",
|
||
de: "Quälender Fluch"
|
||
},
|
||
effect: {
|
||
en: "Whenever your opponent attaches an Energy card from their hand to 1 of their Pokémon, put 2 damage counters on that Pokémon.",
|
||
fr: "Lorsque votre adversaire attache une carte Énergie de sa main à l’un de ses Pokémon, placez 2 marqueurs de dégâts sur ce Pokémon.",
|
||
es: "Cada vez que tu rival una 1 carta de Energía de su mano a 1 de sus Pokémon, pon 2 contadores de daño en ese Pokémon.",
|
||
it: "Ogni volta che il tuo avversario assegna una carta Energia dalla sua mano a uno dei suoi Pokémon, metti due segnalini danno su quel Pokémon.",
|
||
pt: "Sempre que seu oponente ligar 1 carta de Energia da própria mão a 1 dos próprios Pokémon, coloque 2 contadores de dano naquele Pokémon.",
|
||
de: "Lege jedes Mal, wenn dein Gegner 1 Energiekarte aus seiner Hand an 1 seiner Pokémon anlegt, 2 Schadensmarken auf jenes Pokémon."
|
||
},
|
||
},
|
||
],
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Psychic",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Fade to Black",
|
||
fr: "Fondu au Noir",
|
||
es: "Ennegrecer",
|
||
it: "Svanire nel Buio",
|
||
pt: "Breu",
|
||
de: "Schwarz vor Augen"
|
||
},
|
||
effect: {
|
||
en: "Your opponent’s Active Pokémon is now Confused.",
|
||
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.",
|
||
es: "El Pokémon Activo de tu rival pasa a estar Confundido.",
|
||
it: "Il Pokémon attivo del tuo avversario viene confuso.",
|
||
pt: "O Pokémon Ativo do seu oponente agora está Confuso.",
|
||
de: "Das Aktive Pokémon deines Gegners ist jetzt verwirrt."
|
||
},
|
||
damage: 70,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Darkness",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
resistances: [
|
||
{
|
||
type: "Fighting",
|
||
value: "-20"
|
||
},
|
||
],
|
||
|
||
retreat: 0
|
||
}
|
||
|
||
export default card
|