mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
71 lines
898 B
TypeScript
71 lines
898 B
TypeScript
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
|