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

91 lines
1.3 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 '../Phantom Forces'
const card: Card = {
name: {
en: "Gourgeist",
fr: "Banshitrouye",
},
illustrator: "Kanako Eo",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
711,
],
hp: 100,
types: [
"Psychic",
],
evolveFrom: {
en: "Pumpkaboo",
fr: "Pitrouille",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Gourgantic",
},
effect: {
en: "If this Pokémon has any Grass Energy attached to it, its maximum HP is 200.",
},
},
],
attacks: [
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Horror Note",
fr: "Gigantrouye",
},
effect: {
en: "This attack does 10 damage times the number of cards in your hand.",
fr: "Si de l'Énergie Grass est attachée à ce Pokémon, ses PV maximum sont de 200.",
},
damage: 10,
},
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
fr: "Note Angoissante",
},
effect: {
fr: "Cette attaque inflige 10 dégâts multipliés par le nombre de cartes dans votre main.",
},
damage: "10x",
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 3,
}
export default card