1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 8ef099273e
fix: Add E-Card French Translations (#166)
* fix: Add E-Card French Translations

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

* fix: Fixed Cards without rarity

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-11-22 19:07:35 +00:00

77 lines
1.6 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 '../Expedition Base Set'
const card: Card = {
name: {
en: "Gengar",
fr: "Ectoplasma"
},
illustrator: "Yukiko Baba",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
94,
],
hp: 90,
types: [
"Psychic",
],
evolveFrom: {
en: "Haunter",
},
stage: "Stage2",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Chaos Move",
fr: "Mouvement chaotique"
},
effect: {
en: "Once during your turn (before you attack), if your opponent has 3 or fewer Prizes, you may move 1 damage counter from 1 Pokémon (yours or your opponent's) to another (even if it would Knock Out the other Pokémon). This power can't be used if Gengar is affected by a Special Condition.",
fr: "Une seule fois pendant votre tour (avant votre attaque), si votre adversaire a un maximum de 3 Récompenses, vous pouvez déplacer 1 marqueur de dégâts depuis un Pokémon (le vôtre ou celui de l'adversaire) vers un autre (même si cela met l'autre Pokémon K.O.). Ce pouvoir ne peut pas être utilisé si Ectoplasma est affecté par un État spécial."
},
},
],
attacks: [
{
cost: [
"Psychic",
"Psychic",
"Colorless",
],
name: {
en: "Hide in Shadows",
fr: "Cache-ombre"
},
effect: {
en: "Switch Gengar with one of your Benched Pokémon.",
fr: "Échangez Ectoplasma contre l'un des Pokémon de votre Banc, si vous en avez."
},
damage: 40,
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
}
export default card