1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

66 lines
860 B
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 '../Aquapolis'
const card: Card = {
name: {
en: "Gloom",
},
illustrator: "Kyoko Umemoto",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
44,
],
hp: 70,
types: [
"Grass",
],
evolveFrom: {
en: "Oddish",
},
stage: "Stage1",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Enervating Pollen",
},
effect: {
en: "As long as Gloom is in play, Resistance on each player's Pokémon only reduces damage by 10.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Sleep Sap",
},
effect: {
en: "Both the Defending Pokémon and Gloom are now Asleep (after doing damage).",
},
damage: 20,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card