1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-18 02:19:17 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Genetic Apex/019.ts
TCGdex [Bot] 660cccbe97 editor: Edited some rarities (#583)
Co-authored-by: Avior <git@avior.me>
2024-11-21 01:26:29 +01:00

30 lines
374 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Weepinbell"
},
category: "Pokemon",
hp: 90,
types: ["Grass"],
stage: "Stage1",
attacks: [{
cost: ["Grass", "Colorless"],
name: {
en: "Razor Leaf"
},
damage: "40"
}],
retreat: 2,
rarity: "Two Diamond"
}
export default card