1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* some fixes

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

* Some more changes

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

* u

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

* continuing update

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

* Finished ?

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

* Removed files that were not meant to be

* Remoed even more files
2021-10-26 10:40:03 +02:00

102 lines
2.5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../SWSH Black Star Promos'
const card: Card = {
set: Set,
name: {
en: "Gengar",
fr: "Ectoplasma",
es: "Gengar",
it: "Gengar",
pt: "Gengar",
de: "Gengar"
},
illustrator: "Shibuzoh.",
rarity: "None",
category: "Pokemon",
hp: 110,
types: ["Psychic"],
evolveFrom: {
en: "Haunter",
fr: "Spectrum"
},
abilities: [{
type: "Ability",
name: {
en: "Life Shaker",
fr: "Chamboule Vie",
es: "Sacudida Vital",
it: "Scossone Vitale",
pt: "Life Shaker",
de: "Lebensstreuer"
},
effect: {
en: "As often as you like during your turn, you may move 1 damage counter from 1 of your Psychic Pokémon to another of your Psychic Pokémon.",
fr: "Autant de fois que vous le voulez pendant votre tour, vous pouvez déplacer un marqueur de dégâts de l'un de vos Pokémon Psychic vers un autre de vos Pokémon Psychic.",
es: "Todas las veces que quieras durante tu turno, puedes mover 1 contador de daño de 1 de tus Pokémon Psychic a otro de tus Pokémon Psychic.",
it: "Durante il tuo turno, puoi spostare un segnalino danno da uno a un altro dei tuoi Pokémon Psychic tutte le volte che vuoi.",
pt: "As often as you like during your turn, you may move 1 damage counter from 1 of your Psychic Pokémon to another of your Psychic Pokémon.",
de: "Beliebig oft während deines Zuges kannst du 1 Schadensmarke von 1 deiner Psychic-Pokémon auf 1 anderes deiner Psychic-Pokémon verschieben."
}
}],
attacks: [{
name: {
en: "Hypnoblast",
fr: "Hypnoblast",
es: "Hipnorrayo",
it: "Ipnobomba",
pt: "Hypnoblast",
de: "Hypnoschuss"
},
effect: {
en: "Your opponent's Active Pokémon is now Asleep.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.",
es: "El Pokémon Activo de tu rival pasa a estar Dormido.",
it: "Il Pokémon attivo del tuo avversario viene addormentato.",
pt: "Your opponent's Active Pokémon is now Asleep.",
de: "Das Aktive Pokémon deines Gegners schläft jetzt."
},
damage: 90,
cost: ["Psychic", "Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
description: {
en: "On the night of a full moon, if shadows move on their own and laugh, it must be Gengar's doing."
},
stage: "Stage2",
dexId: [94],
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
},
regulationMark: "D"
}
export default card