1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

68 lines
933 B
TypeScript
Raw Permalink 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 '../Gym Heroes'
const card: Card = {
name: {
en: "Erika's Gloom",
},
illustrator: "Ken Sugimori",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
44,
],
hp: 60,
types: [
"Grass",
],
evolveFrom: {
en: "Oddish",
},
stage: "Stage1",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Healing Pollen",
},
effect: {
en: "Flip a coin. If heads, remove 4 damage counters from Erika's Gloom. If Erika's Gloom has fewer damage counters than that, remove all of them.",
},
},
{
cost: [
"Grass",
"Grass",
"Grass",
],
name: {
en: "Magic Pollen",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Asleep, Confused, Paralyzed, or Poisoned (your choice).",
},
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card