1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-12 20:07:51 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

79 lines
1.3 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 '../Crimson Invasion'
const card: Card = {
name: {
en: "Gourgeist",
fr: "Banshitrouye",
},
illustrator: "kirisAki",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
711,
],
hp: 120,
types: [
"Psychic",
],
evolveFrom: {
en: "Pumpkaboo",
fr: "Pitrouille",
},
stage: "Stage1",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Confuse Ray",
fr: "Onde Folie",
},
effect: {
en: "Your opponent's Active Pokémon is now Confused.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.",
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Pumpkin Bomb",
fr: "Bombe Citrouille",
},
effect: {
en: "Before doing damage, you may discard any number of Pokémon Tool cards from your Pokémon. This attack does 40 more damage for each card you discarded in this way.",
fr: "Avant dinfliger des dégâts, vous pouvez défausser autant de cartes Outil Pokémon que vous voulez de vos Pokémon. Cette attaque inflige 40 dégâts supplémentaires pour chaque carte défaussée de cette façon.",
},
damage: 10,
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 3,
}
export default card