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

71 lines
898 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: 70,
types: [
"Grass",
],
evolveFrom: {
en: "Oddish",
},
stage: "Stage1",
attacks: [
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Dream Dance",
},
effect: {
en: "Both the Defending Pokémon and Erika's Gloom are now Asleep (after dealing damage).",
},
damage: 10,
},
{
cost: [
"Grass",
"Grass",
"Colorless",
],
name: {
en: "Vile Smell",
},
effect: {
en: "Both the Defending Pokémon and Erika's Gloom are now Confused (after doing damage).",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card