1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 17:57: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

69 lines
1014 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Gym Heroes'
const card: Card = {
name: {
en: "Sabrina's Gengar",
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
94,
],
hp: 80,
types: [
"Psychic",
],
evolveFrom: {
en: "Haunter",
},
stage: "Stage2",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Pain Amplifier",
},
effect: {
en: "Put a damage counter on each of your opponent's Pokémon that already has any damage counters on it.",
},
},
{
cost: [
"Psychic",
"Psychic",
"Psychic",
],
name: {
en: "Call of the Night",
},
effect: {
en: "Unless this attack Knocks Out the Defending Pokémon, flip 2 coins. If both of them are heads, your opponent shuffles his or her Active Pokémon and all cards attached to it into his or her deck.",
},
damage: 40,
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
}
export default card