1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon dc4d1bd6cb
Fix HeartGold SoulSilver datas (#73)
* Update

Signed-off-by: Avior <github@avior.me>

* Update datas

Signed-off-by: Avior <github@avior.me>

* Finished fix

Signed-off-by: Avior <github@avior.me>

* Updated some more

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Some more updates

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-09-29 21:43:33 +00:00

104 lines
2.1 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Triumphant'
const card: Card = {
name: {
en: "Gengar",
fr: "Ectoplasma",
},
illustrator: "Takashi Yamaguchi",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
94,
],
hp: 130,
types: [
"Psychic",
],
evolveFrom: {
en: "Haunter",
fr: "Spectrum",
},
stage: "Stage2",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Catastrophe",
fr: "Catastrophe",
},
effect: {
en: "As long as Gengar is your Active Pokémon, if any of your opponents Pokémon would be Knocked Out, put that Pokémon in the Lost Zone instead of discarding it. (Discard all cards attached to that Pokémon.)",
fr: "Tant quEctoplasma est votre Pokémon Actif, si lun des Pokémon de votre adversaire est mis K.O., placez ce Pokémon dans la Zone Perdue au lieu de le défausser. (Défaussez toutes les cartes attachées à ce Pokémon.)",
},
},
],
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Hurl into Darkness",
fr: "Jet dans les Ténèbres",
},
effect: {
en: "Look at your opponents hand and choose a number of Pokémon you find there up to the number of Psychic Energy attached to Gengar. Put the Pokémon you chose in the Lost Zone.",
fr: "Regardez la main de votre adversaire et choisissez-y autant de Pokémon quil existe de cartes Énergie Psychic attachées à Ectoplasma. Placez les Pokémon que vous avez choisis dans la Zone Perdue.",
},
},
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Cursed Drop",
fr: "Chute maudite",
},
effect: {
en: "Put 4 damage counters on your opponents Pokémon in any way you like.",
fr: "Placez 4 marqueurs de dégât sur les Pokémon de votre adversaire, comme bon vous semble.",
},
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
resistances: [
{
type: "Colorless",
value: "-20"
},
],
retreat: 0,
suffix: "Prime",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card