1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-21 03:29:17 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Genetic Apex/228.ts
2024-11-28 00:34:09 +01:00

31 lines
362 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Gloom"
},
category: "Pokemon",
hp: 80,
types: ["Grass"],
stage: "Stage1",
attacks: [{
cost: ["Grass", "Colorless"],
name: {
en: "Drool"
},
damage: "40"
}],
retreat: 2,
rarity: "One Star"
}
export default card